diff --git a/App/Src/frt_protocol.c b/App/Src/frt_protocol.c index 4ef0632..cb889b0 100644 --- a/App/Src/frt_protocol.c +++ b/App/Src/frt_protocol.c @@ -404,64 +404,35 @@ static int uart_read_frt_climate_pack(device_handle uart_handle,u_int8_t *buff, // frt_climate_pack *pack = (frt_climate_pack *)buff; unsigned char new_buff[50]; - buff_size--; //预留一个'\0'位置 + buff_size--; //预留一个'\0'位置 - for (int i = 0; i < buff_size;i++) + for (int offset = 0; offset < buff_size;) { +// 逐字符读取 c = uart_dev_in_char(uart_handle); - buff[i] = c; + buff[offset++] = c; + +// 判断首字符是否是地址,是地址再开始读取,不是则将索引退一步 + if(offset == sizeof(unsigned char)) + { + if(buff[0] != g_stConfigInfo.addr) + { + memcpy(buff, buff + 1, offset - 1); + offset--; + buff_size--; + } + } +// 读寄存器 + else if (buff[1] == FRT_FUNCTION_CODE_READ_REGISTER & offset == 8) + { + return offset; + } +// 写寄存器 + else if (buff[1] == FRT_FUNCTION_CODE_WRITE_REGISTER & offset == 7 + buff[6] + 2) + { + return offset; + } } - - int start_index = buff_size; // 初始化为一个不可能的值 - // 遍历数组以找到符合条件的字节对 - for (int i = 0; i < buff_size; i += 1) - { - if ((buff[i] == g_stConfigInfo.addr) && ((buff[i + 1] == FRT_FUNCTION_CODE_READ_REGISTER) || (buff[i + 1] == FRT_FUNCTION_CODE_WRITE_REGISTER))) - { - start_index = i; // 从符合条件的字节对开始复制 -// term_printf("%d", i); - break; - } - } - if (start_index == buff_size) - { - return 0; - } - memcpy(new_buff, buff + start_index, buff_size - start_index); -// for (int i = 0; i < buff_size; i++) { -// term_printf("%x ", new_buff[i]); -// } -// term_printf("\r\n"); - memcpy(buff, 0, buff_size); - memcpy(buff, new_buff, buff_size - start_index); - - if (new_buff[1] == FRT_FUNCTION_CODE_READ_REGISTER) - { - offset = 8; - return offset; - } - if (new_buff[1] == FRT_FUNCTION_CODE_WRITE_REGISTER) - { - u_int32_t regnum = 0; - offset = 7; - regnum = new_buff[6]; - offset = offset + regnum + 2; - return offset; - } - -// for (offset = 0; offset < buff_size;){ -// c = uart_dev_in_char(uart_handle); -// buff[offset++] = c; -// if (offset == sizeof(pack->addr)){ -// if (pack->addr != g_stConfigInfo.addr){ -// memcpy(buff, buff+1, offset-1); -// offset--; -// buff_size--; -// } -// }else if (offset == FRT_CLIMATE_PACK_SIZE(pack)){ -// return offset; -// } -// } return 0; } diff --git a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps index c3bd713..90f74e8 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 7351564..afd43b2 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log +++ b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log @@ -111,3 +111,7 @@ 2 783 7436797235808911 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o 4448055fe7c348a8 784 1095 7436797239038510 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out 6dcc9a6ebfe249da 1098 1241 7436797240589765 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex 7d99c4510add455f +3 364 7439274857354206 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o 2c232550a9ca877f +33 396 7439274857648207 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o 4448055fe7c348a8 +398 992 7439274863733469 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out 6dcc9a6ebfe249da +994 1027 7439274864178816 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 f0fd464..72da980 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 6c3a840..88029b2 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log @@ -104,3 +104,51 @@ 790 2063 7437487216520530 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a 2064 2677 7437487222672708 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c 2678 8161 7437487270676390 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 981 7439178381045429 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d +982 2444 7439178395672332 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a +2445 2924 7439178400467892 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +2924 7589 7439178442036721 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 351 7439180462344697 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d +352 785 7439180466694910 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a +786 1176 7439180470607282 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1177 2259 7439180481085450 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 376 7439272507300473 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d +377 825 7439272511809850 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a +826 1242 7439272515968493 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1242 2406 7439272527252241 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 369 7439272632455638 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +370 909 7439272637872029 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +910 1322 7439272641992004 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1323 2446 7439272652831172 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 367 7439272707850494 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +368 806 7439272712238790 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +807 1208 7439272716263071 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1209 2331 7439272727117707 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 370 7439272781988518 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +371 829 7439272786586396 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +829 1253 7439272790822286 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1254 2418 7439272802092647 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 384 7439272857471901 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +385 829 7439272861982765 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +830 1236 7439272866060954 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1237 2366 7439272876965377 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 367 7439273132928036 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +368 817 7439273137439043 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +818 1221 7439273141474071 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1222 2357 7439273152450080 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 476 7439273208395694 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +476 968 7439273213328714 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +969 1388 7439273217527698 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1389 2523 7439273228497133 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 373 7439273333691592 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +374 826 7439273338237223 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +827 1246 7439273342438391 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1247 2371 7439273353316565 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 371 7439273810287018 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +371 811 7439273814699164 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +812 1210 7439273818686207 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1210 2318 7439273829399489 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 371 7439274437242994 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +372 811 7439274441640845 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +812 1211 7439274445655837 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1212 2383 7439274456965849 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/frt_protocol.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi index c586ef7..1ca9a6e 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.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 3cc344d..7f95124 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,69 +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\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\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 \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\e22\e22.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\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\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\main.c 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 3bc0c62..0d800fa 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 3bc0c62..0d800fa 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 0976494..ee9f697 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 @@ -1,11688 +1,1304 @@ [ { - "ID": "c:core_cm4.h@1249@macro@__CORE_CM4_H_GENERIC", + "ID": "c:stdint.h@101@macro@_STDINT", "What": "MacroDef", "defdec": "Def", - "display": "__CORE_CM4_H_GENERIC", + "display": "_STDINT", "location": { "column": "9", - "line": "32", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "4", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "__CORE_CM4_H_GENERIC", - "origin": "user_include", + "name": "_STDINT", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@2226@macro@__CM4_CMSIS_VERSION_MAIN", - "What": "MacroDef", + "ID": "c:stdint.h@T@int8_t", + "What": "Typedef", "defdec": "Def", - "display": "__CM4_CMSIS_VERSION_MAIN", + "display": "signed char", "location": { - "column": "9", + "column": "36", + "line": "19", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint8_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "35", + "line": "20", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int16_t", + "What": "Typedef", + "defdec": "Def", + "display": "short", + "location": { + "column": "36", + "line": "24", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint16_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "35", + "line": "25", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int32_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "36", + "line": "29", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint32_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "35", + "line": "30", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int64_t", + "What": "Typedef", + "defdec": "Def", + "display": "long long", + "location": { + "column": "36", + "line": "34", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint64_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long long", + "location": { + "column": "35", + "line": "35", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_least8_t", + "What": "Typedef", + "defdec": "Def", + "display": "signed char", + "location": { + "column": "36", + "line": "40", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_least8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_least8_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "35", + "line": "41", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_least8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_least16_t", + "What": "Typedef", + "defdec": "Def", + "display": "short", + "location": { + "column": "36", + "line": "43", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_least16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_least16_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "35", + "line": "44", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_least16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_least32_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "36", + "line": "46", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_least32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_least32_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "35", + "line": "47", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_least32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_least64_t", + "What": "Typedef", + "defdec": "Def", + "display": "long long", + "location": { + "column": "36", + "line": "51", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_least64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_least64_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long long", + "location": { + "column": "35", + "line": "54", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_least64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_fast8_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "36", + "line": "60", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_fast8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_fast8_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "35", + "line": "61", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_fast8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_fast16_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "36", + "line": "63", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "int_fast16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@uint_fast16_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "35", + "line": "64", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "uint_fast16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@T@int_fast32_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "36", "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "__CM4_CMSIS_VERSION_MAIN", - "origin": "user_include", + "name": "int_fast32_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@2351@macro@__CM4_CMSIS_VERSION_SUB", - "What": "MacroDef", + "ID": "c:stdint.h@T@uint_fast32_t", + "What": "Typedef", "defdec": "Def", - "display": "__CM4_CMSIS_VERSION_SUB", + "display": "unsigned int", "location": { - "column": "9", + "column": "35", "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "__CM4_CMSIS_VERSION_SUB", - "origin": "user_include", + "name": "uint_fast32_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@2475@macro@__CM4_CMSIS_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM4_CMSIS_VERSION", - "location": { - "column": "9", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__CM4_CMSIS_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@2670@macro@__CORTEX_M", - "What": "MacroDef", - "defdec": "Def", - "display": "__CORTEX_M", - "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__CORTEX_M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@4213@macro@__FPU_USED", - "What": "MacroDef", - "defdec": "Def", - "display": "__FPU_USED", - "location": { - "column": "15", - "line": "115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__FPU_USED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@5787@macro@__CORE_CM4_H_DEPENDANT", - "What": "MacroDef", - "defdec": "Def", - "display": "__CORE_CM4_H_DEPENDANT", - "location": { - "column": "9", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__CORE_CM4_H_DEPENDANT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7195@macro@__I", - "What": "MacroDef", - "defdec": "Def", - "display": "__I", - "location": { - "column": "13", - "line": "219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7285@macro@__O", - "What": "MacroDef", - "defdec": "Def", - "display": "__O", - "location": { - "column": "13", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__O", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7368@macro@__IO", - "What": "MacroDef", - "defdec": "Def", - "display": "__IO", - "location": { - "column": "13", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__IO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7517@macro@__IM", - "What": "MacroDef", - "defdec": "Def", - "display": "__IM", - "location": { - "column": "13", - "line": "225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__IM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7615@macro@__OM", - "What": "MacroDef", - "defdec": "Def", - "display": "__OM", - "location": { - "column": "13", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__OM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@7714@macro@__IOM", - "What": "MacroDef", - "defdec": "Def", - "display": "__IOM", - "location": { - "column": "13", - "line": "227", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__IOM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@APSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "259", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "261", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "263", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@GE", - "What": "FieldDecl", - "defdec": "Def", - "display": "GE", - "location": { - "column": "14", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "GE", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@_reserved1", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved1", - "location": { - "column": "14", - "line": "265", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@Q", - "What": "FieldDecl", - "defdec": "Def", - "display": "Q", - "location": { - "column": "14", - "line": "266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "Q", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@V", - "What": "FieldDecl", - "defdec": "Def", - "display": "V", - "location": { - "column": "14", - "line": "267", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "V", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@C", - "What": "FieldDecl", - "defdec": "Def", - "display": "C", - "location": { - "column": "14", - "line": "268", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "C", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@Z", - "What": "FieldDecl", - "defdec": "Def", - "display": "Z", - "location": { - "column": "14", - "line": "269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "Z", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@N", - "What": "FieldDecl", - "defdec": "Def", - "display": "N", - "location": { - "column": "14", - "line": "270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "N", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9" - }, - { - "ID": "c:@UA@APSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9" - }, - { - "ID": "c:@UA@APSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_259_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@APSR_Type", + "ID": "c:stdint.h@T@int_fast64_t", "What": "Typedef", "defdec": "Def", - "display": "union APSR_Type", + "display": "long long", "location": { - "column": "3", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "36", + "line": "70", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "APSR_Type", - "origin": "user_include", + "name": "int_fast64_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@9571@macro@APSR_N_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_N_Pos", - "location": { - "column": "9", - "line": "276", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_N_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@9687@macro@APSR_N_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_N_Msk", - "location": { - "column": "9", - "line": "277", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_N_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@9801@macro@APSR_Z_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Z_Pos", - "location": { - "column": "9", - "line": "279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_Z_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@9917@macro@APSR_Z_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Z_Msk", - "location": { - "column": "9", - "line": "280", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_Z_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10031@macro@APSR_C_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_C_Pos", - "location": { - "column": "9", - "line": "282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_C_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10147@macro@APSR_C_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_C_Msk", - "location": { - "column": "9", - "line": "283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_C_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10261@macro@APSR_V_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_V_Pos", - "location": { - "column": "9", - "line": "285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_V_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10377@macro@APSR_V_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_V_Msk", - "location": { - "column": "9", - "line": "286", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_V_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10491@macro@APSR_Q_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Q_Pos", - "location": { - "column": "9", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_Q_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10607@macro@APSR_Q_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Q_Msk", - "location": { - "column": "9", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_Q_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10721@macro@APSR_GE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_GE_Pos", - "location": { - "column": "9", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_GE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@10838@macro@APSR_GE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_GE_Msk", - "location": { - "column": "9", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "APSR_GE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@IPSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055@FI@ISR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISR", - "location": { - "column": "14", - "line": "302", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ISR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_298_9::_anonymous_core_cm4_h_300_3" - }, - { - "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "303", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_298_9::_anonymous_core_cm4_h_300_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_298_9" - }, - { - "ID": "c:@UA@IPSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_298_9" - }, - { - "ID": "c:@UA@IPSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_298_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@IPSR_Type", + "ID": "c:stdint.h@T@uint_fast64_t", "What": "Typedef", "defdec": "Def", - "display": "union IPSR_Type", + "display": "unsigned long long", "location": { - "column": "3", - "line": "306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "35", + "line": "73", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "IPSR_Type", - "origin": "user_include", + "name": "uint_fast64_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@11439@macro@IPSR_ISR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "IPSR_ISR_Pos", - "location": { - "column": "9", - "line": "309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "IPSR_ISR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@11557@macro@IPSR_ISR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "IPSR_ISR_Msk", - "location": { - "column": "9", - "line": "310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "IPSR_ISR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@xPSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "318", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ISR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISR", - "location": { - "column": "14", - "line": "320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ISR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "321", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ICI_IT_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICI_IT_1", - "location": { - "column": "14", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICI_IT_1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@GE", - "What": "FieldDecl", - "defdec": "Def", - "display": "GE", - "location": { - "column": "14", - "line": "323", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "GE", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@_reserved1", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved1", - "location": { - "column": "14", - "line": "324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@T", - "What": "FieldDecl", - "defdec": "Def", - "display": "T", - "location": { - "column": "14", - "line": "325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "T", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ICI_IT_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICI_IT_2", - "location": { - "column": "14", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICI_IT_2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@Q", - "What": "FieldDecl", - "defdec": "Def", - "display": "Q", - "location": { - "column": "14", - "line": "327", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "Q", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@V", - "What": "FieldDecl", - "defdec": "Def", - "display": "V", - "location": { - "column": "14", - "line": "328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "V", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@C", - "What": "FieldDecl", - "defdec": "Def", - "display": "C", - "location": { - "column": "14", - "line": "329", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "C", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@Z", - "What": "FieldDecl", - "defdec": "Def", - "display": "Z", - "location": { - "column": "14", - "line": "330", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "Z", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@N", - "What": "FieldDecl", - "defdec": "Def", - "display": "N", - "location": { - "column": "14", - "line": "331", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "N", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9" - }, - { - "ID": "c:@UA@xPSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "332", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9" - }, - { - "ID": "c:@UA@xPSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_316_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@xPSR_Type", + "ID": "c:stdint.h@T@intmax_t", "What": "Typedef", "defdec": "Def", - "display": "union xPSR_Type", + "display": "long long", "location": { - "column": "3", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "36", + "line": "77", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "xPSR_Type", - "origin": "user_include", + "name": "intmax_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@13006@macro@xPSR_N_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_N_Pos", - "location": { - "column": "9", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_N_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13122@macro@xPSR_N_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_N_Msk", - "location": { - "column": "9", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_N_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13236@macro@xPSR_Z_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Z_Pos", - "location": { - "column": "9", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_Z_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13352@macro@xPSR_Z_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Z_Msk", - "location": { - "column": "9", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_Z_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13466@macro@xPSR_C_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_C_Pos", - "location": { - "column": "9", - "line": "343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_C_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13582@macro@xPSR_C_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_C_Msk", - "location": { - "column": "9", - "line": "344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_C_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13696@macro@xPSR_V_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_V_Pos", - "location": { - "column": "9", - "line": "346", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_V_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13812@macro@xPSR_V_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_V_Msk", - "location": { - "column": "9", - "line": "347", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_V_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@13926@macro@xPSR_Q_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Q_Pos", - "location": { - "column": "9", - "line": "349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_Q_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14042@macro@xPSR_Q_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Q_Msk", - "location": { - "column": "9", - "line": "350", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_Q_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14156@macro@xPSR_ICI_IT_2_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ICI_IT_2_Pos", - "location": { - "column": "9", - "line": "352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ICI_IT_2_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14284@macro@xPSR_ICI_IT_2_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ICI_IT_2_Msk", - "location": { - "column": "9", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ICI_IT_2_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14410@macro@xPSR_T_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_T_Pos", - "location": { - "column": "9", - "line": "355", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_T_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14526@macro@xPSR_T_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_T_Msk", - "location": { - "column": "9", - "line": "356", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_T_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14640@macro@xPSR_GE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_GE_Pos", - "location": { - "column": "9", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_GE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14757@macro@xPSR_GE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_GE_Msk", - "location": { - "column": "9", - "line": "359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_GE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@14872@macro@xPSR_ICI_IT_1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ICI_IT_1_Pos", - "location": { - "column": "9", - "line": "361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ICI_IT_1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@15000@macro@xPSR_ICI_IT_1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ICI_IT_1_Msk", - "location": { - "column": "9", - "line": "362", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ICI_IT_1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@15126@macro@xPSR_ISR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ISR_Pos", - "location": { - "column": "9", - "line": "364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ISR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@15244@macro@xPSR_ISR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ISR_Msk", - "location": { - "column": "9", - "line": "365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "xPSR_ISR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@CONTROL_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "371", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "373", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@nPRIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "nPRIV", - "location": { - "column": "14", - "line": "375", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "nPRIV", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" - }, - { - "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@SPSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SPSEL", - "location": { - "column": "14", - "line": "376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SPSEL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" - }, - { - "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@FPCA", - "What": "FieldDecl", - "defdec": "Def", - "display": "FPCA", - "location": { - "column": "14", - "line": "377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPCA", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" - }, - { - "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "378", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9" - }, - { - "ID": "c:@UA@CONTROL_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "379", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9" - }, - { - "ID": "c:@UA@CONTROL_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_371_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@CONTROL_Type", + "ID": "c:stdint.h@T@uintmax_t", "What": "Typedef", "defdec": "Def", - "display": "union CONTROL_Type", + "display": "unsigned long long", "location": { - "column": "3", - "line": "381", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "35", + "line": "78", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "CONTROL_Type", - "origin": "user_include", + "name": "uintmax_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@16025@macro@CONTROL_FPCA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_FPCA_Pos", - "location": { - "column": "9", - "line": "384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_FPCA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@16147@macro@CONTROL_FPCA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_FPCA_Msk", - "location": { - "column": "9", - "line": "385", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_FPCA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@16267@macro@CONTROL_SPSEL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_SPSEL_Pos", - "location": { - "column": "9", - "line": "387", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_SPSEL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@16390@macro@CONTROL_SPSEL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_SPSEL_Msk", - "location": { - "column": "9", - "line": "388", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_SPSEL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@16511@macro@CONTROL_nPRIV_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_nPRIV_Pos", - "location": { - "column": "9", - "line": "390", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_nPRIV_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@16634@macro@CONTROL_nPRIV_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_nPRIV_Msk", - "location": { - "column": "9", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CONTROL_nPRIV_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@NVIC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@NVIC_Type@FI@ISER", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISER", - "location": { - "column": "18", - "line": "408", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ISER", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "409", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ICER", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICER", - "location": { - "column": "18", - "line": "410", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICER", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED1", - "location": { - "column": "18", - "line": "411", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ISPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISPR", - "location": { - "column": "18", - "line": "412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ISPR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED2", - "location": { - "column": "18", - "line": "413", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ICPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICPR", - "location": { - "column": "18", - "line": "414", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICPR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED3", - "location": { - "column": "18", - "line": "415", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@IABR", - "What": "FieldDecl", - "defdec": "Def", - "display": "IABR", - "location": { - "column": "18", - "line": "416", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "IABR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED4", - "location": { - "column": "18", - "line": "417", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED4", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@IP", - "What": "FieldDecl", - "defdec": "Def", - "display": "IP", - "location": { - "column": "18", - "line": "418", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "IP", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED5", - "location": { - "column": "18", - "line": "419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED5", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@STIR", - "What": "FieldDecl", - "defdec": "Def", - "display": "STIR", - "location": { - "column": "18", - "line": "420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "STIR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_406_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@NVIC_Type", + "ID": "c:stdint.h@T@intptr_t", "What": "Typedef", "defdec": "Def", - "display": "struct NVIC_Type", + "display": "int", "location": { - "column": "4", - "line": "421", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "36", + "line": "82", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "NVIC_Type", - "origin": "user_include", + "name": "intptr_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@18093@macro@NVIC_STIR_INTID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_STIR_INTID_Pos", - "location": { - "column": "9", - "line": "424", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_STIR_INTID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@18216@macro@NVIC_STIR_INTID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_STIR_INTID_Msk", - "location": { - "column": "9", - "line": "425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_STIR_INTID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SCB_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "440", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@SCB_Type@FI@CPUID", - "What": "FieldDecl", - "defdec": "Def", - "display": "CPUID", - "location": { - "column": "18", - "line": "442", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CPUID", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@ICSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICSR", - "location": { - "column": "18", - "line": "443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@VTOR", - "What": "FieldDecl", - "defdec": "Def", - "display": "VTOR", - "location": { - "column": "18", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "VTOR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@AIRCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "AIRCR", - "location": { - "column": "18", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "AIRCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCR", - "location": { - "column": "18", - "line": "446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@CCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CCR", - "location": { - "column": "18", - "line": "447", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SHP", - "What": "FieldDecl", - "defdec": "Def", - "display": "SHP", - "location": { - "column": "18", - "line": "448", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SHP", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SHCSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SHCSR", - "location": { - "column": "18", - "line": "449", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SHCSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@CFSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFSR", - "location": { - "column": "18", - "line": "450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CFSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@HFSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "HFSR", - "location": { - "column": "18", - "line": "451", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "HFSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@DFSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DFSR", - "location": { - "column": "18", - "line": "452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DFSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@MMFAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "MMFAR", - "location": { - "column": "18", - "line": "453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MMFAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@BFAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "BFAR", - "location": { - "column": "18", - "line": "454", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "BFAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@AFSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "AFSR", - "location": { - "column": "18", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "AFSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@PFR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PFR", - "location": { - "column": "18", - "line": "456", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PFR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@DFR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DFR", - "location": { - "column": "18", - "line": "457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DFR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@ADR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ADR", - "location": { - "column": "18", - "line": "458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ADR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@MMFR", - "What": "FieldDecl", - "defdec": "Def", - "display": "MMFR", - "location": { - "column": "18", - "line": "459", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MMFR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@ISAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISAR", - "location": { - "column": "18", - "line": "460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ISAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "461", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@CPACR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CPACR", - "location": { - "column": "18", - "line": "462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CPACR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_440_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SCB_Type", + "ID": "c:stdint.h@T@uintptr_t", "What": "Typedef", "defdec": "Def", - "display": "struct SCB_Type", + "display": "unsigned int", "location": { - "column": "3", - "line": "463", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "35", + "line": "83", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "SCB_Type", - "origin": "user_include", + "name": "uintptr_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@20796@macro@SCB_CPUID_IMPLEMENTER_Pos", + "ID": "c:stdint.h@2658@macro@__DATA_PTR_MEM_HELPER1__", "What": "MacroDef", "defdec": "Def", - "display": "SCB_CPUID_IMPLEMENTER_Pos", + "display": "__DATA_PTR_MEM_HELPER1__", "location": { "column": "9", - "line": "466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "86", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "SCB_CPUID_IMPLEMENTER_Pos", - "origin": "user_include", + "name": "__DATA_PTR_MEM_HELPER1__", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@20927@macro@SCB_CPUID_IMPLEMENTER_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_IMPLEMENTER_Msk", - "location": { - "column": "9", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_IMPLEMENTER_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21056@macro@SCB_CPUID_VARIANT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_VARIANT_Pos", - "location": { - "column": "9", - "line": "469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_VARIANT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21183@macro@SCB_CPUID_VARIANT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_VARIANT_Msk", - "location": { - "column": "9", - "line": "470", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_VARIANT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21308@macro@SCB_CPUID_ARCHITECTURE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_ARCHITECTURE_Pos", - "location": { - "column": "9", - "line": "472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_ARCHITECTURE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21440@macro@SCB_CPUID_ARCHITECTURE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_ARCHITECTURE_Msk", - "location": { - "column": "9", - "line": "473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_ARCHITECTURE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21570@macro@SCB_CPUID_PARTNO_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_PARTNO_Pos", - "location": { - "column": "9", - "line": "475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_PARTNO_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21696@macro@SCB_CPUID_PARTNO_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_PARTNO_Msk", - "location": { - "column": "9", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_PARTNO_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21820@macro@SCB_CPUID_REVISION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_REVISION_Pos", - "location": { - "column": "9", - "line": "478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_REVISION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@21948@macro@SCB_CPUID_REVISION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_REVISION_Msk", - "location": { - "column": "9", - "line": "479", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CPUID_REVISION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22130@macro@SCB_ICSR_NMIPENDSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_NMIPENDSET_Pos", - "location": { - "column": "9", - "line": "482", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_NMIPENDSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22259@macro@SCB_ICSR_NMIPENDSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_NMIPENDSET_Msk", - "location": { - "column": "9", - "line": "483", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_NMIPENDSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22386@macro@SCB_ICSR_PENDSVSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVSET_Pos", - "location": { - "column": "9", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSVSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22514@macro@SCB_ICSR_PENDSVSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVSET_Msk", - "location": { - "column": "9", - "line": "486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSVSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22640@macro@SCB_ICSR_PENDSVCLR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVCLR_Pos", - "location": { - "column": "9", - "line": "488", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSVCLR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22768@macro@SCB_ICSR_PENDSVCLR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVCLR_Msk", - "location": { - "column": "9", - "line": "489", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSVCLR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@22894@macro@SCB_ICSR_PENDSTSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTSET_Pos", - "location": { - "column": "9", - "line": "491", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSTSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23022@macro@SCB_ICSR_PENDSTSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTSET_Msk", - "location": { - "column": "9", - "line": "492", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSTSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23148@macro@SCB_ICSR_PENDSTCLR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTCLR_Pos", - "location": { - "column": "9", - "line": "494", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSTCLR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23276@macro@SCB_ICSR_PENDSTCLR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTCLR_Msk", - "location": { - "column": "9", - "line": "495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_PENDSTCLR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23402@macro@SCB_ICSR_ISRPREEMPT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPREEMPT_Pos", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_ISRPREEMPT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23531@macro@SCB_ICSR_ISRPREEMPT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPREEMPT_Msk", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_ISRPREEMPT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23658@macro@SCB_ICSR_ISRPENDING_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPENDING_Pos", - "location": { - "column": "9", - "line": "500", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_ISRPENDING_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23787@macro@SCB_ICSR_ISRPENDING_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPENDING_Msk", - "location": { - "column": "9", - "line": "501", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_ISRPENDING_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@23914@macro@SCB_ICSR_VECTPENDING_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTPENDING_Pos", - "location": { - "column": "9", - "line": "503", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_VECTPENDING_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24044@macro@SCB_ICSR_VECTPENDING_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTPENDING_Msk", - "location": { - "column": "9", - "line": "504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_VECTPENDING_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24172@macro@SCB_ICSR_RETTOBASE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_RETTOBASE_Pos", - "location": { - "column": "9", - "line": "506", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_RETTOBASE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24300@macro@SCB_ICSR_RETTOBASE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_RETTOBASE_Msk", - "location": { - "column": "9", - "line": "507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_RETTOBASE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24426@macro@SCB_ICSR_VECTACTIVE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTACTIVE_Pos", - "location": { - "column": "9", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_VECTACTIVE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24555@macro@SCB_ICSR_VECTACTIVE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTACTIVE_Msk", - "location": { - "column": "9", - "line": "510", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_ICSR_VECTACTIVE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24734@macro@SCB_VTOR_TBLOFF_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_VTOR_TBLOFF_Pos", - "location": { - "column": "9", - "line": "513", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_VTOR_TBLOFF_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@24859@macro@SCB_VTOR_TBLOFF_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_VTOR_TBLOFF_Msk", - "location": { - "column": "9", - "line": "514", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_VTOR_TBLOFF_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25054@macro@SCB_AIRCR_VECTKEY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEY_Pos", - "location": { - "column": "9", - "line": "517", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTKEY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25181@macro@SCB_AIRCR_VECTKEY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEY_Msk", - "location": { - "column": "9", - "line": "518", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTKEY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25306@macro@SCB_AIRCR_VECTKEYSTAT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEYSTAT_Pos", - "location": { - "column": "9", - "line": "520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTKEYSTAT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25437@macro@SCB_AIRCR_VECTKEYSTAT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEYSTAT_Msk", - "location": { - "column": "9", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTKEYSTAT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25566@macro@SCB_AIRCR_ENDIANESS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_ENDIANESS_Pos", - "location": { - "column": "9", - "line": "523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_ENDIANESS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25695@macro@SCB_AIRCR_ENDIANESS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_ENDIANESS_Msk", - "location": { - "column": "9", - "line": "524", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_ENDIANESS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25822@macro@SCB_AIRCR_PRIGROUP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_PRIGROUP_Pos", - "location": { - "column": "9", - "line": "526", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_PRIGROUP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@25950@macro@SCB_AIRCR_PRIGROUP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_PRIGROUP_Msk", - "location": { - "column": "9", - "line": "527", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_PRIGROUP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26076@macro@SCB_AIRCR_SYSRESETREQ_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_SYSRESETREQ_Pos", - "location": { - "column": "9", - "line": "529", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_SYSRESETREQ_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26207@macro@SCB_AIRCR_SYSRESETREQ_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_SYSRESETREQ_Msk", - "location": { - "column": "9", - "line": "530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_SYSRESETREQ_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26336@macro@SCB_AIRCR_VECTCLRACTIVE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTCLRACTIVE_Pos", - "location": { - "column": "9", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTCLRACTIVE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26469@macro@SCB_AIRCR_VECTCLRACTIVE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTCLRACTIVE_Msk", - "location": { - "column": "9", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTCLRACTIVE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26600@macro@SCB_AIRCR_VECTRESET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTRESET_Pos", - "location": { - "column": "9", - "line": "535", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTRESET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26729@macro@SCB_AIRCR_VECTRESET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTRESET_Msk", - "location": { - "column": "9", - "line": "536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_AIRCR_VECTRESET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@26903@macro@SCB_SCR_SEVONPEND_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SEVONPEND_Pos", - "location": { - "column": "9", - "line": "539", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SEVONPEND_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27030@macro@SCB_SCR_SEVONPEND_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SEVONPEND_Msk", - "location": { - "column": "9", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SEVONPEND_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27155@macro@SCB_SCR_SLEEPDEEP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPDEEP_Pos", - "location": { - "column": "9", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SLEEPDEEP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27282@macro@SCB_SCR_SLEEPDEEP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPDEEP_Msk", - "location": { - "column": "9", - "line": "543", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SLEEPDEEP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27407@macro@SCB_SCR_SLEEPONEXIT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPONEXIT_Pos", - "location": { - "column": "9", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SLEEPONEXIT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27536@macro@SCB_SCR_SLEEPONEXIT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPONEXIT_Msk", - "location": { - "column": "9", - "line": "546", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SCR_SLEEPONEXIT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27717@macro@SCB_CCR_STKALIGN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_STKALIGN_Pos", - "location": { - "column": "9", - "line": "549", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_STKALIGN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27843@macro@SCB_CCR_STKALIGN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_STKALIGN_Msk", - "location": { - "column": "9", - "line": "550", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_STKALIGN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@27967@macro@SCB_CCR_BFHFNMIGN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_BFHFNMIGN_Pos", - "location": { - "column": "9", - "line": "552", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_BFHFNMIGN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28094@macro@SCB_CCR_BFHFNMIGN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_BFHFNMIGN_Msk", - "location": { - "column": "9", - "line": "553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_BFHFNMIGN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28219@macro@SCB_CCR_DIV_0_TRP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_DIV_0_TRP_Pos", - "location": { - "column": "9", - "line": "555", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_DIV_0_TRP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28346@macro@SCB_CCR_DIV_0_TRP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_DIV_0_TRP_Msk", - "location": { - "column": "9", - "line": "556", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_DIV_0_TRP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28471@macro@SCB_CCR_UNALIGN_TRP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_UNALIGN_TRP_Pos", - "location": { - "column": "9", - "line": "558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_UNALIGN_TRP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28600@macro@SCB_CCR_UNALIGN_TRP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_UNALIGN_TRP_Msk", - "location": { - "column": "9", - "line": "559", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_UNALIGN_TRP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28727@macro@SCB_CCR_USERSETMPEND_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_USERSETMPEND_Pos", - "location": { - "column": "9", - "line": "561", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_USERSETMPEND_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28857@macro@SCB_CCR_USERSETMPEND_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_USERSETMPEND_Msk", - "location": { - "column": "9", - "line": "562", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_USERSETMPEND_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@28985@macro@SCB_CCR_NONBASETHRDENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_NONBASETHRDENA_Pos", - "location": { - "column": "9", - "line": "564", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_NONBASETHRDENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29117@macro@SCB_CCR_NONBASETHRDENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_NONBASETHRDENA_Msk", - "location": { - "column": "9", - "line": "565", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CCR_NONBASETHRDENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29312@macro@SCB_SHCSR_USGFAULTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTENA_Pos", - "location": { - "column": "9", - "line": "568", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29443@macro@SCB_SHCSR_USGFAULTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTENA_Msk", - "location": { - "column": "9", - "line": "569", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29572@macro@SCB_SHCSR_BUSFAULTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTENA_Pos", - "location": { - "column": "9", - "line": "571", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29703@macro@SCB_SHCSR_BUSFAULTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTENA_Msk", - "location": { - "column": "9", - "line": "572", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29832@macro@SCB_SHCSR_MEMFAULTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTENA_Pos", - "location": { - "column": "9", - "line": "574", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@29963@macro@SCB_SHCSR_MEMFAULTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTENA_Msk", - "location": { - "column": "9", - "line": "575", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30092@macro@SCB_SHCSR_SVCALLPENDED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLPENDED_Pos", - "location": { - "column": "9", - "line": "577", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SVCALLPENDED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30224@macro@SCB_SHCSR_SVCALLPENDED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLPENDED_Msk", - "location": { - "column": "9", - "line": "578", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SVCALLPENDED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30354@macro@SCB_SHCSR_BUSFAULTPENDED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTPENDED_Pos", - "location": { - "column": "9", - "line": "580", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTPENDED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30488@macro@SCB_SHCSR_BUSFAULTPENDED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTPENDED_Msk", - "location": { - "column": "9", - "line": "581", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTPENDED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30620@macro@SCB_SHCSR_MEMFAULTPENDED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTPENDED_Pos", - "location": { - "column": "9", - "line": "583", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTPENDED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30754@macro@SCB_SHCSR_MEMFAULTPENDED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTPENDED_Msk", - "location": { - "column": "9", - "line": "584", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTPENDED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@30886@macro@SCB_SHCSR_USGFAULTPENDED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTPENDED_Pos", - "location": { - "column": "9", - "line": "586", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTPENDED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31020@macro@SCB_SHCSR_USGFAULTPENDED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTPENDED_Msk", - "location": { - "column": "9", - "line": "587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTPENDED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31152@macro@SCB_SHCSR_SYSTICKACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SYSTICKACT_Pos", - "location": { - "column": "9", - "line": "589", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SYSTICKACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31282@macro@SCB_SHCSR_SYSTICKACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SYSTICKACT_Msk", - "location": { - "column": "9", - "line": "590", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SYSTICKACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31410@macro@SCB_SHCSR_PENDSVACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_PENDSVACT_Pos", - "location": { - "column": "9", - "line": "592", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_PENDSVACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31539@macro@SCB_SHCSR_PENDSVACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_PENDSVACT_Msk", - "location": { - "column": "9", - "line": "593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_PENDSVACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31666@macro@SCB_SHCSR_MONITORACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MONITORACT_Pos", - "location": { - "column": "9", - "line": "595", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MONITORACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31796@macro@SCB_SHCSR_MONITORACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MONITORACT_Msk", - "location": { - "column": "9", - "line": "596", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MONITORACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@31924@macro@SCB_SHCSR_SVCALLACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLACT_Pos", - "location": { - "column": "9", - "line": "598", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SVCALLACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32053@macro@SCB_SHCSR_SVCALLACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLACT_Msk", - "location": { - "column": "9", - "line": "599", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_SVCALLACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32180@macro@SCB_SHCSR_USGFAULTACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTACT_Pos", - "location": { - "column": "9", - "line": "601", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32311@macro@SCB_SHCSR_USGFAULTACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_USGFAULTACT_Msk", - "location": { - "column": "9", - "line": "602", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_USGFAULTACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32440@macro@SCB_SHCSR_BUSFAULTACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTACT_Pos", - "location": { - "column": "9", - "line": "604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32571@macro@SCB_SHCSR_BUSFAULTACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_BUSFAULTACT_Msk", - "location": { - "column": "9", - "line": "605", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_BUSFAULTACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32700@macro@SCB_SHCSR_MEMFAULTACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTACT_Pos", - "location": { - "column": "9", - "line": "607", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@32831@macro@SCB_SHCSR_MEMFAULTACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_MEMFAULTACT_Msk", - "location": { - "column": "9", - "line": "608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_SHCSR_MEMFAULTACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33018@macro@SCB_CFSR_USGFAULTSR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_USGFAULTSR_Pos", - "location": { - "column": "9", - "line": "611", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_USGFAULTSR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33164@macro@SCB_CFSR_USGFAULTSR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_USGFAULTSR_Msk", - "location": { - "column": "9", - "line": "612", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_USGFAULTSR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33308@macro@SCB_CFSR_BUSFAULTSR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_BUSFAULTSR_Pos", - "location": { - "column": "9", - "line": "614", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_BUSFAULTSR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33452@macro@SCB_CFSR_BUSFAULTSR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_BUSFAULTSR_Msk", - "location": { - "column": "9", - "line": "615", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_BUSFAULTSR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33594@macro@SCB_CFSR_MEMFAULTSR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MEMFAULTSR_Pos", - "location": { - "column": "9", - "line": "617", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MEMFAULTSR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33748@macro@SCB_CFSR_MEMFAULTSR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MEMFAULTSR_Msk", - "location": { - "column": "9", - "line": "618", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MEMFAULTSR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@33988@macro@SCB_CFSR_MMARVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MMARVALID_Pos", - "location": { - "column": "9", - "line": "621", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MMARVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34124@macro@SCB_CFSR_MMARVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MMARVALID_Msk", - "location": { - "column": "9", - "line": "622", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MMARVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34258@macro@SCB_CFSR_MLSPERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MLSPERR_Pos", - "location": { - "column": "9", - "line": "624", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MLSPERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34392@macro@SCB_CFSR_MLSPERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MLSPERR_Msk", - "location": { - "column": "9", - "line": "625", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MLSPERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34524@macro@SCB_CFSR_MSTKERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MSTKERR_Pos", - "location": { - "column": "9", - "line": "627", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MSTKERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34658@macro@SCB_CFSR_MSTKERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MSTKERR_Msk", - "location": { - "column": "9", - "line": "628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MSTKERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34790@macro@SCB_CFSR_MUNSTKERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MUNSTKERR_Pos", - "location": { - "column": "9", - "line": "630", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MUNSTKERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@34926@macro@SCB_CFSR_MUNSTKERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_MUNSTKERR_Msk", - "location": { - "column": "9", - "line": "631", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_MUNSTKERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35060@macro@SCB_CFSR_DACCVIOL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_DACCVIOL_Pos", - "location": { - "column": "9", - "line": "633", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_DACCVIOL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35195@macro@SCB_CFSR_DACCVIOL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_DACCVIOL_Msk", - "location": { - "column": "9", - "line": "634", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_DACCVIOL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35328@macro@SCB_CFSR_IACCVIOL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IACCVIOL_Pos", - "location": { - "column": "9", - "line": "636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IACCVIOL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35463@macro@SCB_CFSR_IACCVIOL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IACCVIOL_Msk", - "location": { - "column": "9", - "line": "637", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IACCVIOL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35677@macro@SCB_CFSR_BFARVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_BFARVALID_Pos", - "location": { - "column": "9", - "line": "640", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_BFARVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35812@macro@SCB_CFSR_BFARVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_BFARVALID_Msk", - "location": { - "column": "9", - "line": "641", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_BFARVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@35945@macro@SCB_CFSR_LSPERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_LSPERR_Pos", - "location": { - "column": "9", - "line": "643", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_LSPERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36077@macro@SCB_CFSR_LSPERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_LSPERR_Msk", - "location": { - "column": "9", - "line": "644", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_LSPERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36207@macro@SCB_CFSR_STKERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_STKERR_Pos", - "location": { - "column": "9", - "line": "646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_STKERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36339@macro@SCB_CFSR_STKERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_STKERR_Msk", - "location": { - "column": "9", - "line": "647", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_STKERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36469@macro@SCB_CFSR_UNSTKERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNSTKERR_Pos", - "location": { - "column": "9", - "line": "649", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNSTKERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36603@macro@SCB_CFSR_UNSTKERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNSTKERR_Msk", - "location": { - "column": "9", - "line": "650", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNSTKERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36735@macro@SCB_CFSR_IMPRECISERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IMPRECISERR_Pos", - "location": { - "column": "9", - "line": "652", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IMPRECISERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@36872@macro@SCB_CFSR_IMPRECISERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IMPRECISERR_Msk", - "location": { - "column": "9", - "line": "653", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IMPRECISERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37007@macro@SCB_CFSR_PRECISERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_PRECISERR_Pos", - "location": { - "column": "9", - "line": "655", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_PRECISERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37142@macro@SCB_CFSR_PRECISERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_PRECISERR_Msk", - "location": { - "column": "9", - "line": "656", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_PRECISERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37275@macro@SCB_CFSR_IBUSERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IBUSERR_Pos", - "location": { - "column": "9", - "line": "658", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IBUSERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37408@macro@SCB_CFSR_IBUSERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_IBUSERR_Msk", - "location": { - "column": "9", - "line": "659", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_IBUSERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37622@macro@SCB_CFSR_DIVBYZERO_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_DIVBYZERO_Pos", - "location": { - "column": "9", - "line": "662", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_DIVBYZERO_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37757@macro@SCB_CFSR_DIVBYZERO_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_DIVBYZERO_Msk", - "location": { - "column": "9", - "line": "663", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_DIVBYZERO_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@37890@macro@SCB_CFSR_UNALIGNED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNALIGNED_Pos", - "location": { - "column": "9", - "line": "665", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNALIGNED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38025@macro@SCB_CFSR_UNALIGNED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNALIGNED_Msk", - "location": { - "column": "9", - "line": "666", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNALIGNED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38158@macro@SCB_CFSR_NOCP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_NOCP_Pos", - "location": { - "column": "9", - "line": "668", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_NOCP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38288@macro@SCB_CFSR_NOCP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_NOCP_Msk", - "location": { - "column": "9", - "line": "669", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_NOCP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38416@macro@SCB_CFSR_INVPC_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_INVPC_Pos", - "location": { - "column": "9", - "line": "671", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_INVPC_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38547@macro@SCB_CFSR_INVPC_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_INVPC_Msk", - "location": { - "column": "9", - "line": "672", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_INVPC_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38676@macro@SCB_CFSR_INVSTATE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_INVSTATE_Pos", - "location": { - "column": "9", - "line": "674", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_INVSTATE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38810@macro@SCB_CFSR_INVSTATE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_INVSTATE_Msk", - "location": { - "column": "9", - "line": "675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_INVSTATE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@38942@macro@SCB_CFSR_UNDEFINSTR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNDEFINSTR_Pos", - "location": { - "column": "9", - "line": "677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNDEFINSTR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39078@macro@SCB_CFSR_UNDEFINSTR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CFSR_UNDEFINSTR_Msk", - "location": { - "column": "9", - "line": "678", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_CFSR_UNDEFINSTR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39262@macro@SCB_HFSR_DEBUGEVT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_DEBUGEVT_Pos", - "location": { - "column": "9", - "line": "681", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_DEBUGEVT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39389@macro@SCB_HFSR_DEBUGEVT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_DEBUGEVT_Msk", - "location": { - "column": "9", - "line": "682", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_DEBUGEVT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39514@macro@SCB_HFSR_FORCED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_FORCED_Pos", - "location": { - "column": "9", - "line": "684", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_FORCED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39639@macro@SCB_HFSR_FORCED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_FORCED_Msk", - "location": { - "column": "9", - "line": "685", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_FORCED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39762@macro@SCB_HFSR_VECTTBL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_VECTTBL_Pos", - "location": { - "column": "9", - "line": "687", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_VECTTBL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@39888@macro@SCB_HFSR_VECTTBL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_HFSR_VECTTBL_Msk", - "location": { - "column": "9", - "line": "688", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_HFSR_VECTTBL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40063@macro@SCB_DFSR_EXTERNAL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_EXTERNAL_Pos", - "location": { - "column": "9", - "line": "691", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_EXTERNAL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40190@macro@SCB_DFSR_EXTERNAL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_EXTERNAL_Msk", - "location": { - "column": "9", - "line": "692", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_EXTERNAL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40315@macro@SCB_DFSR_VCATCH_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_VCATCH_Pos", - "location": { - "column": "9", - "line": "694", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_VCATCH_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40440@macro@SCB_DFSR_VCATCH_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_VCATCH_Msk", - "location": { - "column": "9", - "line": "695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_VCATCH_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40563@macro@SCB_DFSR_DWTTRAP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_DWTTRAP_Pos", - "location": { - "column": "9", - "line": "697", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_DWTTRAP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40689@macro@SCB_DFSR_DWTTRAP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_DWTTRAP_Msk", - "location": { - "column": "9", - "line": "698", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_DWTTRAP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40813@macro@SCB_DFSR_BKPT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_BKPT_Pos", - "location": { - "column": "9", - "line": "700", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_BKPT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@40936@macro@SCB_DFSR_BKPT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_BKPT_Msk", - "location": { - "column": "9", - "line": "701", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_BKPT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@41057@macro@SCB_DFSR_HALTED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_HALTED_Pos", - "location": { - "column": "9", - "line": "703", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_HALTED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@41182@macro@SCB_DFSR_HALTED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_DFSR_HALTED_Msk", - "location": { - "column": "9", - "line": "704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_DFSR_HALTED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SCnSCB_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "719", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@SCnSCB_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "721", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_719_9" - }, - { - "ID": "c:@SA@SCnSCB_Type@FI@ICTR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICTR", - "location": { - "column": "18", - "line": "722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ICTR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_719_9" - }, - { - "ID": "c:@SA@SCnSCB_Type@FI@ACTLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ACTLR", - "location": { - "column": "18", - "line": "723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ACTLR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_719_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SCnSCB_Type", + "ID": "c:stdint.h@T@__data_uintptr_t", "What": "Typedef", "defdec": "Def", - "display": "struct SCnSCB_Type", + "display": "unsigned int", "location": { - "column": "3", - "line": "724", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "1", + "line": "89", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "SCnSCB_Type", - "origin": "user_include", + "name": "__data_uintptr_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@41963@macro@SCnSCB_ICTR_INTLINESNUM_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ICTR_INTLINESNUM_Pos", - "location": { - "column": "9", - "line": "727", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ICTR_INTLINESNUM_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42086@macro@SCnSCB_ICTR_INTLINESNUM_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ICTR_INTLINESNUM_Msk", - "location": { - "column": "9", - "line": "728", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ICTR_INTLINESNUM_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42253@macro@SCnSCB_ACTLR_DISOOFP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISOOFP_Pos", - "location": { - "column": "9", - "line": "731", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISOOFP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42373@macro@SCnSCB_ACTLR_DISOOFP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISOOFP_Msk", - "location": { - "column": "9", - "line": "732", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISOOFP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42491@macro@SCnSCB_ACTLR_DISFPCA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISFPCA_Pos", - "location": { - "column": "9", - "line": "734", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISFPCA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42611@macro@SCnSCB_ACTLR_DISFPCA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISFPCA_Msk", - "location": { - "column": "9", - "line": "735", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISFPCA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42729@macro@SCnSCB_ACTLR_DISFOLD_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISFOLD_Pos", - "location": { - "column": "9", - "line": "737", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISFOLD_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42849@macro@SCnSCB_ACTLR_DISFOLD_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISFOLD_Msk", - "location": { - "column": "9", - "line": "738", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISFOLD_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@42967@macro@SCnSCB_ACTLR_DISDEFWBUF_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISDEFWBUF_Pos", - "location": { - "column": "9", - "line": "740", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISDEFWBUF_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@43090@macro@SCnSCB_ACTLR_DISDEFWBUF_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISDEFWBUF_Msk", - "location": { - "column": "9", - "line": "741", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISDEFWBUF_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@43211@macro@SCnSCB_ACTLR_DISMCYCINT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISMCYCINT_Pos", - "location": { - "column": "9", - "line": "743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISMCYCINT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@43334@macro@SCnSCB_ACTLR_DISMCYCINT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB_ACTLR_DISMCYCINT_Msk", - "location": { - "column": "9", - "line": "744", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB_ACTLR_DISMCYCINT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SysTick_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "759", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@SysTick_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "18", - "line": "761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_759_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@LOAD", - "What": "FieldDecl", - "defdec": "Def", - "display": "LOAD", - "location": { - "column": "18", - "line": "762", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "LOAD", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_759_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@VAL", - "What": "FieldDecl", - "defdec": "Def", - "display": "VAL", - "location": { - "column": "18", - "line": "763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "VAL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_759_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@CALIB", - "What": "FieldDecl", - "defdec": "Def", - "display": "CALIB", - "location": { - "column": "18", - "line": "764", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CALIB", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_759_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SysTick_Type", + "ID": "c:stdint.h@T@__data_intptr_t", "What": "Typedef", "defdec": "Def", - "display": "struct SysTick_Type", + "display": "int", "location": { - "column": "3", - "line": "765", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "1", + "line": "89", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "SysTick_Type", - "origin": "user_include", + "name": "__data_intptr_t", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@44243@macro@SysTick_CTRL_COUNTFLAG_Pos", + "ID": "c:stdint.h@2962@macro@INT8_MAX", "What": "MacroDef", "defdec": "Def", - "display": "SysTick_CTRL_COUNTFLAG_Pos", - "location": { - "column": "9", - "line": "768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_COUNTFLAG_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@44375@macro@SysTick_CTRL_COUNTFLAG_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_COUNTFLAG_Msk", - "location": { - "column": "9", - "line": "769", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_COUNTFLAG_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@44505@macro@SysTick_CTRL_CLKSOURCE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_CLKSOURCE_Pos", - "location": { - "column": "9", - "line": "771", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_CLKSOURCE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@44637@macro@SysTick_CTRL_CLKSOURCE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_CLKSOURCE_Msk", - "location": { - "column": "9", - "line": "772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_CLKSOURCE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@44767@macro@SysTick_CTRL_TICKINT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_TICKINT_Pos", - "location": { - "column": "9", - "line": "774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_TICKINT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@44897@macro@SysTick_CTRL_TICKINT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_TICKINT_Msk", - "location": { - "column": "9", - "line": "775", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_TICKINT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45025@macro@SysTick_CTRL_ENABLE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_ENABLE_Pos", - "location": { - "column": "9", - "line": "777", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_ENABLE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45154@macro@SysTick_CTRL_ENABLE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_ENABLE_Msk", - "location": { - "column": "9", - "line": "778", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CTRL_ENABLE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45324@macro@SysTick_LOAD_RELOAD_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_LOAD_RELOAD_Pos", - "location": { - "column": "9", - "line": "781", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_LOAD_RELOAD_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45453@macro@SysTick_LOAD_RELOAD_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_LOAD_RELOAD_Msk", - "location": { - "column": "9", - "line": "782", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_LOAD_RELOAD_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45624@macro@SysTick_VAL_CURRENT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_VAL_CURRENT_Pos", - "location": { - "column": "9", - "line": "785", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_VAL_CURRENT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45753@macro@SysTick_VAL_CURRENT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_VAL_CURRENT_Msk", - "location": { - "column": "9", - "line": "786", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_VAL_CURRENT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@45928@macro@SysTick_CALIB_NOREF_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_NOREF_Pos", - "location": { - "column": "9", - "line": "789", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_NOREF_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@46057@macro@SysTick_CALIB_NOREF_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_NOREF_Msk", - "location": { - "column": "9", - "line": "790", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_NOREF_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@46184@macro@SysTick_CALIB_SKEW_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_SKEW_Pos", - "location": { - "column": "9", - "line": "792", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_SKEW_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@46312@macro@SysTick_CALIB_SKEW_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_SKEW_Msk", - "location": { - "column": "9", - "line": "793", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_SKEW_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@46438@macro@SysTick_CALIB_TENMS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_TENMS_Pos", - "location": { - "column": "9", - "line": "795", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_TENMS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@46567@macro@SysTick_CALIB_TENMS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_TENMS_Msk", - "location": { - "column": "9", - "line": "796", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_CALIB_TENMS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ITM_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "811", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "813", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u8", - "What": "FieldDecl", - "defdec": "Def", - "display": "u8", - "location": { - "column": "22", - "line": "815", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "u8", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" - }, - { - "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u16", - "What": "FieldDecl", - "defdec": "Def", - "display": "u16", - "location": { - "column": "22", - "line": "816", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "u16", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" - }, - { - "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u32", - "What": "FieldDecl", - "defdec": "Def", - "display": "u32", - "location": { - "column": "22", - "line": "817", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "u32", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PORT", - "What": "FieldDecl", - "defdec": "Def", - "display": "PORT", - "location": { - "column": "6", - "line": "818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PORT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "819", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@TER", - "What": "FieldDecl", - "defdec": "Def", - "display": "TER", - "location": { - "column": "18", - "line": "820", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TER", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED1", - "location": { - "column": "18", - "line": "821", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@TPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "TPR", - "location": { - "column": "18", - "line": "822", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED2", - "location": { - "column": "18", - "line": "823", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@TCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "TCR", - "location": { - "column": "18", - "line": "824", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED3", - "location": { - "column": "18", - "line": "825", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED4", - "location": { - "column": "18", - "line": "826", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED4", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@LAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "LAR", - "location": { - "column": "18", - "line": "827", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "LAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@LSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "LSR", - "location": { - "column": "18", - "line": "828", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "LSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@RESERVED5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED5", - "location": { - "column": "18", - "line": "829", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED5", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID4", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID4", - "location": { - "column": "18", - "line": "830", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID4", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID5", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID5", - "location": { - "column": "18", - "line": "831", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID5", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID6", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID6", - "location": { - "column": "18", - "line": "832", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID6", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID7", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID7", - "location": { - "column": "18", - "line": "833", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID7", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID0", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID0", - "location": { - "column": "18", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID1", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID1", - "location": { - "column": "18", - "line": "835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID2", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID2", - "location": { - "column": "18", - "line": "836", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@PID3", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID3", - "location": { - "column": "18", - "line": "837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PID3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@CID0", - "What": "FieldDecl", - "defdec": "Def", - "display": "CID0", - "location": { - "column": "18", - "line": "838", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CID0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@CID1", - "What": "FieldDecl", - "defdec": "Def", - "display": "CID1", - "location": { - "column": "18", - "line": "839", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CID1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@CID2", - "What": "FieldDecl", - "defdec": "Def", - "display": "CID2", - "location": { - "column": "18", - "line": "840", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CID2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - }, - { - "ID": "c:@SA@ITM_Type@FI@CID3", - "What": "FieldDecl", - "defdec": "Def", - "display": "CID3", - "location": { - "column": "18", - "line": "841", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CID3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_811_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ITM_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct ITM_Type", - "location": { - "column": "3", - "line": "842", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@49559@macro@ITM_TPR_PRIVMASK_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TPR_PRIVMASK_Pos", - "location": { - "column": "9", - "line": "845", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TPR_PRIVMASK_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@49685@macro@ITM_TPR_PRIVMASK_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TPR_PRIVMASK_Msk", - "location": { - "column": "9", - "line": "846", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TPR_PRIVMASK_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@49855@macro@ITM_TCR_BUSY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_BUSY_Pos", - "location": { - "column": "9", - "line": "849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_BUSY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@49977@macro@ITM_TCR_BUSY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_BUSY_Msk", - "location": { - "column": "9", - "line": "850", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_BUSY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50097@macro@ITM_TCR_TraceBusID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TraceBusID_Pos", - "location": { - "column": "9", - "line": "852", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TraceBusID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50220@macro@ITM_TCR_TraceBusID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TraceBusID_Msk", - "location": { - "column": "9", - "line": "853", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TraceBusID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50341@macro@ITM_TCR_GTSFREQ_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_GTSFREQ_Pos", - "location": { - "column": "9", - "line": "855", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_GTSFREQ_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50485@macro@ITM_TCR_GTSFREQ_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_GTSFREQ_Msk", - "location": { - "column": "9", - "line": "856", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_GTSFREQ_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50627@macro@ITM_TCR_TSPrescale_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TSPrescale_Pos", - "location": { - "column": "9", - "line": "858", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TSPrescale_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50755@macro@ITM_TCR_TSPrescale_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TSPrescale_Msk", - "location": { - "column": "9", - "line": "859", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TSPrescale_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@50881@macro@ITM_TCR_SWOENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_SWOENA_Pos", - "location": { - "column": "9", - "line": "861", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_SWOENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51005@macro@ITM_TCR_SWOENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_SWOENA_Msk", - "location": { - "column": "9", - "line": "862", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_SWOENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51127@macro@ITM_TCR_DWTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_DWTENA_Pos", - "location": { - "column": "9", - "line": "864", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_DWTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51251@macro@ITM_TCR_DWTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_DWTENA_Msk", - "location": { - "column": "9", - "line": "865", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_DWTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51373@macro@ITM_TCR_SYNCENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_SYNCENA_Pos", - "location": { - "column": "9", - "line": "867", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_SYNCENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51498@macro@ITM_TCR_SYNCENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_SYNCENA_Msk", - "location": { - "column": "9", - "line": "868", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_SYNCENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51621@macro@ITM_TCR_TSENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TSENA_Pos", - "location": { - "column": "9", - "line": "870", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TSENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51744@macro@ITM_TCR_TSENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_TSENA_Msk", - "location": { - "column": "9", - "line": "871", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_TSENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51865@macro@ITM_TCR_ITMENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_ITMENA_Pos", - "location": { - "column": "9", - "line": "873", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_ITMENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@51997@macro@ITM_TCR_ITMENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_TCR_ITMENA_Msk", - "location": { - "column": "9", - "line": "874", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_TCR_ITMENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52171@macro@ITM_LSR_ByteAcc_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_ByteAcc_Pos", - "location": { - "column": "9", - "line": "877", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_ByteAcc_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52296@macro@ITM_LSR_ByteAcc_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_ByteAcc_Msk", - "location": { - "column": "9", - "line": "878", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_ByteAcc_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52419@macro@ITM_LSR_Access_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_Access_Pos", - "location": { - "column": "9", - "line": "880", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_Access_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52543@macro@ITM_LSR_Access_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_Access_Msk", - "location": { - "column": "9", - "line": "881", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_Access_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52665@macro@ITM_LSR_Present_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_Present_Pos", - "location": { - "column": "9", - "line": "883", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_Present_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@52790@macro@ITM_LSR_Present_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_LSR_Present_Msk", - "location": { - "column": "9", - "line": "884", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_LSR_Present_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DWT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "899", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@DWT_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "18", - "line": "901", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@CYCCNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "CYCCNT", - "location": { - "column": "18", - "line": "902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CYCCNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@CPICNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "CPICNT", - "location": { - "column": "18", - "line": "903", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CPICNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@EXCCNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "EXCCNT", - "location": { - "column": "18", - "line": "904", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "EXCCNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@SLEEPCNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "SLEEPCNT", - "location": { - "column": "18", - "line": "905", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SLEEPCNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@LSUCNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "LSUCNT", - "location": { - "column": "18", - "line": "906", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "LSUCNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@FOLDCNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FOLDCNT", - "location": { - "column": "18", - "line": "907", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FOLDCNT", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@PCSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PCSR", - "location": { - "column": "18", - "line": "908", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PCSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@COMP0", - "What": "FieldDecl", - "defdec": "Def", - "display": "COMP0", - "location": { - "column": "18", - "line": "909", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "COMP0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@MASK0", - "What": "FieldDecl", - "defdec": "Def", - "display": "MASK0", - "location": { - "column": "18", - "line": "910", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MASK0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@FUNCTION0", - "What": "FieldDecl", - "defdec": "Def", - "display": "FUNCTION0", - "location": { - "column": "18", - "line": "911", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FUNCTION0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "912", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@COMP1", - "What": "FieldDecl", - "defdec": "Def", - "display": "COMP1", - "location": { - "column": "18", - "line": "913", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "COMP1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@MASK1", - "What": "FieldDecl", - "defdec": "Def", - "display": "MASK1", - "location": { - "column": "18", - "line": "914", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MASK1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@FUNCTION1", - "What": "FieldDecl", - "defdec": "Def", - "display": "FUNCTION1", - "location": { - "column": "18", - "line": "915", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FUNCTION1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@RESERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED1", - "location": { - "column": "18", - "line": "916", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@COMP2", - "What": "FieldDecl", - "defdec": "Def", - "display": "COMP2", - "location": { - "column": "18", - "line": "917", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "COMP2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@MASK2", - "What": "FieldDecl", - "defdec": "Def", - "display": "MASK2", - "location": { - "column": "18", - "line": "918", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MASK2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@FUNCTION2", - "What": "FieldDecl", - "defdec": "Def", - "display": "FUNCTION2", - "location": { - "column": "18", - "line": "919", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FUNCTION2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@RESERVED2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED2", - "location": { - "column": "18", - "line": "920", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@COMP3", - "What": "FieldDecl", - "defdec": "Def", - "display": "COMP3", - "location": { - "column": "18", - "line": "921", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "COMP3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@MASK3", - "What": "FieldDecl", - "defdec": "Def", - "display": "MASK3", - "location": { - "column": "18", - "line": "922", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MASK3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - }, - { - "ID": "c:@SA@DWT_Type@FI@FUNCTION3", - "What": "FieldDecl", - "defdec": "Def", - "display": "FUNCTION3", - "location": { - "column": "18", - "line": "923", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FUNCTION3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_899_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DWT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct DWT_Type", - "location": { - "column": "3", - "line": "924", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55248@macro@DWT_CTRL_NUMCOMP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NUMCOMP_Pos", - "location": { - "column": "9", - "line": "927", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NUMCOMP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55371@macro@DWT_CTRL_NUMCOMP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NUMCOMP_Msk", - "location": { - "column": "9", - "line": "928", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NUMCOMP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55492@macro@DWT_CTRL_NOTRCPKT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOTRCPKT_Pos", - "location": { - "column": "9", - "line": "930", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOTRCPKT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55616@macro@DWT_CTRL_NOTRCPKT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOTRCPKT_Msk", - "location": { - "column": "9", - "line": "931", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOTRCPKT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55738@macro@DWT_CTRL_NOEXTTRIG_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOEXTTRIG_Pos", - "location": { - "column": "9", - "line": "933", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOEXTTRIG_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55863@macro@DWT_CTRL_NOEXTTRIG_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOEXTTRIG_Msk", - "location": { - "column": "9", - "line": "934", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOEXTTRIG_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@55986@macro@DWT_CTRL_NOCYCCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOCYCCNT_Pos", - "location": { - "column": "9", - "line": "936", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOCYCCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56110@macro@DWT_CTRL_NOCYCCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOCYCCNT_Msk", - "location": { - "column": "9", - "line": "937", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOCYCCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56232@macro@DWT_CTRL_NOPRFCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOPRFCNT_Pos", - "location": { - "column": "9", - "line": "939", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOPRFCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56356@macro@DWT_CTRL_NOPRFCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_NOPRFCNT_Msk", - "location": { - "column": "9", - "line": "940", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_NOPRFCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56478@macro@DWT_CTRL_CYCEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCEVTENA_Pos", - "location": { - "column": "9", - "line": "942", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56603@macro@DWT_CTRL_CYCEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCEVTENA_Msk", - "location": { - "column": "9", - "line": "943", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56726@macro@DWT_CTRL_FOLDEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_FOLDEVTENA_Pos", - "location": { - "column": "9", - "line": "945", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_FOLDEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56852@macro@DWT_CTRL_FOLDEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_FOLDEVTENA_Msk", - "location": { - "column": "9", - "line": "946", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_FOLDEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@56976@macro@DWT_CTRL_LSUEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_LSUEVTENA_Pos", - "location": { - "column": "9", - "line": "948", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_LSUEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57101@macro@DWT_CTRL_LSUEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_LSUEVTENA_Msk", - "location": { - "column": "9", - "line": "949", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_LSUEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57224@macro@DWT_CTRL_SLEEPEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_SLEEPEVTENA_Pos", - "location": { - "column": "9", - "line": "951", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_SLEEPEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57351@macro@DWT_CTRL_SLEEPEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_SLEEPEVTENA_Msk", - "location": { - "column": "9", - "line": "952", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_SLEEPEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57476@macro@DWT_CTRL_EXCEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_EXCEVTENA_Pos", - "location": { - "column": "9", - "line": "954", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_EXCEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57601@macro@DWT_CTRL_EXCEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_EXCEVTENA_Msk", - "location": { - "column": "9", - "line": "955", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_EXCEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57724@macro@DWT_CTRL_CPIEVTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CPIEVTENA_Pos", - "location": { - "column": "9", - "line": "957", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CPIEVTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57849@macro@DWT_CTRL_CPIEVTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CPIEVTENA_Msk", - "location": { - "column": "9", - "line": "958", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CPIEVTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@57972@macro@DWT_CTRL_EXCTRCENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_EXCTRCENA_Pos", - "location": { - "column": "9", - "line": "960", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_EXCTRCENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58097@macro@DWT_CTRL_EXCTRCENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_EXCTRCENA_Msk", - "location": { - "column": "9", - "line": "961", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_EXCTRCENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58220@macro@DWT_CTRL_PCSAMPLENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_PCSAMPLENA_Pos", - "location": { - "column": "9", - "line": "963", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_PCSAMPLENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58346@macro@DWT_CTRL_PCSAMPLENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_PCSAMPLENA_Msk", - "location": { - "column": "9", - "line": "964", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_PCSAMPLENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58470@macro@DWT_CTRL_SYNCTAP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_SYNCTAP_Pos", - "location": { - "column": "9", - "line": "966", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_SYNCTAP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58593@macro@DWT_CTRL_SYNCTAP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_SYNCTAP_Msk", - "location": { - "column": "9", - "line": "967", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_SYNCTAP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58714@macro@DWT_CTRL_CYCTAP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCTAP_Pos", - "location": { - "column": "9", - "line": "969", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCTAP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58836@macro@DWT_CTRL_CYCTAP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCTAP_Msk", - "location": { - "column": "9", - "line": "970", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCTAP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@58956@macro@DWT_CTRL_POSTINIT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_POSTINIT_Pos", - "location": { - "column": "9", - "line": "972", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_POSTINIT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59080@macro@DWT_CTRL_POSTINIT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_POSTINIT_Msk", - "location": { - "column": "9", - "line": "973", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_POSTINIT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59202@macro@DWT_CTRL_POSTPRESET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_POSTPRESET_Pos", - "location": { - "column": "9", - "line": "975", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_POSTPRESET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59328@macro@DWT_CTRL_POSTPRESET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_POSTPRESET_Msk", - "location": { - "column": "9", - "line": "976", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_POSTPRESET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59452@macro@DWT_CTRL_CYCCNTENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCCNTENA_Pos", - "location": { - "column": "9", - "line": "978", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCCNTENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59577@macro@DWT_CTRL_CYCCNTENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CTRL_CYCCNTENA_Msk", - "location": { - "column": "9", - "line": "979", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CTRL_CYCCNTENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59742@macro@DWT_CPICNT_CPICNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CPICNT_CPICNT_Pos", - "location": { - "column": "9", - "line": "982", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CPICNT_CPICNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@59866@macro@DWT_CPICNT_CPICNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_CPICNT_CPICNT_Msk", - "location": { - "column": "9", - "line": "983", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_CPICNT_CPICNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60045@macro@DWT_EXCCNT_EXCCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_EXCCNT_EXCCNT_Pos", - "location": { - "column": "9", - "line": "986", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_EXCCNT_EXCCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60169@macro@DWT_EXCCNT_EXCCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_EXCCNT_EXCCNT_Msk", - "location": { - "column": "9", - "line": "987", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_EXCCNT_EXCCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60335@macro@DWT_SLEEPCNT_SLEEPCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_SLEEPCNT_SLEEPCNT_Pos", - "location": { - "column": "9", - "line": "990", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_SLEEPCNT_SLEEPCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60463@macro@DWT_SLEEPCNT_SLEEPCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_SLEEPCNT_SLEEPCNT_Msk", - "location": { - "column": "9", - "line": "991", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_SLEEPCNT_SLEEPCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60631@macro@DWT_LSUCNT_LSUCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_LSUCNT_LSUCNT_Pos", - "location": { - "column": "9", - "line": "994", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_LSUCNT_LSUCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60755@macro@DWT_LSUCNT_LSUCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_LSUCNT_LSUCNT_Msk", - "location": { - "column": "9", - "line": "995", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_LSUCNT_LSUCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@60934@macro@DWT_FOLDCNT_FOLDCNT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FOLDCNT_FOLDCNT_Pos", - "location": { - "column": "9", - "line": "998", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FOLDCNT_FOLDCNT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61060@macro@DWT_FOLDCNT_FOLDCNT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FOLDCNT_FOLDCNT_Msk", - "location": { - "column": "9", - "line": "999", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FOLDCNT_FOLDCNT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61232@macro@DWT_MASK_MASK_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_MASK_MASK_Pos", - "location": { - "column": "9", - "line": "1002", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_MASK_MASK_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61352@macro@DWT_MASK_MASK_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_MASK_MASK_Msk", - "location": { - "column": "9", - "line": "1003", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_MASK_MASK_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61522@macro@DWT_FUNCTION_MATCHED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_MATCHED_Pos", - "location": { - "column": "9", - "line": "1006", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_MATCHED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61649@macro@DWT_FUNCTION_MATCHED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_MATCHED_Msk", - "location": { - "column": "9", - "line": "1007", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_MATCHED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61774@macro@DWT_FUNCTION_DATAVADDR1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVADDR1_Pos", - "location": { - "column": "9", - "line": "1009", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVADDR1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@61904@macro@DWT_FUNCTION_DATAVADDR1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVADDR1_Msk", - "location": { - "column": "9", - "line": "1010", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVADDR1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62032@macro@DWT_FUNCTION_DATAVADDR0_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVADDR0_Pos", - "location": { - "column": "9", - "line": "1012", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVADDR0_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62162@macro@DWT_FUNCTION_DATAVADDR0_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVADDR0_Msk", - "location": { - "column": "9", - "line": "1013", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVADDR0_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62290@macro@DWT_FUNCTION_DATAVSIZE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVSIZE_Pos", - "location": { - "column": "9", - "line": "1015", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVSIZE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62419@macro@DWT_FUNCTION_DATAVSIZE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVSIZE_Msk", - "location": { - "column": "9", - "line": "1016", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVSIZE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62546@macro@DWT_FUNCTION_LNK1ENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_LNK1ENA_Pos", - "location": { - "column": "9", - "line": "1018", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_LNK1ENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62673@macro@DWT_FUNCTION_LNK1ENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_LNK1ENA_Msk", - "location": { - "column": "9", - "line": "1019", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_LNK1ENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62798@macro@DWT_FUNCTION_DATAVMATCH_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVMATCH_Pos", - "location": { - "column": "9", - "line": "1021", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVMATCH_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@62928@macro@DWT_FUNCTION_DATAVMATCH_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_DATAVMATCH_Msk", - "location": { - "column": "9", - "line": "1022", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_DATAVMATCH_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63056@macro@DWT_FUNCTION_CYCMATCH_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_CYCMATCH_Pos", - "location": { - "column": "9", - "line": "1024", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_CYCMATCH_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63184@macro@DWT_FUNCTION_CYCMATCH_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_CYCMATCH_Msk", - "location": { - "column": "9", - "line": "1025", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_CYCMATCH_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63310@macro@DWT_FUNCTION_EMITRANGE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_EMITRANGE_Pos", - "location": { - "column": "9", - "line": "1027", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_EMITRANGE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63439@macro@DWT_FUNCTION_EMITRANGE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_EMITRANGE_Msk", - "location": { - "column": "9", - "line": "1028", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_EMITRANGE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63566@macro@DWT_FUNCTION_FUNCTION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_FUNCTION_Pos", - "location": { - "column": "9", - "line": "1030", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_FUNCTION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@63694@macro@DWT_FUNCTION_FUNCTION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_FUNCTION_FUNCTION_Msk", - "location": { - "column": "9", - "line": "1031", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_FUNCTION_FUNCTION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TPI_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1046", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@TPI_Type@FI@SSPSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SSPSR", - "location": { - "column": "18", - "line": "1048", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SSPSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@CSPSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CSPSR", - "location": { - "column": "18", - "line": "1049", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CSPSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "1050", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@ACPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ACPR", - "location": { - "column": "18", - "line": "1051", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ACPR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED1", - "location": { - "column": "18", - "line": "1052", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@SPPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SPPR", - "location": { - "column": "18", - "line": "1053", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SPPR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED2", - "location": { - "column": "18", - "line": "1054", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@FFSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FFSR", - "location": { - "column": "18", - "line": "1055", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FFSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@FFCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FFCR", - "location": { - "column": "18", - "line": "1056", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FFCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@FSCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FSCR", - "location": { - "column": "18", - "line": "1057", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FSCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED3", - "location": { - "column": "18", - "line": "1058", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@TRIGGER", - "What": "FieldDecl", - "defdec": "Def", - "display": "TRIGGER", - "location": { - "column": "18", - "line": "1059", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TRIGGER", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@FIFO0", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFO0", - "location": { - "column": "18", - "line": "1060", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FIFO0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@ITATBCTR2", - "What": "FieldDecl", - "defdec": "Def", - "display": "ITATBCTR2", - "location": { - "column": "18", - "line": "1061", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITATBCTR2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED4", - "location": { - "column": "18", - "line": "1062", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED4", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@ITATBCTR0", - "What": "FieldDecl", - "defdec": "Def", - "display": "ITATBCTR0", - "location": { - "column": "18", - "line": "1063", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITATBCTR0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@FIFO1", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFO1", - "location": { - "column": "18", - "line": "1064", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FIFO1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@ITCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ITCTRL", - "location": { - "column": "18", - "line": "1065", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITCTRL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED5", - "location": { - "column": "18", - "line": "1066", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED5", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@CLAIMSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLAIMSET", - "location": { - "column": "18", - "line": "1067", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CLAIMSET", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@CLAIMCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLAIMCLR", - "location": { - "column": "18", - "line": "1068", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CLAIMCLR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@RESERVED7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED7", - "location": { - "column": "18", - "line": "1069", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED7", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@DEVID", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEVID", - "location": { - "column": "18", - "line": "1070", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DEVID", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - }, - { - "ID": "c:@SA@TPI_Type@FI@DEVTYPE", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEVTYPE", - "location": { - "column": "18", - "line": "1071", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DEVTYPE", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1046_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TPI_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct TPI_Type", - "location": { - "column": "3", - "line": "1072", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66074@macro@TPI_ACPR_PRESCALER_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ACPR_PRESCALER_Pos", - "location": { - "column": "9", - "line": "1075", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ACPR_PRESCALER_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66199@macro@TPI_ACPR_PRESCALER_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ACPR_PRESCALER_Msk", - "location": { - "column": "9", - "line": "1076", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ACPR_PRESCALER_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66376@macro@TPI_SPPR_TXMODE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_SPPR_TXMODE_Pos", - "location": { - "column": "9", - "line": "1079", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_SPPR_TXMODE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66498@macro@TPI_SPPR_TXMODE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_SPPR_TXMODE_Msk", - "location": { - "column": "9", - "line": "1080", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_SPPR_TXMODE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66677@macro@TPI_FFSR_FtNonStop_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FtNonStop_Pos", - "location": { - "column": "9", - "line": "1083", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FtNonStop_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66802@macro@TPI_FFSR_FtNonStop_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FtNonStop_Msk", - "location": { - "column": "9", - "line": "1084", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FtNonStop_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@66925@macro@TPI_FFSR_TCPresent_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_TCPresent_Pos", - "location": { - "column": "9", - "line": "1086", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_TCPresent_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67050@macro@TPI_FFSR_TCPresent_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_TCPresent_Msk", - "location": { - "column": "9", - "line": "1087", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_TCPresent_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67173@macro@TPI_FFSR_FtStopped_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FtStopped_Pos", - "location": { - "column": "9", - "line": "1089", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FtStopped_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67298@macro@TPI_FFSR_FtStopped_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FtStopped_Msk", - "location": { - "column": "9", - "line": "1090", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FtStopped_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67421@macro@TPI_FFSR_FlInProg_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FlInProg_Pos", - "location": { - "column": "9", - "line": "1092", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FlInProg_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67545@macro@TPI_FFSR_FlInProg_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFSR_FlInProg_Msk", - "location": { - "column": "9", - "line": "1093", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFSR_FlInProg_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67727@macro@TPI_FFCR_TrigIn_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFCR_TrigIn_Pos", - "location": { - "column": "9", - "line": "1096", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFCR_TrigIn_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67849@macro@TPI_FFCR_TrigIn_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFCR_TrigIn_Msk", - "location": { - "column": "9", - "line": "1097", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFCR_TrigIn_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@67969@macro@TPI_FFCR_EnFCont_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFCR_EnFCont_Pos", - "location": { - "column": "9", - "line": "1099", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFCR_EnFCont_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68092@macro@TPI_FFCR_EnFCont_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FFCR_EnFCont_Msk", - "location": { - "column": "9", - "line": "1100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FFCR_EnFCont_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68253@macro@TPI_TRIGGER_TRIGGER_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_TRIGGER_TRIGGER_Pos", - "location": { - "column": "9", - "line": "1103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_TRIGGER_TRIGGER_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68379@macro@TPI_TRIGGER_TRIGGER_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_TRIGGER_TRIGGER_Msk", - "location": { - "column": "9", - "line": "1104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_TRIGGER_TRIGGER_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68564@macro@TPI_FIFO0_ITM_ATVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ITM_ATVALID_Pos", - "location": { - "column": "9", - "line": "1107", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ITM_ATVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68692@macro@TPI_FIFO0_ITM_ATVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ITM_ATVALID_Msk", - "location": { - "column": "9", - "line": "1108", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ITM_ATVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68818@macro@TPI_FIFO0_ITM_bytecount_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ITM_bytecount_Pos", - "location": { - "column": "9", - "line": "1110", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ITM_bytecount_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@68948@macro@TPI_FIFO0_ITM_bytecount_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ITM_bytecount_Msk", - "location": { - "column": "9", - "line": "1111", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ITM_bytecount_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69076@macro@TPI_FIFO0_ETM_ATVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM_ATVALID_Pos", - "location": { - "column": "9", - "line": "1113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM_ATVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69204@macro@TPI_FIFO0_ETM_ATVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM_ATVALID_Msk", - "location": { - "column": "9", - "line": "1114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM_ATVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69330@macro@TPI_FIFO0_ETM_bytecount_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM_bytecount_Pos", - "location": { - "column": "9", - "line": "1116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM_bytecount_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69460@macro@TPI_FIFO0_ETM_bytecount_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM_bytecount_Msk", - "location": { - "column": "9", - "line": "1117", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM_bytecount_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69588@macro@TPI_FIFO0_ETM2_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM2_Pos", - "location": { - "column": "9", - "line": "1119", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM2_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69709@macro@TPI_FIFO0_ETM2_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM2_Msk", - "location": { - "column": "9", - "line": "1120", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM2_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69828@macro@TPI_FIFO0_ETM1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM1_Pos", - "location": { - "column": "9", - "line": "1122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@69949@macro@TPI_FIFO0_ETM1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM1_Msk", - "location": { - "column": "9", - "line": "1123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70068@macro@TPI_FIFO0_ETM0_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM0_Pos", - "location": { - "column": "9", - "line": "1125", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM0_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70189@macro@TPI_FIFO0_ETM0_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO0_ETM0_Msk", - "location": { - "column": "9", - "line": "1126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO0_ETM0_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70350@macro@TPI_ITATBCTR2_ATREADY2_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR2_ATREADY2_Pos", - "location": { - "column": "9", - "line": "1129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR2_ATREADY2_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70479@macro@TPI_ITATBCTR2_ATREADY2_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR2_ATREADY2_Msk", - "location": { - "column": "9", - "line": "1130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR2_ATREADY2_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70606@macro@TPI_ITATBCTR2_ATREADY1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR2_ATREADY1_Pos", - "location": { - "column": "9", - "line": "1132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR2_ATREADY1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70735@macro@TPI_ITATBCTR2_ATREADY1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR2_ATREADY1_Msk", - "location": { - "column": "9", - "line": "1133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR2_ATREADY1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@70923@macro@TPI_FIFO1_ITM_ATVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM_ATVALID_Pos", - "location": { - "column": "9", - "line": "1136", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM_ATVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71051@macro@TPI_FIFO1_ITM_ATVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM_ATVALID_Msk", - "location": { - "column": "9", - "line": "1137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM_ATVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71177@macro@TPI_FIFO1_ITM_bytecount_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM_bytecount_Pos", - "location": { - "column": "9", - "line": "1139", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM_bytecount_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71307@macro@TPI_FIFO1_ITM_bytecount_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM_bytecount_Msk", - "location": { - "column": "9", - "line": "1140", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM_bytecount_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71435@macro@TPI_FIFO1_ETM_ATVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ETM_ATVALID_Pos", - "location": { - "column": "9", - "line": "1142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ETM_ATVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71563@macro@TPI_FIFO1_ETM_ATVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ETM_ATVALID_Msk", - "location": { - "column": "9", - "line": "1143", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ETM_ATVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71689@macro@TPI_FIFO1_ETM_bytecount_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ETM_bytecount_Pos", - "location": { - "column": "9", - "line": "1145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ETM_bytecount_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71819@macro@TPI_FIFO1_ETM_bytecount_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ETM_bytecount_Msk", - "location": { - "column": "9", - "line": "1146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ETM_bytecount_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@71947@macro@TPI_FIFO1_ITM2_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM2_Pos", - "location": { - "column": "9", - "line": "1148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM2_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72068@macro@TPI_FIFO1_ITM2_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM2_Msk", - "location": { - "column": "9", - "line": "1149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM2_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72187@macro@TPI_FIFO1_ITM1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM1_Pos", - "location": { - "column": "9", - "line": "1151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72308@macro@TPI_FIFO1_ITM1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM1_Msk", - "location": { - "column": "9", - "line": "1152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72427@macro@TPI_FIFO1_ITM0_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM0_Pos", - "location": { - "column": "9", - "line": "1154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM0_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72548@macro@TPI_FIFO1_ITM0_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_FIFO1_ITM0_Msk", - "location": { - "column": "9", - "line": "1155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_FIFO1_ITM0_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72709@macro@TPI_ITATBCTR0_ATREADY2_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR0_ATREADY2_Pos", - "location": { - "column": "9", - "line": "1158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR0_ATREADY2_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72838@macro@TPI_ITATBCTR0_ATREADY2_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR0_ATREADY2_Msk", - "location": { - "column": "9", - "line": "1159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR0_ATREADY2_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@72965@macro@TPI_ITATBCTR0_ATREADY1_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR0_ATREADY1_Pos", - "location": { - "column": "9", - "line": "1161", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR0_ATREADY1_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73094@macro@TPI_ITATBCTR0_ATREADY1_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITATBCTR0_ATREADY1_Msk", - "location": { - "column": "9", - "line": "1162", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITATBCTR0_ATREADY1_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73278@macro@TPI_ITCTRL_Mode_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITCTRL_Mode_Pos", - "location": { - "column": "9", - "line": "1165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITCTRL_Mode_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73400@macro@TPI_ITCTRL_Mode_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_ITCTRL_Mode_Msk", - "location": { - "column": "9", - "line": "1166", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_ITCTRL_Mode_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73558@macro@TPI_DEVID_NRZVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_NRZVALID_Pos", - "location": { - "column": "9", - "line": "1169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_NRZVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73683@macro@TPI_DEVID_NRZVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_NRZVALID_Msk", - "location": { - "column": "9", - "line": "1170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_NRZVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73806@macro@TPI_DEVID_MANCVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_MANCVALID_Pos", - "location": { - "column": "9", - "line": "1172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_MANCVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@73932@macro@TPI_DEVID_MANCVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_MANCVALID_Msk", - "location": { - "column": "9", - "line": "1173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_MANCVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74056@macro@TPI_DEVID_PTINVALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_PTINVALID_Pos", - "location": { - "column": "9", - "line": "1175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_PTINVALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74182@macro@TPI_DEVID_PTINVALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_PTINVALID_Msk", - "location": { - "column": "9", - "line": "1176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_PTINVALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74306@macro@TPI_DEVID_MinBufSz_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_MinBufSz_Pos", - "location": { - "column": "9", - "line": "1178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_MinBufSz_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74431@macro@TPI_DEVID_MinBufSz_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_MinBufSz_Msk", - "location": { - "column": "9", - "line": "1179", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_MinBufSz_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74554@macro@TPI_DEVID_AsynClkIn_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_AsynClkIn_Pos", - "location": { - "column": "9", - "line": "1181", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_AsynClkIn_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74680@macro@TPI_DEVID_AsynClkIn_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_AsynClkIn_Msk", - "location": { - "column": "9", - "line": "1182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_AsynClkIn_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74804@macro@TPI_DEVID_NrTraceInput_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_NrTraceInput_Pos", - "location": { - "column": "9", - "line": "1184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_NrTraceInput_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@74933@macro@TPI_DEVID_NrTraceInput_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVID_NrTraceInput_Msk", - "location": { - "column": "9", - "line": "1185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVID_NrTraceInput_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@75100@macro@TPI_DEVTYPE_SubType_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVTYPE_SubType_Pos", - "location": { - "column": "9", - "line": "1188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVTYPE_SubType_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@75226@macro@TPI_DEVTYPE_SubType_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVTYPE_SubType_Msk", - "location": { - "column": "9", - "line": "1189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVTYPE_SubType_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@75350@macro@TPI_DEVTYPE_MajorType_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVTYPE_MajorType_Pos", - "location": { - "column": "9", - "line": "1191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVTYPE_MajorType_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@75478@macro@TPI_DEVTYPE_MajorType_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_DEVTYPE_MajorType_Msk", - "location": { - "column": "9", - "line": "1192", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_DEVTYPE_MajorType_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@MPU_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@MPU_Type@FI@TYPE", - "What": "FieldDecl", - "defdec": "Def", - "display": "TYPE", - "location": { - "column": "18", - "line": "1210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TYPE", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "18", - "line": "1211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RNR", - "What": "FieldDecl", - "defdec": "Def", - "display": "RNR", - "location": { - "column": "18", - "line": "1212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RNR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RBAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "RBAR", - "location": { - "column": "18", - "line": "1213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RBAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RASR", - "What": "FieldDecl", - "defdec": "Def", - "display": "RASR", - "location": { - "column": "18", - "line": "1214", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RASR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RBAR_A1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RBAR_A1", - "location": { - "column": "18", - "line": "1215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RBAR_A1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RASR_A1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RASR_A1", - "location": { - "column": "18", - "line": "1216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RASR_A1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RBAR_A2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RBAR_A2", - "location": { - "column": "18", - "line": "1217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RBAR_A2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RASR_A2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RASR_A2", - "location": { - "column": "18", - "line": "1218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RASR_A2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RBAR_A3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RBAR_A3", - "location": { - "column": "18", - "line": "1219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RBAR_A3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - }, - { - "ID": "c:@SA@MPU_Type@FI@RASR_A3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RASR_A3", - "location": { - "column": "18", - "line": "1220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RASR_A3", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1208_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@MPU_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct MPU_Type", - "location": { - "column": "3", - "line": "1221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77170@macro@MPU_TYPE_RALIASES", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_RALIASES", - "location": { - "column": "9", - "line": "1223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_RALIASES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77256@macro@MPU_TYPE_IREGION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_IREGION_Pos", - "location": { - "column": "9", - "line": "1226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_IREGION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77382@macro@MPU_TYPE_IREGION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_IREGION_Msk", - "location": { - "column": "9", - "line": "1227", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_IREGION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77506@macro@MPU_TYPE_DREGION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_DREGION_Pos", - "location": { - "column": "9", - "line": "1229", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_DREGION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77632@macro@MPU_TYPE_DREGION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_DREGION_Msk", - "location": { - "column": "9", - "line": "1230", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_DREGION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77756@macro@MPU_TYPE_SEPARATE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_SEPARATE_Pos", - "location": { - "column": "9", - "line": "1232", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_SEPARATE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@77883@macro@MPU_TYPE_SEPARATE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TYPE_SEPARATE_Msk", - "location": { - "column": "9", - "line": "1233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_TYPE_SEPARATE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78048@macro@MPU_CTRL_PRIVDEFENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_PRIVDEFENA_Pos", - "location": { - "column": "9", - "line": "1236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_PRIVDEFENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78177@macro@MPU_CTRL_PRIVDEFENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_PRIVDEFENA_Msk", - "location": { - "column": "9", - "line": "1237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_PRIVDEFENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78304@macro@MPU_CTRL_HFNMIENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_HFNMIENA_Pos", - "location": { - "column": "9", - "line": "1239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_HFNMIENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78431@macro@MPU_CTRL_HFNMIENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_HFNMIENA_Msk", - "location": { - "column": "9", - "line": "1240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_HFNMIENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78556@macro@MPU_CTRL_ENABLE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_ENABLE_Pos", - "location": { - "column": "9", - "line": "1242", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_ENABLE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78681@macro@MPU_CTRL_ENABLE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_CTRL_ENABLE_Msk", - "location": { - "column": "9", - "line": "1243", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_CTRL_ENABLE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78850@macro@MPU_RNR_REGION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RNR_REGION_Pos", - "location": { - "column": "9", - "line": "1246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RNR_REGION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@78974@macro@MPU_RNR_REGION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RNR_REGION_Msk", - "location": { - "column": "9", - "line": "1247", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RNR_REGION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79148@macro@MPU_RBAR_ADDR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_ADDR_Pos", - "location": { - "column": "9", - "line": "1250", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_ADDR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79271@macro@MPU_RBAR_ADDR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_ADDR_Msk", - "location": { - "column": "9", - "line": "1251", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_ADDR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79392@macro@MPU_RBAR_VALID_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_VALID_Pos", - "location": { - "column": "9", - "line": "1253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_VALID_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79516@macro@MPU_RBAR_VALID_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_VALID_Msk", - "location": { - "column": "9", - "line": "1254", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_VALID_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79638@macro@MPU_RBAR_REGION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_REGION_Pos", - "location": { - "column": "9", - "line": "1256", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_REGION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79763@macro@MPU_RBAR_REGION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RBAR_REGION_Msk", - "location": { - "column": "9", - "line": "1257", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RBAR_REGION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@79944@macro@MPU_RASR_ATTRS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_ATTRS_Pos", - "location": { - "column": "9", - "line": "1260", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_ATTRS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80089@macro@MPU_RASR_ATTRS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_ATTRS_Msk", - "location": { - "column": "9", - "line": "1261", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_ATTRS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80232@macro@MPU_RASR_XN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_XN_Pos", - "location": { - "column": "9", - "line": "1263", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_XN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80359@macro@MPU_RASR_XN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_XN_Msk", - "location": { - "column": "9", - "line": "1264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_XN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80484@macro@MPU_RASR_AP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_AP_Pos", - "location": { - "column": "9", - "line": "1266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_AP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80611@macro@MPU_RASR_AP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_AP_Msk", - "location": { - "column": "9", - "line": "1267", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_AP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80736@macro@MPU_RASR_TEX_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_TEX_Pos", - "location": { - "column": "9", - "line": "1269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_TEX_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80864@macro@MPU_RASR_TEX_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_TEX_Msk", - "location": { - "column": "9", - "line": "1270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_TEX_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@80990@macro@MPU_RASR_S_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_S_Pos", - "location": { - "column": "9", - "line": "1272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_S_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81116@macro@MPU_RASR_S_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_S_Msk", - "location": { - "column": "9", - "line": "1273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_S_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81240@macro@MPU_RASR_C_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_C_Pos", - "location": { - "column": "9", - "line": "1275", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_C_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81366@macro@MPU_RASR_C_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_C_Msk", - "location": { - "column": "9", - "line": "1276", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_C_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81490@macro@MPU_RASR_B_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_B_Pos", - "location": { - "column": "9", - "line": "1278", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_B_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81616@macro@MPU_RASR_B_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_B_Msk", - "location": { - "column": "9", - "line": "1279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_B_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81740@macro@MPU_RASR_SRD_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_SRD_Pos", - "location": { - "column": "9", - "line": "1281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_SRD_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@81877@macro@MPU_RASR_SRD_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_SRD_Msk", - "location": { - "column": "9", - "line": "1282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_SRD_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@82012@macro@MPU_RASR_SIZE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_SIZE_Pos", - "location": { - "column": "9", - "line": "1284", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_SIZE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@82148@macro@MPU_RASR_SIZE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_SIZE_Msk", - "location": { - "column": "9", - "line": "1285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_SIZE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@82282@macro@MPU_RASR_ENABLE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_ENABLE_Pos", - "location": { - "column": "9", - "line": "1287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_ENABLE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@82418@macro@MPU_RASR_ENABLE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_RASR_ENABLE_Msk", - "location": { - "column": "9", - "line": "1288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MPU_RASR_ENABLE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FPU_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@FPU_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "1306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@FPCCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FPCCR", - "location": { - "column": "18", - "line": "1307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPCCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@FPCAR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FPCAR", - "location": { - "column": "18", - "line": "1308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPCAR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@FPDSCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FPDSCR", - "location": { - "column": "18", - "line": "1309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPDSCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@MVFR0", - "What": "FieldDecl", - "defdec": "Def", - "display": "MVFR0", - "location": { - "column": "18", - "line": "1310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MVFR0", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@MVFR1", - "What": "FieldDecl", - "defdec": "Def", - "display": "MVFR1", - "location": { - "column": "18", - "line": "1311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MVFR1", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - }, - { - "ID": "c:@SA@FPU_Type@FI@MVFR2", - "What": "FieldDecl", - "defdec": "Def", - "display": "MVFR2", - "location": { - "column": "18", - "line": "1312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "MVFR2", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1304_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FPU_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct FPU_Type", - "location": { - "column": "3", - "line": "1313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@83679@macro@FPU_FPCCR_ASPEN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_ASPEN_Pos", - "location": { - "column": "9", - "line": "1316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_ASPEN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@83804@macro@FPU_FPCCR_ASPEN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_ASPEN_Msk", - "location": { - "column": "9", - "line": "1317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_ASPEN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@83927@macro@FPU_FPCCR_LSPEN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_LSPEN_Pos", - "location": { - "column": "9", - "line": "1319", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_LSPEN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84048@macro@FPU_FPCCR_LSPEN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_LSPEN_Msk", - "location": { - "column": "9", - "line": "1320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_LSPEN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84171@macro@FPU_FPCCR_MONRDY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_MONRDY_Pos", - "location": { - "column": "9", - "line": "1322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_MONRDY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84293@macro@FPU_FPCCR_MONRDY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_MONRDY_Msk", - "location": { - "column": "9", - "line": "1323", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_MONRDY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84417@macro@FPU_FPCCR_BFRDY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_BFRDY_Pos", - "location": { - "column": "9", - "line": "1325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_BFRDY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84538@macro@FPU_FPCCR_BFRDY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_BFRDY_Msk", - "location": { - "column": "9", - "line": "1326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_BFRDY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84661@macro@FPU_FPCCR_MMRDY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_MMRDY_Pos", - "location": { - "column": "9", - "line": "1328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_MMRDY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84782@macro@FPU_FPCCR_MMRDY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_MMRDY_Msk", - "location": { - "column": "9", - "line": "1329", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_MMRDY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@84905@macro@FPU_FPCCR_HFRDY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_HFRDY_Pos", - "location": { - "column": "9", - "line": "1331", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_HFRDY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85026@macro@FPU_FPCCR_HFRDY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_HFRDY_Msk", - "location": { - "column": "9", - "line": "1332", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_HFRDY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85149@macro@FPU_FPCCR_THREAD_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_THREAD_Pos", - "location": { - "column": "9", - "line": "1334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_THREAD_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85283@macro@FPU_FPCCR_THREAD_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_THREAD_Msk", - "location": { - "column": "9", - "line": "1335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_THREAD_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85422@macro@FPU_FPCCR_USER_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_USER_Pos", - "location": { - "column": "9", - "line": "1337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_USER_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85557@macro@FPU_FPCCR_USER_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_USER_Msk", - "location": { - "column": "9", - "line": "1338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_USER_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85690@macro@FPU_FPCCR_LSPACT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_LSPACT_Pos", - "location": { - "column": "9", - "line": "1340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_LSPACT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@85840@macro@FPU_FPCCR_LSPACT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCCR_LSPACT_Msk", - "location": { - "column": "9", - "line": "1341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCCR_LSPACT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86047@macro@FPU_FPCAR_ADDRESS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCAR_ADDRESS_Pos", - "location": { - "column": "9", - "line": "1344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCAR_ADDRESS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86174@macro@FPU_FPCAR_ADDRESS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPCAR_ADDRESS_Msk", - "location": { - "column": "9", - "line": "1345", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPCAR_ADDRESS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86365@macro@FPU_FPDSCR_AHP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_AHP_Pos", - "location": { - "column": "9", - "line": "1348", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_AHP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86489@macro@FPU_FPDSCR_AHP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_AHP_Msk", - "location": { - "column": "9", - "line": "1349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_AHP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86611@macro@FPU_FPDSCR_DN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_DN_Pos", - "location": { - "column": "9", - "line": "1351", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_DN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86734@macro@FPU_FPDSCR_DN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_DN_Msk", - "location": { - "column": "9", - "line": "1352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_DN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86855@macro@FPU_FPDSCR_FZ_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_FZ_Pos", - "location": { - "column": "9", - "line": "1354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_FZ_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@86978@macro@FPU_FPDSCR_FZ_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_FZ_Msk", - "location": { - "column": "9", - "line": "1355", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_FZ_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87099@macro@FPU_FPDSCR_RMode_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_RMode_Pos", - "location": { - "column": "9", - "line": "1357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_RMode_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87225@macro@FPU_FPDSCR_RMode_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_FPDSCR_RMode_Msk", - "location": { - "column": "9", - "line": "1358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_FPDSCR_RMode_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87400@macro@FPU_MVFR0_FP_rounding_modes_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_FP_rounding_modes_Pos", - "location": { - "column": "9", - "line": "1361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_FP_rounding_modes_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87538@macro@FPU_MVFR0_FP_rounding_modes_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_FP_rounding_modes_Msk", - "location": { - "column": "9", - "line": "1362", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_FP_rounding_modes_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87674@macro@FPU_MVFR0_Short_vectors_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Short_vectors_Pos", - "location": { - "column": "9", - "line": "1364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Short_vectors_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87808@macro@FPU_MVFR0_Short_vectors_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Short_vectors_Msk", - "location": { - "column": "9", - "line": "1365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Short_vectors_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@87940@macro@FPU_MVFR0_Square_root_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Square_root_Pos", - "location": { - "column": "9", - "line": "1367", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Square_root_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88072@macro@FPU_MVFR0_Square_root_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Square_root_Msk", - "location": { - "column": "9", - "line": "1368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Square_root_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88202@macro@FPU_MVFR0_Divide_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Divide_Pos", - "location": { - "column": "9", - "line": "1370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Divide_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88329@macro@FPU_MVFR0_Divide_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Divide_Msk", - "location": { - "column": "9", - "line": "1371", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Divide_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88454@macro@FPU_MVFR0_FP_excep_trapping_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_FP_excep_trapping_Pos", - "location": { - "column": "9", - "line": "1373", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_FP_excep_trapping_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88596@macro@FPU_MVFR0_FP_excep_trapping_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_FP_excep_trapping_Msk", - "location": { - "column": "9", - "line": "1374", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_FP_excep_trapping_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88736@macro@FPU_MVFR0_Double_precision_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Double_precision_Pos", - "location": { - "column": "9", - "line": "1376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Double_precision_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@88873@macro@FPU_MVFR0_Double_precision_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Double_precision_Msk", - "location": { - "column": "9", - "line": "1377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Double_precision_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89008@macro@FPU_MVFR0_Single_precision_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Single_precision_Pos", - "location": { - "column": "9", - "line": "1379", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Single_precision_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89145@macro@FPU_MVFR0_Single_precision_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_Single_precision_Msk", - "location": { - "column": "9", - "line": "1380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_Single_precision_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89280@macro@FPU_MVFR0_A_SIMD_registers_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_A_SIMD_registers_Pos", - "location": { - "column": "9", - "line": "1382", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_A_SIMD_registers_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89417@macro@FPU_MVFR0_A_SIMD_registers_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR0_A_SIMD_registers_Msk", - "location": { - "column": "9", - "line": "1383", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR0_A_SIMD_registers_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89603@macro@FPU_MVFR1_FP_fused_MAC_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FP_fused_MAC_Pos", - "location": { - "column": "9", - "line": "1386", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FP_fused_MAC_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89736@macro@FPU_MVFR1_FP_fused_MAC_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FP_fused_MAC_Msk", - "location": { - "column": "9", - "line": "1387", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FP_fused_MAC_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89867@macro@FPU_MVFR1_FP_HPFP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FP_HPFP_Pos", - "location": { - "column": "9", - "line": "1389", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FP_HPFP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@89995@macro@FPU_MVFR1_FP_HPFP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FP_HPFP_Msk", - "location": { - "column": "9", - "line": "1390", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FP_HPFP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90121@macro@FPU_MVFR1_D_NaN_mode_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_D_NaN_mode_Pos", - "location": { - "column": "9", - "line": "1392", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_D_NaN_mode_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90252@macro@FPU_MVFR1_D_NaN_mode_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_D_NaN_mode_Msk", - "location": { - "column": "9", - "line": "1393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_D_NaN_mode_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90381@macro@FPU_MVFR1_FtZ_mode_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FtZ_mode_Pos", - "location": { - "column": "9", - "line": "1395", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FtZ_mode_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90510@macro@FPU_MVFR1_FtZ_mode_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR1_FtZ_mode_Msk", - "location": { - "column": "9", - "line": "1396", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR1_FtZ_mode_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90690@macro@FPU_MVFR2_VFP_Misc_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR2_VFP_Misc_Pos", - "location": { - "column": "9", - "line": "1400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR2_VFP_Misc_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@90819@macro@FPU_MVFR2_VFP_Misc_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "FPU_MVFR2_VFP_Misc_Msk", - "location": { - "column": "9", - "line": "1401", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "FPU_MVFR2_VFP_Misc_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@CoreDebug_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1416", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "members": [ - { - "ID": "c:@SA@CoreDebug_Type@FI@DHCSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DHCSR", - "location": { - "column": "18", - "line": "1418", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DHCSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1416_9" - }, - { - "ID": "c:@SA@CoreDebug_Type@FI@DCRSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DCRSR", - "location": { - "column": "18", - "line": "1419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DCRSR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1416_9" - }, - { - "ID": "c:@SA@CoreDebug_Type@FI@DCRDR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DCRDR", - "location": { - "column": "18", - "line": "1420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DCRDR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1416_9" - }, - { - "ID": "c:@SA@CoreDebug_Type@FI@DEMCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEMCR", - "location": { - "column": "18", - "line": "1421", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DEMCR", - "origin": "user_include", - "scope": "_anonymous_core_cm4_h_1416_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@CoreDebug_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct CoreDebug_Type", - "location": { - "column": "3", - "line": "1422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@91787@macro@CoreDebug_DHCSR_DBGKEY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_DBGKEY_Pos", - "location": { - "column": "9", - "line": "1425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_DBGKEY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@91919@macro@CoreDebug_DHCSR_DBGKEY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_DBGKEY_Msk", - "location": { - "column": "9", - "line": "1426", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_DBGKEY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92049@macro@CoreDebug_DHCSR_S_RESET_ST_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_RESET_ST_Pos", - "location": { - "column": "9", - "line": "1428", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_RESET_ST_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92185@macro@CoreDebug_DHCSR_S_RESET_ST_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_RESET_ST_Msk", - "location": { - "column": "9", - "line": "1429", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_RESET_ST_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92319@macro@CoreDebug_DHCSR_S_RETIRE_ST_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_RETIRE_ST_Pos", - "location": { - "column": "9", - "line": "1431", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_RETIRE_ST_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92456@macro@CoreDebug_DHCSR_S_RETIRE_ST_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_RETIRE_ST_Msk", - "location": { - "column": "9", - "line": "1432", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_RETIRE_ST_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92591@macro@CoreDebug_DHCSR_S_LOCKUP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_LOCKUP_Pos", - "location": { - "column": "9", - "line": "1434", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_LOCKUP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92725@macro@CoreDebug_DHCSR_S_LOCKUP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_LOCKUP_Msk", - "location": { - "column": "9", - "line": "1435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_LOCKUP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92857@macro@CoreDebug_DHCSR_S_SLEEP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_SLEEP_Pos", - "location": { - "column": "9", - "line": "1437", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_SLEEP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@92990@macro@CoreDebug_DHCSR_S_SLEEP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_SLEEP_Msk", - "location": { - "column": "9", - "line": "1438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_SLEEP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93121@macro@CoreDebug_DHCSR_S_HALT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_HALT_Pos", - "location": { - "column": "9", - "line": "1440", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_HALT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93253@macro@CoreDebug_DHCSR_S_HALT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_HALT_Msk", - "location": { - "column": "9", - "line": "1441", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_HALT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93383@macro@CoreDebug_DHCSR_S_REGRDY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_REGRDY_Pos", - "location": { - "column": "9", - "line": "1443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_REGRDY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93517@macro@CoreDebug_DHCSR_S_REGRDY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_S_REGRDY_Msk", - "location": { - "column": "9", - "line": "1444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_S_REGRDY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93649@macro@CoreDebug_DHCSR_C_SNAPSTALL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_SNAPSTALL_Pos", - "location": { - "column": "9", - "line": "1446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_SNAPSTALL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93786@macro@CoreDebug_DHCSR_C_SNAPSTALL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_SNAPSTALL_Msk", - "location": { - "column": "9", - "line": "1447", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_SNAPSTALL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@93921@macro@CoreDebug_DHCSR_C_MASKINTS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_MASKINTS_Pos", - "location": { - "column": "9", - "line": "1449", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_MASKINTS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94057@macro@CoreDebug_DHCSR_C_MASKINTS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_MASKINTS_Msk", - "location": { - "column": "9", - "line": "1450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_MASKINTS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94191@macro@CoreDebug_DHCSR_C_STEP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_STEP_Pos", - "location": { - "column": "9", - "line": "1452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_STEP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94323@macro@CoreDebug_DHCSR_C_STEP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_STEP_Msk", - "location": { - "column": "9", - "line": "1453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_STEP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94453@macro@CoreDebug_DHCSR_C_HALT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_HALT_Pos", - "location": { - "column": "9", - "line": "1455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_HALT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94585@macro@CoreDebug_DHCSR_C_HALT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_HALT_Msk", - "location": { - "column": "9", - "line": "1456", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_HALT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94715@macro@CoreDebug_DHCSR_C_DEBUGEN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_DEBUGEN_Pos", - "location": { - "column": "9", - "line": "1458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_DEBUGEN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@94850@macro@CoreDebug_DHCSR_C_DEBUGEN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DHCSR_C_DEBUGEN_Msk", - "location": { - "column": "9", - "line": "1459", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DHCSR_C_DEBUGEN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95040@macro@CoreDebug_DCRSR_REGWnR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DCRSR_REGWnR_Pos", - "location": { - "column": "9", - "line": "1462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DCRSR_REGWnR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95172@macro@CoreDebug_DCRSR_REGWnR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DCRSR_REGWnR_Msk", - "location": { - "column": "9", - "line": "1463", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DCRSR_REGWnR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95302@macro@CoreDebug_DCRSR_REGSEL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DCRSR_REGSEL_Pos", - "location": { - "column": "9", - "line": "1465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DCRSR_REGSEL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95434@macro@CoreDebug_DCRSR_REGSEL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DCRSR_REGSEL_Msk", - "location": { - "column": "9", - "line": "1466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DCRSR_REGSEL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95628@macro@CoreDebug_DEMCR_TRCENA_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_TRCENA_Pos", - "location": { - "column": "9", - "line": "1469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_TRCENA_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95760@macro@CoreDebug_DEMCR_TRCENA_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_TRCENA_Msk", - "location": { - "column": "9", - "line": "1470", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_TRCENA_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@95890@macro@CoreDebug_DEMCR_MON_REQ_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_REQ_Pos", - "location": { - "column": "9", - "line": "1472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_REQ_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96023@macro@CoreDebug_DEMCR_MON_REQ_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_REQ_Msk", - "location": { - "column": "9", - "line": "1473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_REQ_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96154@macro@CoreDebug_DEMCR_MON_STEP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_STEP_Pos", - "location": { - "column": "9", - "line": "1475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_STEP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96288@macro@CoreDebug_DEMCR_MON_STEP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_STEP_Msk", - "location": { - "column": "9", - "line": "1476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_STEP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96420@macro@CoreDebug_DEMCR_MON_PEND_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_PEND_Pos", - "location": { - "column": "9", - "line": "1478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_PEND_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96554@macro@CoreDebug_DEMCR_MON_PEND_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_PEND_Msk", - "location": { - "column": "9", - "line": "1479", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_PEND_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96686@macro@CoreDebug_DEMCR_MON_EN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_EN_Pos", - "location": { - "column": "9", - "line": "1481", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_EN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96818@macro@CoreDebug_DEMCR_MON_EN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_MON_EN_Msk", - "location": { - "column": "9", - "line": "1482", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_MON_EN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@96948@macro@CoreDebug_DEMCR_VC_HARDERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_HARDERR_Pos", - "location": { - "column": "9", - "line": "1484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_HARDERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97084@macro@CoreDebug_DEMCR_VC_HARDERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_HARDERR_Msk", - "location": { - "column": "9", - "line": "1485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_HARDERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97218@macro@CoreDebug_DEMCR_VC_INTERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_INTERR_Pos", - "location": { - "column": "9", - "line": "1487", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_INTERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97353@macro@CoreDebug_DEMCR_VC_INTERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_INTERR_Msk", - "location": { - "column": "9", - "line": "1488", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_INTERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97486@macro@CoreDebug_DEMCR_VC_BUSERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_BUSERR_Pos", - "location": { - "column": "9", - "line": "1490", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_BUSERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97621@macro@CoreDebug_DEMCR_VC_BUSERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_BUSERR_Msk", - "location": { - "column": "9", - "line": "1491", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_BUSERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97754@macro@CoreDebug_DEMCR_VC_STATERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_STATERR_Pos", - "location": { - "column": "9", - "line": "1493", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_STATERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@97890@macro@CoreDebug_DEMCR_VC_STATERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_STATERR_Msk", - "location": { - "column": "9", - "line": "1494", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_STATERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98024@macro@CoreDebug_DEMCR_VC_CHKERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_CHKERR_Pos", - "location": { - "column": "9", - "line": "1496", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_CHKERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98159@macro@CoreDebug_DEMCR_VC_CHKERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_CHKERR_Msk", - "location": { - "column": "9", - "line": "1497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_CHKERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98292@macro@CoreDebug_DEMCR_VC_NOCPERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_NOCPERR_Pos", - "location": { - "column": "9", - "line": "1499", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_NOCPERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98428@macro@CoreDebug_DEMCR_VC_NOCPERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_NOCPERR_Msk", - "location": { - "column": "9", - "line": "1500", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_NOCPERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98562@macro@CoreDebug_DEMCR_VC_MMERR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_MMERR_Pos", - "location": { - "column": "9", - "line": "1502", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_MMERR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98696@macro@CoreDebug_DEMCR_VC_MMERR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_MMERR_Msk", - "location": { - "column": "9", - "line": "1503", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_MMERR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98828@macro@CoreDebug_DEMCR_VC_CORERESET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_CORERESET_Pos", - "location": { - "column": "9", - "line": "1505", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_CORERESET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@98966@macro@CoreDebug_DEMCR_VC_CORERESET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_DEMCR_VC_CORERESET_Msk", - "location": { - "column": "9", - "line": "1506", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_DEMCR_VC_CORERESET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@99627@macro@_VAL2FLD", - "What": "MacroDef", - "defdec": "Def", - "display": "_VAL2FLD", - "location": { - "column": "9", - "line": "1524", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_VAL2FLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100005@macro@_FLD2VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "_FLD2VAL", - "location": { - "column": "9", - "line": "1532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "_FLD2VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100358@macro@SCS_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCS_BASE", - "location": { - "column": "9", - "line": "1545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCS_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100471@macro@ITM_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM_BASE", - "location": { - "column": "9", - "line": "1546", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100567@macro@DWT_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT_BASE", - "location": { - "column": "9", - "line": "1547", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100663@macro@TPI_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI_BASE", - "location": { - "column": "9", - "line": "1548", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100759@macro@CoreDebug_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug_BASE", - "location": { - "column": "9", - "line": "1549", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100862@macro@SysTick_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_BASE", - "location": { - "column": "9", - "line": "1550", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@100962@macro@NVIC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_BASE", - "location": { - "column": "9", - "line": "1551", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101059@macro@SCB_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_BASE", - "location": { - "column": "9", - "line": "1552", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101174@macro@SCnSCB", - "What": "MacroDef", - "defdec": "Def", - "display": "SCnSCB", - "location": { - "column": "9", - "line": "1554", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCnSCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101288@macro@SCB", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB", - "location": { - "column": "9", - "line": "1555", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101392@macro@SysTick", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick", - "location": { - "column": "9", - "line": "1556", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101500@macro@NVIC", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC", - "location": { - "column": "9", - "line": "1557", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101605@macro@ITM", - "What": "MacroDef", - "defdec": "Def", - "display": "ITM", - "location": { - "column": "9", - "line": "1558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101709@macro@DWT", - "What": "MacroDef", - "defdec": "Def", - "display": "DWT", - "location": { - "column": "9", - "line": "1559", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "DWT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101813@macro@TPI", - "What": "MacroDef", - "defdec": "Def", - "display": "TPI", - "location": { - "column": "9", - "line": "1560", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "TPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@101917@macro@CoreDebug", - "What": "MacroDef", - "defdec": "Def", - "display": "CoreDebug", - "location": { - "column": "9", - "line": "1561", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "CoreDebug", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@102086@macro@MPU_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_BASE", + "display": "INT8_MAX", "location": { "column": "11", - "line": "1564", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "94", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "MPU_BASE", - "origin": "user_include", + "name": "INT8_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@102188@macro@MPU", + "ID": "c:stdint.h@3006@macro@INT8_MIN", "What": "MacroDef", "defdec": "Def", - "display": "MPU", + "display": "INT8_MIN", "location": { "column": "11", - "line": "1565", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "95", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "MPU", - "origin": "user_include", + "name": "INT8_MIN", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@102298@macro@FPU_BASE", + "ID": "c:stdint.h@3050@macro@UINT8_MAX", "What": "MacroDef", "defdec": "Def", - "display": "FPU_BASE", + "display": "UINT8_MAX", + "location": { + "column": "11", + "line": "96", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT8_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3129@macro@INT16_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT16_MAX", + "location": { + "column": "11", + "line": "100", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT16_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3174@macro@INT16_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT16_MIN", + "location": { + "column": "11", + "line": "101", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT16_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3219@macro@UINT16_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT16_MAX", + "location": { + "column": "11", + "line": "102", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT16_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3299@macro@INT32_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT32_MAX", + "location": { + "column": "11", + "line": "106", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT32_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3344@macro@INT32_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT32_MIN", + "location": { + "column": "11", + "line": "107", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT32_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3389@macro@UINT32_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT32_MAX", + "location": { + "column": "11", + "line": "108", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT32_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3469@macro@INT64_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT64_MAX", + "location": { + "column": "11", + "line": "112", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT64_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3514@macro@INT64_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT64_MIN", + "location": { + "column": "11", + "line": "113", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT64_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3559@macro@UINT64_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT64_MAX", + "location": { + "column": "11", + "line": "114", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT64_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@3612@macro@INT_LEAST8_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_LEAST8_MAX", "location": { "column": "9", - "line": "1568", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "117", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "FPU_BASE", - "origin": "user_include", + "name": "INT_LEAST8_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@102397@macro@FPU", + "ID": "c:stdint.h@3662@macro@INT_LEAST8_MIN", "What": "MacroDef", "defdec": "Def", - "display": "FPU", + "display": "INT_LEAST8_MIN", "location": { "column": "9", - "line": "1569", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "118", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "FPU", - "origin": "user_include", + "name": "INT_LEAST8_MIN", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@103444@macro@NVIC_SetPriorityGrouping", + "ID": "c:stdint.h@3712@macro@UINT_LEAST8_MAX", "What": "MacroDef", "defdec": "Def", - "display": "NVIC_SetPriorityGrouping", - "location": { - "column": "11", - "line": "1603", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_SetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103510@macro@NVIC_GetPriorityGrouping", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetPriorityGrouping", - "location": { - "column": "11", - "line": "1604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103576@macro@NVIC_EnableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_EnableIRQ", - "location": { - "column": "11", - "line": "1605", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103632@macro@NVIC_GetEnableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetEnableIRQ", - "location": { - "column": "11", - "line": "1606", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetEnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103691@macro@NVIC_DisableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_DisableIRQ", - "location": { - "column": "11", - "line": "1607", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103748@macro@NVIC_GetPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetPendingIRQ", - "location": { - "column": "11", - "line": "1608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103808@macro@NVIC_SetPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetPendingIRQ", - "location": { - "column": "11", - "line": "1609", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103868@macro@NVIC_ClearPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_ClearPendingIRQ", - "location": { - "column": "11", - "line": "1610", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103930@macro@NVIC_GetActive", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetActive", - "location": { - "column": "11", - "line": "1611", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@103986@macro@NVIC_SetPriority", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetPriority", - "location": { - "column": "11", - "line": "1612", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@104044@macro@NVIC_GetPriority", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetPriority", - "location": { - "column": "11", - "line": "1613", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@104102@macro@NVIC_SystemReset", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SystemReset", - "location": { - "column": "11", - "line": "1614", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@104401@macro@NVIC_SetVector", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetVector", - "location": { - "column": "11", - "line": "1623", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_SetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@104457@macro@NVIC_GetVector", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetVector", - "location": { - "column": "11", - "line": "1624", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_GetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@104551@macro@NVIC_USER_IRQ_OFFSET", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_USER_IRQ_OFFSET", + "display": "UINT_LEAST8_MAX", "location": { "column": "9", - "line": "1627", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "119", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "NVIC_USER_IRQ_OFFSET", - "origin": "user_include", + "name": "UINT_LEAST8_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@104672@macro@EXC_RETURN_HANDLER", + "ID": "c:stdint.h@3764@macro@INT_LEAST16_MAX", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_HANDLER", + "display": "INT_LEAST16_MAX", "location": { "column": "9", - "line": "1631", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "121", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_HANDLER", - "origin": "user_include", + "name": "INT_LEAST16_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@104809@macro@EXC_RETURN_THREAD_MSP", + "ID": "c:stdint.h@3815@macro@INT_LEAST16_MIN", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_THREAD_MSP", + "display": "INT_LEAST16_MIN", "location": { "column": "9", - "line": "1632", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "122", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_THREAD_MSP", - "origin": "user_include", + "name": "INT_LEAST16_MIN", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@104946@macro@EXC_RETURN_THREAD_PSP", + "ID": "c:stdint.h@3866@macro@UINT_LEAST16_MAX", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_THREAD_PSP", + "display": "UINT_LEAST16_MAX", "location": { "column": "9", - "line": "1633", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "123", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_THREAD_PSP", - "origin": "user_include", + "name": "UINT_LEAST16_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@105083@macro@EXC_RETURN_HANDLER_FPU", + "ID": "c:stdint.h@3919@macro@INT_LEAST32_MAX", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_HANDLER_FPU", + "display": "INT_LEAST32_MAX", "location": { "column": "9", - "line": "1634", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "125", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_HANDLER_FPU", - "origin": "user_include", + "name": "INT_LEAST32_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@105220@macro@EXC_RETURN_THREAD_MSP_FPU", + "ID": "c:stdint.h@3970@macro@INT_LEAST32_MIN", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_THREAD_MSP_FPU", + "display": "INT_LEAST32_MIN", "location": { "column": "9", - "line": "1635", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "126", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_THREAD_MSP_FPU", - "origin": "user_include", + "name": "INT_LEAST32_MIN", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@105357@macro@EXC_RETURN_THREAD_PSP_FPU", + "ID": "c:stdint.h@4021@macro@UINT_LEAST32_MAX", "What": "MacroDef", "defdec": "Def", - "display": "EXC_RETURN_THREAD_PSP_FPU", + "display": "UINT_LEAST32_MAX", "location": { "column": "9", - "line": "1636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "127", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "EXC_RETURN_THREAD_PSP_FPU", - "origin": "user_include", + "name": "UINT_LEAST32_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@F@__NVIC_SetPriorityGrouping", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetPriorityGrouping(uint32_t)", - "location": { - "column": "22", - "line": "1648", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_SetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@106061@F@__NVIC_SetPriorityGrouping@reg_value", - "What": "Variable", - "defdec": "Def", - "display": "reg_value", - "location": { - "column": "12", - "line": "1650", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "reg_value", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@106084@F@__NVIC_SetPriorityGrouping@PriorityGroupTmp", - "What": "Variable", - "defdec": "Def", - "display": "PriorityGroupTmp", - "location": { - "column": "12", - "line": "1651", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PriorityGroupTmp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetPriorityGrouping", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetPriorityGrouping(void)", - "location": { - "column": "26", - "line": "1667", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_EnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_EnableIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "1679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetEnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetEnableIRQ(IRQn_Type)", - "location": { - "column": "26", - "line": "1698", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetEnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_DisableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_DisableIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "1717", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetPendingIRQ(IRQn_Type)", - "location": { - "column": "26", - "line": "1736", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_SetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetPendingIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "1755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_ClearPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_ClearPendingIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "1770", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetActive", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetActive(IRQn_Type)", - "location": { - "column": "26", - "line": "1787", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_SetPriority", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetPriority(IRQn_Type, uint32_t)", - "location": { - "column": "22", - "line": "1809", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetPriority", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetPriority(IRQn_Type)", - "location": { - "column": "26", - "line": "1831", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@NVIC_EncodePriority", - "What": "Function", - "defdec": "Def", - "display": "uint32_t NVIC_EncodePriority(uint32_t, uint32_t, uint32_t)", - "location": { - "column": "26", - "line": "1856", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_EncodePriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@113192@F@NVIC_EncodePriority@PriorityGroupTmp", - "What": "Variable", - "defdec": "Def", - "display": "PriorityGroupTmp", - "location": { - "column": "12", - "line": "1858", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PriorityGroupTmp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@113302@F@NVIC_EncodePriority@PreemptPriorityBits", - "What": "Variable", - "defdec": "Def", - "display": "PreemptPriorityBits", - "location": { - "column": "12", - "line": "1859", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PreemptPriorityBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@113335@F@NVIC_EncodePriority@SubPriorityBits", - "What": "Variable", - "defdec": "Def", - "display": "SubPriorityBits", - "location": { - "column": "12", - "line": "1860", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SubPriorityBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@NVIC_DecodePriority", - "What": "Function", - "defdec": "Def", - "display": "void NVIC_DecodePriority(uint32_t, uint32_t, uint32_t *const, uint32_t *const)", - "location": { - "column": "22", - "line": "1883", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "NVIC_DecodePriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@114735@F@NVIC_DecodePriority@PriorityGroupTmp", - "What": "Variable", - "defdec": "Def", - "display": "PriorityGroupTmp", - "location": { - "column": "12", - "line": "1885", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PriorityGroupTmp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@114845@F@NVIC_DecodePriority@PreemptPriorityBits", - "What": "Variable", - "defdec": "Def", - "display": "PreemptPriorityBits", - "location": { - "column": "12", - "line": "1886", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "PreemptPriorityBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@114878@F@NVIC_DecodePriority@SubPriorityBits", - "What": "Variable", - "defdec": "Def", - "display": "SubPriorityBits", - "location": { - "column": "12", - "line": "1887", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SubPriorityBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_SetVector", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetVector(IRQn_Type, uint32_t)", - "location": { - "column": "22", - "line": "1906", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_SetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@115962@F@__NVIC_SetVector@vectors", - "What": "Variable", - "defdec": "Def", - "display": "vectors", - "location": { - "column": "12", - "line": "1908", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "vectors", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_GetVector", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetVector(IRQn_Type)", - "location": { - "column": "26", - "line": "1922", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_GetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@116618@F@__NVIC_GetVector@vectors", - "What": "Variable", - "defdec": "Def", - "display": "vectors", - "location": { - "column": "12", - "line": "1924", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "vectors", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@__NVIC_SystemReset", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SystemReset(void)", - "location": { - "column": "34", - "line": "1933", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "__NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@SCB_GetFPUType", - "What": "Function", - "defdec": "Def", - "display": "uint32_t SCB_GetFPUType(void)", - "location": { - "column": "26", - "line": "1976", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SCB_GetFPUType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@118327@F@SCB_GetFPUType@mvfr0", - "What": "Variable", - "defdec": "Def", - "display": "mvfr0", - "location": { - "column": "12", - "line": "1978", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "mvfr0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@SysTick_Config", - "What": "Function", - "defdec": "Def", - "display": "uint32_t SysTick_Config(uint32_t)", - "location": { - "column": "26", - "line": "2017", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "SysTick_Config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@ITM_RxBuffer", - "What": "Variable", - "defdec": "Dec", - "display": "ITM_RxBuffer", - "location": { - "column": "25", - "line": "2047", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_RxBuffer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@120949@macro@ITM_RXBUFFER_EMPTY", + "ID": "c:stdint.h@4107@macro@INT_LEAST64_MAX", "What": "MacroDef", "defdec": "Def", - "display": "ITM_RXBUFFER_EMPTY", - "location": { - "column": "25", - "line": "2048", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_RXBUFFER_EMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@ITM_SendChar", - "What": "Function", - "defdec": "Def", - "display": "uint32_t ITM_SendChar(uint32_t)", - "location": { - "column": "26", - "line": "2059", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_SendChar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@F@ITM_ReceiveChar", - "What": "Function", - "defdec": "Def", - "display": "int32_t ITM_ReceiveChar(void)", - "location": { - "column": "25", - "line": "2080", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" - }, - "name": "ITM_ReceiveChar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm4.h@122078@F@ITM_ReceiveChar@ch", - "What": "Variable", - "defdec": "Def", - "display": "ch", + "display": "INT_LEAST64_MAX", "location": { "column": "11", - "line": "2082", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "line": "130", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "ch", - "origin": "user_include", + "name": "INT_LEAST64_MAX", + "origin": "system_include", "scope": null }, { - "ID": "c:core_cm4.h@F@ITM_CheckChar", - "What": "Function", + "ID": "c:stdint.h@4158@macro@INT_LEAST64_MIN", + "What": "MacroDef", "defdec": "Def", - "display": "int32_t ITM_CheckChar(void)", + "display": "INT_LEAST64_MIN", "location": { - "column": "25", - "line": "2100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + "column": "11", + "line": "131", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" }, - "name": "ITM_CheckChar", - "origin": "user_include", + "name": "INT_LEAST64_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4251@macro@UINT_LEAST64_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT_LEAST64_MAX", + "location": { + "column": "11", + "line": "135", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT_LEAST64_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4310@macro@INT_FAST8_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST8_MAX", + "location": { + "column": "9", + "line": "138", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST8_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4359@macro@INT_FAST8_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST8_MIN", + "location": { + "column": "9", + "line": "139", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST8_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4408@macro@UINT_FAST8_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT_FAST8_MAX", + "location": { + "column": "9", + "line": "140", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT_FAST8_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4459@macro@INT_FAST16_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST16_MAX", + "location": { + "column": "9", + "line": "142", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST16_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4509@macro@INT_FAST16_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST16_MIN", + "location": { + "column": "9", + "line": "143", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST16_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4559@macro@UINT_FAST16_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT_FAST16_MAX", + "location": { + "column": "9", + "line": "144", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT_FAST16_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4611@macro@INT_FAST32_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST32_MAX", + "location": { + "column": "9", + "line": "146", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST32_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4661@macro@INT_FAST32_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST32_MIN", + "location": { + "column": "9", + "line": "147", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST32_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4711@macro@UINT_FAST32_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT_FAST32_MAX", + "location": { + "column": "9", + "line": "148", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT_FAST32_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4795@macro@INT_FAST64_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST64_MAX", + "location": { + "column": "11", + "line": "151", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST64_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4845@macro@INT_FAST64_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INT_FAST64_MIN", + "location": { + "column": "11", + "line": "152", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT_FAST64_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4936@macro@UINT_FAST64_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT_FAST64_MAX", + "location": { + "column": "11", + "line": "156", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT_FAST64_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@4994@macro@INTMAX_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INTMAX_MAX", + "location": { + "column": "9", + "line": "159", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INTMAX_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5040@macro@INTMAX_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INTMAX_MIN", + "location": { + "column": "9", + "line": "160", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INTMAX_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5086@macro@UINTMAX_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINTMAX_MAX", + "location": { + "column": "9", + "line": "161", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINTMAX_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5134@macro@SIZE_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "SIZE_MAX", + "location": { + "column": "9", + "line": "163", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "SIZE_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5179@macro@PTRDIFF_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "PTRDIFF_MAX", + "location": { + "column": "9", + "line": "165", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "PTRDIFF_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5225@macro@PTRDIFF_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "PTRDIFF_MIN", + "location": { + "column": "9", + "line": "166", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "PTRDIFF_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5273@macro@INTPTR_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "INTPTR_MAX", + "location": { + "column": "9", + "line": "168", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INTPTR_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5319@macro@INTPTR_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "INTPTR_MIN", + "location": { + "column": "9", + "line": "169", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INTPTR_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5365@macro@UINTPTR_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "UINTPTR_MAX", + "location": { + "column": "9", + "line": "170", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINTPTR_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5413@macro@WCHAR_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "WCHAR_MIN", + "location": { + "column": "9", + "line": "172", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "WCHAR_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5448@macro@WCHAR_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "WCHAR_MAX", + "location": { + "column": "9", + "line": "173", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "WCHAR_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5485@macro@WINT_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "WINT_MIN", + "location": { + "column": "9", + "line": "175", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "WINT_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5520@macro@WINT_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "WINT_MAX", + "location": { + "column": "9", + "line": "176", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "WINT_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5557@macro@SIG_ATOMIC_MIN", + "What": "MacroDef", + "defdec": "Def", + "display": "SIG_ATOMIC_MIN", + "location": { + "column": "9", + "line": "178", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "SIG_ATOMIC_MIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5605@macro@SIG_ATOMIC_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "SIG_ATOMIC_MAX", + "location": { + "column": "9", + "line": "179", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "SIG_ATOMIC_MAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5729@macro@INT8_C", + "What": "MacroDef", + "defdec": "Def", + "display": "INT8_C", + "location": { + "column": "11", + "line": "184", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT8_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5779@macro@UINT8_C", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT8_C", + "location": { + "column": "11", + "line": "185", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT8_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5865@macro@INT16_C", + "What": "MacroDef", + "defdec": "Def", + "display": "INT16_C", + "location": { + "column": "11", + "line": "189", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT16_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@5916@macro@UINT16_C", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT16_C", + "location": { + "column": "11", + "line": "190", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT16_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6003@macro@INT32_C", + "What": "MacroDef", + "defdec": "Def", + "display": "INT32_C", + "location": { + "column": "11", + "line": "194", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT32_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6054@macro@UINT32_C", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT32_C", + "location": { + "column": "11", + "line": "195", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT32_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6147@macro@INT64_C", + "What": "MacroDef", + "defdec": "Def", + "display": "INT64_C", + "location": { + "column": "11", + "line": "199", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INT64_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6240@macro@UINT64_C", + "What": "MacroDef", + "defdec": "Def", + "display": "UINT64_C", + "location": { + "column": "11", + "line": "203", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINT64_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6300@macro@INTMAX_C", + "What": "MacroDef", + "defdec": "Def", + "display": "INTMAX_C", + "location": { + "column": "9", + "line": "206", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "INTMAX_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stdint.h@6352@macro@UINTMAX_C", + "What": "MacroDef", + "defdec": "Def", + "display": "UINTMAX_C", + "location": { + "column": "9", + "line": "207", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" + }, + "name": "UINTMAX_C", + "origin": "system_include", "scope": null }, { @@ -205162,11685 +194778,14277 @@ "scope": null }, { - "ID": "c:stm32l4xx_hal_tim.h@801@macro@STM32L4xx_HAL_TIM_H", + "ID": "c:stm32l4xx_hal_rcc.h@796@macro@STM32L4xx_HAL_RCC_H", "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_TIM_H", + "display": "STM32L4xx_HAL_RCC_H", "location": { "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "STM32L4xx_HAL_TIM_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@Prescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "Prescaler", - "location": { - "column": "12", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Prescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@CounterMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "CounterMode", - "location": { - "column": "12", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "CounterMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@Period", - "What": "FieldDecl", - "defdec": "Def", - "display": "Period", - "location": { - "column": "12", - "line": "54", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Period", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@ClockDivision", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockDivision", - "location": { - "column": "12", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClockDivision", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@RepetitionCounter", - "What": "FieldDecl", - "defdec": "Def", - "display": "RepetitionCounter", - "location": { - "column": "12", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "RepetitionCounter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - }, - { - "ID": "c:@SA@TIM_Base_InitTypeDef@FI@AutoReloadPreload", - "What": "FieldDecl", - "defdec": "Def", - "display": "AutoReloadPreload", - "location": { - "column": "12", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "AutoReloadPreload", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_Base_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_Base_InitTypeDef", - "location": { - "column": "3", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_Base_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCMode", - "location": { - "column": "12", - "line": "81", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@Pulse", - "What": "FieldDecl", - "defdec": "Def", - "display": "Pulse", - "location": { - "column": "12", - "line": "84", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Pulse", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCPolarity", - "location": { - "column": "12", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCNPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCNPolarity", - "location": { - "column": "12", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCNPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCFastMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCFastMode", - "location": { - "column": "12", - "line": "94", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCFastMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCIdleState", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCIdleState", - "location": { - "column": "12", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCIdleState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - }, - { - "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCNIdleState", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCNIdleState", - "location": { - "column": "12", - "line": "103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCNIdleState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_OC_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_OC_InitTypeDef", - "location": { - "column": "3", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OC_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "111", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCMode", - "location": { - "column": "12", - "line": "113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@Pulse", - "What": "FieldDecl", - "defdec": "Def", - "display": "Pulse", - "location": { - "column": "12", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Pulse", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCPolarity", - "location": { - "column": "12", - "line": "119", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCNPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCNPolarity", - "location": { - "column": "12", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCNPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCIdleState", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCIdleState", - "location": { - "column": "12", - "line": "126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCIdleState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCNIdleState", - "What": "FieldDecl", - "defdec": "Def", - "display": "OCNIdleState", - "location": { - "column": "12", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OCNIdleState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICPolarity", - "location": { - "column": "12", - "line": "134", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICSelection", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICSelection", - "location": { - "column": "12", - "line": "137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICSelection", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - }, - { - "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICFilter", - "location": { - "column": "12", - "line": "140", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_OnePulse_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_OnePulse_InitTypeDef", - "location": { - "column": "3", - "line": "142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OnePulse_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_IC_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "147", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICPolarity", - "location": { - "column": "13", - "line": "149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" - }, - { - "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICSelection", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICSelection", - "location": { - "column": "12", - "line": "152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICSelection", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" - }, - { - "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICPrescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICPrescaler", - "location": { - "column": "12", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICPrescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" - }, - { - "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICFilter", - "location": { - "column": "12", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ICFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_IC_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_IC_InitTypeDef", - "location": { - "column": "3", - "line": "160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IC_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@EncoderMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "EncoderMode", - "location": { - "column": "12", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "EncoderMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Polarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC1Polarity", - "location": { - "column": "12", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC1Polarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Selection", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC1Selection", - "location": { - "column": "12", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC1Selection", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Prescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC1Prescaler", - "location": { - "column": "12", - "line": "176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC1Prescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Filter", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC1Filter", - "location": { - "column": "12", - "line": "179", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC1Filter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Polarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC2Polarity", - "location": { - "column": "12", - "line": "182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC2Polarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Selection", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC2Selection", - "location": { - "column": "12", - "line": "185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC2Selection", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Prescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC2Prescaler", - "location": { - "column": "12", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC2Prescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - }, - { - "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Filter", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC2Filter", - "location": { - "column": "12", - "line": "191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IC2Filter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_Encoder_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_Encoder_InitTypeDef", - "location": { - "column": "3", - "line": "193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_Encoder_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_ClockConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockSource", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockSource", - "location": { - "column": "12", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClockSource", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" - }, - { - "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockPolarity", - "location": { - "column": "12", - "line": "202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClockPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" - }, - { - "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockPrescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockPrescaler", - "location": { - "column": "12", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClockPrescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" - }, - { - "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockFilter", - "location": { - "column": "12", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClockFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_ClockConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_ClockConfigTypeDef", - "location": { - "column": "3", - "line": "208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ClockConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputState", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClearInputState", - "location": { - "column": "12", - "line": "215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClearInputState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" - }, - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputSource", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClearInputSource", - "location": { - "column": "12", - "line": "217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClearInputSource", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" - }, - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClearInputPolarity", - "location": { - "column": "12", - "line": "219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClearInputPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" - }, - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputPrescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClearInputPrescaler", - "location": { - "column": "12", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClearInputPrescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" - }, - { - "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClearInputFilter", - "location": { - "column": "12", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ClearInputFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_ClearInputConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_ClearInputConfigTypeDef", - "location": { - "column": "3", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ClearInputConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_MasterConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterOutputTrigger", - "What": "FieldDecl", - "defdec": "Def", - "display": "MasterOutputTrigger", - "location": { - "column": "13", - "line": "235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "MasterOutputTrigger", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" - }, - { - "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterOutputTrigger2", - "What": "FieldDecl", - "defdec": "Def", - "display": "MasterOutputTrigger2", - "location": { - "column": "13", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "MasterOutputTrigger2", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" - }, - { - "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterSlaveMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "MasterSlaveMode", - "location": { - "column": "13", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "MasterSlaveMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_MasterConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_MasterConfigTypeDef", - "location": { - "column": "3", - "line": "246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_MasterConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "251", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@SlaveMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "SlaveMode", - "location": { - "column": "13", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "SlaveMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" - }, - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@InputTrigger", - "What": "FieldDecl", - "defdec": "Def", - "display": "InputTrigger", - "location": { - "column": "13", - "line": "255", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "InputTrigger", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" - }, - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "TriggerPolarity", - "location": { - "column": "13", - "line": "257", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TriggerPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" - }, - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerPrescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "TriggerPrescaler", - "location": { - "column": "13", - "line": "259", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TriggerPrescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" - }, - { - "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "TriggerFilter", - "location": { - "column": "13", - "line": "261", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TriggerFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_SlaveConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_SlaveConfigTypeDef", - "location": { - "column": "3", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SlaveConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@OffStateRunMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OffStateRunMode", - "location": { - "column": "12", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OffStateRunMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@OffStateIDLEMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OffStateIDLEMode", - "location": { - "column": "12", - "line": "275", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "OffStateIDLEMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@LockLevel", - "What": "FieldDecl", - "defdec": "Def", - "display": "LockLevel", - "location": { - "column": "12", - "line": "277", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "LockLevel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@DeadTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "DeadTime", - "location": { - "column": "12", - "line": "279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "DeadTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakState", - "What": "FieldDecl", - "defdec": "Def", - "display": "BreakState", - "location": { - "column": "12", - "line": "281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "BreakState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "BreakPolarity", - "location": { - "column": "12", - "line": "283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "BreakPolarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakFilter", - "What": "FieldDecl", - "defdec": "Def", - "display": "BreakFilter", - "location": { - "column": "12", - "line": "285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "BreakFilter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2State", - "What": "FieldDecl", - "defdec": "Def", - "display": "Break2State", - "location": { - "column": "12", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Break2State", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2Polarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "Break2Polarity", - "location": { - "column": "12", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Break2Polarity", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2Filter", - "What": "FieldDecl", - "defdec": "Def", - "display": "Break2Filter", - "location": { - "column": "12", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Break2Filter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - }, - { - "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@AutomaticOutput", - "What": "FieldDecl", - "defdec": "Def", - "display": "AutomaticOutput", - "location": { - "column": "12", - "line": "293", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "AutomaticOutput", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_BreakDeadTimeConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_BreakDeadTimeConfigTypeDef", - "location": { - "column": "3", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BreakDeadTimeConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_StateTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_STATE_RESET", - "location": { - "column": "3", - "line": "302", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_READY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_STATE_READY", - "location": { - "column": "3", - "line": "303", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_STATE_BUSY", - "location": { - "column": "3", - "line": "304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_STATE_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_TIMEOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_STATE_TIMEOUT", - "location": { - "column": "3", - "line": "305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_STATE_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_ERROR", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_STATE_ERROR", - "location": { - "column": "3", - "line": "306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_STATE_ERROR", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_TIM_StateTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_TIM_StateTypeDef", - "location": { - "column": "3", - "line": "307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_StateTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_CHANNEL_STATE_RESET", - "location": { - "column": "3", - "line": "314", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_CHANNEL_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_READY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_CHANNEL_STATE_READY", - "location": { - "column": "3", - "line": "315", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_CHANNEL_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_CHANNEL_STATE_BUSY", - "location": { - "column": "3", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_CHANNEL_STATE_BUSY", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_TIM_ChannelStateTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_TIM_ChannelStateTypeDef", - "location": { - "column": "3", - "line": "317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ChannelStateTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_BURST_STATE_RESET", - "location": { - "column": "3", - "line": "324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_DMA_BURST_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_READY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_BURST_STATE_READY", - "location": { - "column": "3", - "line": "325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_DMA_BURST_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_BURST_STATE_BUSY", - "location": { - "column": "3", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_DMA_BURST_STATE_BUSY", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_TIM_DMABurstStateTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_TIM_DMABurstStateTypeDef", - "location": { - "column": "3", - "line": "327", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurstStateTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_1", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_1", - "location": { - "column": "3", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_2", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_2", - "location": { - "column": "3", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_3", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_3", - "location": { - "column": "3", - "line": "336", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_4", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_4", - "location": { - "column": "3", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_5", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_5", - "location": { - "column": "3", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_6", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_6", - "location": { - "column": "3", - "line": "339", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_CLEARED", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIM_ACTIVE_CHANNEL_CLEARED", - "location": { - "column": "3", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ACTIVE_CHANNEL_CLEARED", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "332", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_TIM_ActiveChannel", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_TIM_ActiveChannel", - "location": { - "column": "3", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ActiveChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@TIM_HandleTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "members": [ - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@Instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "Instance", - "location": { - "column": "39", - "line": "352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Instance", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@Init", - "What": "FieldDecl", - "defdec": "Def", - "display": "Init", - "location": { - "column": "38", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Init", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@Channel", - "What": "FieldDecl", - "defdec": "Def", - "display": "Channel", - "location": { - "column": "38", - "line": "354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Channel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@hdma", - "What": "FieldDecl", - "defdec": "Def", - "display": "hdma", - "location": { - "column": "39", - "line": "355", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "hdma", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@Lock", - "What": "FieldDecl", - "defdec": "Def", - "display": "Lock", - "location": { - "column": "38", - "line": "357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "Lock", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@State", - "What": "FieldDecl", - "defdec": "Def", - "display": "State", - "location": { - "column": "38", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "State", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@ChannelState", - "What": "FieldDecl", - "defdec": "Def", - "display": "ChannelState", - "location": { - "column": "38", - "line": "359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ChannelState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@ChannelNState", - "What": "FieldDecl", - "defdec": "Def", - "display": "ChannelNState", - "location": { - "column": "38", - "line": "360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "ChannelNState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - }, - { - "ID": "c:@SA@TIM_HandleTypeDef@FI@DMABurstState", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMABurstState", - "location": { - "column": "38", - "line": "361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "DMABurstState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@TIM_HandleTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct TIM_HandleTypeDef", - "location": { - "column": "3", - "line": "393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_HandleTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@26985@macro@TIM_CLEARINPUTSOURCE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTSOURCE_NONE", - "location": { - "column": "9", - "line": "452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTSOURCE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27074@macro@TIM_CLEARINPUTSOURCE_ETR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTSOURCE_ETR", - "location": { - "column": "9", - "line": "453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTSOURCE_ETR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27178@macro@TIM_CLEARINPUTSOURCE_OCREFCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTSOURCE_OCREFCLR", - "location": { - "column": "9", - "line": "454", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTSOURCE_OCREFCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27377@macro@TIM_DMABASE_CR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CR1", - "location": { - "column": "9", - "line": "462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27433@macro@TIM_DMABASE_CR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CR2", - "location": { - "column": "9", - "line": "463", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27489@macro@TIM_DMABASE_SMCR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_SMCR", - "location": { - "column": "9", - "line": "464", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_SMCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27545@macro@TIM_DMABASE_DIER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_DIER", - "location": { - "column": "9", - "line": "465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_DIER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27601@macro@TIM_DMABASE_SR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_SR", - "location": { - "column": "9", - "line": "466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_SR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27657@macro@TIM_DMABASE_EGR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_EGR", - "location": { - "column": "9", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_EGR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27713@macro@TIM_DMABASE_CCMR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCMR1", - "location": { - "column": "9", - "line": "468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCMR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27769@macro@TIM_DMABASE_CCMR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCMR2", - "location": { - "column": "9", - "line": "469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCMR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27825@macro@TIM_DMABASE_CCER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCER", - "location": { - "column": "9", - "line": "470", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27881@macro@TIM_DMABASE_CNT", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CNT", - "location": { - "column": "9", - "line": "471", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27937@macro@TIM_DMABASE_PSC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_PSC", - "location": { - "column": "9", - "line": "472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_PSC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@27993@macro@TIM_DMABASE_ARR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_ARR", - "location": { - "column": "9", - "line": "473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_ARR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28049@macro@TIM_DMABASE_RCR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_RCR", - "location": { - "column": "9", - "line": "474", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_RCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28105@macro@TIM_DMABASE_CCR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR1", - "location": { - "column": "9", - "line": "475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28161@macro@TIM_DMABASE_CCR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR2", - "location": { - "column": "9", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28217@macro@TIM_DMABASE_CCR3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR3", - "location": { - "column": "9", - "line": "477", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28273@macro@TIM_DMABASE_CCR4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR4", - "location": { - "column": "9", - "line": "478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28329@macro@TIM_DMABASE_BDTR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_BDTR", - "location": { - "column": "9", - "line": "479", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_BDTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28385@macro@TIM_DMABASE_DCR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_DCR", - "location": { - "column": "9", - "line": "480", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_DCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28441@macro@TIM_DMABASE_DMAR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_DMAR", - "location": { - "column": "9", - "line": "481", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_DMAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28497@macro@TIM_DMABASE_OR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_OR1", - "location": { - "column": "9", - "line": "482", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_OR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28553@macro@TIM_DMABASE_CCMR3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCMR3", - "location": { - "column": "9", - "line": "483", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCMR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28609@macro@TIM_DMABASE_CCR5", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR5", - "location": { - "column": "9", - "line": "484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28665@macro@TIM_DMABASE_CCR6", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_CCR6", - "location": { - "column": "9", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_CCR6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28721@macro@TIM_DMABASE_OR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_OR2", - "location": { - "column": "9", - "line": "486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_OR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28777@macro@TIM_DMABASE_OR3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABASE_OR3", - "location": { - "column": "9", - "line": "487", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABASE_OR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@28917@macro@TIM_EVENTSOURCE_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_UPDATE", - "location": { - "column": "9", - "line": "495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29051@macro@TIM_EVENTSOURCE_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_CC1", - "location": { - "column": "9", - "line": "496", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29169@macro@TIM_EVENTSOURCE_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_CC2", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29287@macro@TIM_EVENTSOURCE_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_CC3", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29405@macro@TIM_EVENTSOURCE_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_CC4", - "location": { - "column": "9", - "line": "499", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29523@macro@TIM_EVENTSOURCE_COM", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_COM", - "location": { - "column": "9", - "line": "500", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_COM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29624@macro@TIM_EVENTSOURCE_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_TRIGGER", - "location": { - "column": "9", - "line": "501", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29721@macro@TIM_EVENTSOURCE_BREAK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_BREAK", - "location": { - "column": "9", - "line": "502", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_BREAK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@29816@macro@TIM_EVENTSOURCE_BREAK2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_EVENTSOURCE_BREAK2", - "location": { - "column": "9", - "line": "503", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_EVENTSOURCE_BREAK2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30018@macro@TIM_INPUTCHANNELPOLARITY_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_INPUTCHANNELPOLARITY_RISING", - "location": { - "column": "10", - "line": "511", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_INPUTCHANNELPOLARITY_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30131@macro@TIM_INPUTCHANNELPOLARITY_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_INPUTCHANNELPOLARITY_FALLING", - "location": { - "column": "10", - "line": "512", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_INPUTCHANNELPOLARITY_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30244@macro@TIM_INPUTCHANNELPOLARITY_BOTHEDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_INPUTCHANNELPOLARITY_BOTHEDGE", - "location": { - "column": "10", - "line": "513", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_INPUTCHANNELPOLARITY_BOTHEDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30440@macro@TIM_ETRPOLARITY_INVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPOLARITY_INVERTED", - "location": { - "column": "9", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPOLARITY_INVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30553@macro@TIM_ETRPOLARITY_NONINVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPOLARITY_NONINVERTED", - "location": { - "column": "9", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPOLARITY_NONINVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30752@macro@TIM_ETRPRESCALER_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPRESCALER_DIV1", - "location": { - "column": "9", - "line": "530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPRESCALER_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30862@macro@TIM_ETRPRESCALER_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPRESCALER_DIV2", - "location": { - "column": "9", - "line": "531", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPRESCALER_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@30984@macro@TIM_ETRPRESCALER_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPRESCALER_DIV4", - "location": { - "column": "9", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPRESCALER_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31106@macro@TIM_ETRPRESCALER_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ETRPRESCALER_DIV8", - "location": { - "column": "9", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETRPRESCALER_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31312@macro@TIM_COUNTERMODE_UP", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COUNTERMODE_UP", - "location": { - "column": "9", - "line": "541", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COUNTERMODE_UP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31430@macro@TIM_COUNTERMODE_DOWN", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COUNTERMODE_DOWN", - "location": { - "column": "9", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COUNTERMODE_DOWN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31548@macro@TIM_COUNTERMODE_CENTERALIGNED1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COUNTERMODE_CENTERALIGNED1", - "location": { - "column": "9", - "line": "543", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COUNTERMODE_CENTERALIGNED1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31666@macro@TIM_COUNTERMODE_CENTERALIGNED2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COUNTERMODE_CENTERALIGNED2", - "location": { - "column": "9", - "line": "544", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COUNTERMODE_CENTERALIGNED2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@31784@macro@TIM_COUNTERMODE_CENTERALIGNED3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COUNTERMODE_CENTERALIGNED3", - "location": { - "column": "9", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COUNTERMODE_CENTERALIGNED3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32016@macro@TIM_UIFREMAP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_UIFREMAP_DISABLE", - "location": { - "column": "9", - "line": "553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_UIFREMAP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32142@macro@TIM_UIFREMAP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_UIFREMAP_ENABLE", - "location": { - "column": "9", - "line": "554", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_UIFREMAP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32354@macro@TIM_CLOCKDIVISION_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKDIVISION_DIV1", - "location": { - "column": "9", - "line": "562", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKDIVISION_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32474@macro@TIM_CLOCKDIVISION_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKDIVISION_DIV2", - "location": { - "column": "9", - "line": "563", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKDIVISION_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32594@macro@TIM_CLOCKDIVISION_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKDIVISION_DIV4", - "location": { - "column": "9", - "line": "564", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKDIVISION_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32814@macro@TIM_OUTPUTSTATE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OUTPUTSTATE_DISABLE", - "location": { - "column": "9", - "line": "572", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OUTPUTSTATE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@32937@macro@TIM_OUTPUTSTATE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OUTPUTSTATE_ENABLE", - "location": { - "column": "9", - "line": "573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OUTPUTSTATE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33155@macro@TIM_AUTORELOAD_PRELOAD_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_AUTORELOAD_PRELOAD_DISABLE", - "location": { - "column": "9", - "line": "581", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_AUTORELOAD_PRELOAD_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33278@macro@TIM_AUTORELOAD_PRELOAD_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_AUTORELOAD_PRELOAD_ENABLE", - "location": { - "column": "9", - "line": "582", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_AUTORELOAD_PRELOAD_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33493@macro@TIM_OCFAST_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCFAST_DISABLE", - "location": { - "column": "9", - "line": "591", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCFAST_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33610@macro@TIM_OCFAST_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCFAST_ENABLE", - "location": { - "column": "9", - "line": "592", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCFAST_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33843@macro@TIM_OUTPUTNSTATE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OUTPUTNSTATE_DISABLE", - "location": { - "column": "9", - "line": "600", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OUTPUTNSTATE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@33950@macro@TIM_OUTPUTNSTATE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OUTPUTNSTATE_ENABLE", - "location": { - "column": "9", - "line": "601", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OUTPUTNSTATE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@34163@macro@TIM_OCPOLARITY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCPOLARITY_HIGH", - "location": { - "column": "9", - "line": "609", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCPOLARITY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@34285@macro@TIM_OCPOLARITY_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCPOLARITY_LOW", - "location": { - "column": "9", - "line": "610", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCPOLARITY_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@34529@macro@TIM_OCNPOLARITY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCNPOLARITY_HIGH", - "location": { - "column": "9", - "line": "618", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCNPOLARITY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@34664@macro@TIM_OCNPOLARITY_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCNPOLARITY_LOW", - "location": { - "column": "9", - "line": "619", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCNPOLARITY_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@34909@macro@TIM_OCIDLESTATE_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCIDLESTATE_SET", - "location": { - "column": "9", - "line": "627", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCIDLESTATE_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35034@macro@TIM_OCIDLESTATE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCIDLESTATE_RESET", - "location": { - "column": "9", - "line": "628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCIDLESTATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35285@macro@TIM_OCNIDLESTATE_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCNIDLESTATE_SET", - "location": { - "column": "9", - "line": "636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCNIDLESTATE_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35425@macro@TIM_OCNIDLESTATE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCNIDLESTATE_RESET", - "location": { - "column": "9", - "line": "637", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCNIDLESTATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35670@macro@TIM_ICPOLARITY_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPOLARITY_RISING", - "location": { - "column": "10", - "line": "645", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPOLARITY_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35824@macro@TIM_ICPOLARITY_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPOLARITY_FALLING", - "location": { - "column": "10", - "line": "646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPOLARITY_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@35978@macro@TIM_ICPOLARITY_BOTHEDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPOLARITY_BOTHEDGE", - "location": { - "column": "10", - "line": "647", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPOLARITY_BOTHEDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@36236@macro@TIM_ENCODERINPUTPOLARITY_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ENCODERINPUTPOLARITY_RISING", - "location": { - "column": "10", - "line": "655", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ENCODERINPUTPOLARITY_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@36366@macro@TIM_ENCODERINPUTPOLARITY_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ENCODERINPUTPOLARITY_FALLING", - "location": { - "column": "10", - "line": "656", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ENCODERINPUTPOLARITY_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@36601@macro@TIM_ICSELECTION_DIRECTTI", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICSELECTION_DIRECTTI", - "location": { - "column": "9", - "line": "664", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICSELECTION_DIRECTTI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@36779@macro@TIM_ICSELECTION_INDIRECTTI", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICSELECTION_INDIRECTTI", - "location": { - "column": "9", - "line": "665", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICSELECTION_INDIRECTTI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@36957@macro@TIM_ICSELECTION_TRC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICSELECTION_TRC", - "location": { - "column": "9", - "line": "666", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICSELECTION_TRC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@37210@macro@TIM_ICPSC_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPSC_DIV1", - "location": { - "column": "9", - "line": "674", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPSC_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@37368@macro@TIM_ICPSC_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPSC_DIV2", - "location": { - "column": "9", - "line": "675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPSC_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@37526@macro@TIM_ICPSC_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPSC_DIV4", - "location": { - "column": "9", - "line": "676", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPSC_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@37684@macro@TIM_ICPSC_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ICPSC_DIV8", - "location": { - "column": "9", - "line": "677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ICPSC_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@37930@macro@TIM_OPMODE_SINGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OPMODE_SINGLE", - "location": { - "column": "9", - "line": "685", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OPMODE_SINGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@38067@macro@TIM_OPMODE_REPETITIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OPMODE_REPETITIVE", - "location": { - "column": "9", - "line": "686", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OPMODE_REPETITIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@38288@macro@TIM_ENCODERMODE_TI1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ENCODERMODE_TI1", - "location": { - "column": "9", - "line": "694", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ENCODERMODE_TI1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@38507@macro@TIM_ENCODERMODE_TI2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ENCODERMODE_TI2", - "location": { - "column": "9", - "line": "695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ENCODERMODE_TI2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@38726@macro@TIM_ENCODERMODE_TI12", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_ENCODERMODE_TI12", - "location": { - "column": "9", - "line": "696", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ENCODERMODE_TI12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39078@macro@TIM_IT_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_UPDATE", - "location": { - "column": "9", - "line": "704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39195@macro@TIM_IT_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_CC1", - "location": { - "column": "9", - "line": "705", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39312@macro@TIM_IT_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_CC2", - "location": { - "column": "9", - "line": "706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39429@macro@TIM_IT_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_CC3", - "location": { - "column": "9", - "line": "707", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39546@macro@TIM_IT_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_CC4", - "location": { - "column": "9", - "line": "708", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39663@macro@TIM_IT_COM", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_COM", - "location": { - "column": "9", - "line": "709", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_COM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39780@macro@TIM_IT_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_TRIGGER", - "location": { - "column": "9", - "line": "710", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@39897@macro@TIM_IT_BREAK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_IT_BREAK", - "location": { - "column": "9", - "line": "711", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_IT_BREAK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@40111@macro@TIM_COMMUTATION_TRGI", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COMMUTATION_TRGI", - "location": { - "column": "9", - "line": "719", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COMMUTATION_TRGI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@40337@macro@TIM_COMMUTATION_SOFTWARE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_COMMUTATION_SOFTWARE", - "location": { - "column": "9", - "line": "720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_COMMUTATION_SOFTWARE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@40598@macro@TIM_DMA_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_UPDATE", - "location": { - "column": "9", - "line": "728", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@40732@macro@TIM_DMA_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_CC1", - "location": { - "column": "9", - "line": "729", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@40883@macro@TIM_DMA_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_CC2", - "location": { - "column": "9", - "line": "730", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41040@macro@TIM_DMA_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_CC3", - "location": { - "column": "9", - "line": "731", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41197@macro@TIM_DMA_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_CC4", - "location": { - "column": "9", - "line": "732", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41354@macro@TIM_DMA_COM", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_COM", - "location": { - "column": "9", - "line": "733", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_COM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41493@macro@TIM_DMA_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_TRIGGER", - "location": { - "column": "9", - "line": "734", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41723@macro@TIM_CCDMAREQUEST_CC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCDMAREQUEST_CC", - "location": { - "column": "9", - "line": "742", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCDMAREQUEST_CC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@41876@macro@TIM_CCDMAREQUEST_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCDMAREQUEST_UPDATE", - "location": { - "column": "9", - "line": "743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCDMAREQUEST_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42102@macro@TIM_FLAG_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_UPDATE", - "location": { - "column": "9", - "line": "751", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42221@macro@TIM_FLAG_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC1", - "location": { - "column": "9", - "line": "752", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42343@macro@TIM_FLAG_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC2", - "location": { - "column": "9", - "line": "753", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42465@macro@TIM_FLAG_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC3", - "location": { - "column": "9", - "line": "754", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42587@macro@TIM_FLAG_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC4", - "location": { - "column": "9", - "line": "755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42709@macro@TIM_FLAG_CC5", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC5", - "location": { - "column": "9", - "line": "756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42831@macro@TIM_FLAG_CC6", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC6", - "location": { - "column": "9", - "line": "757", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@42953@macro@TIM_FLAG_COM", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_COM", - "location": { - "column": "9", - "line": "758", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_COM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43072@macro@TIM_FLAG_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_TRIGGER", - "location": { - "column": "9", - "line": "759", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43191@macro@TIM_FLAG_BREAK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_BREAK", - "location": { - "column": "9", - "line": "760", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_BREAK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43310@macro@TIM_FLAG_BREAK2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_BREAK2", - "location": { - "column": "9", - "line": "761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_BREAK2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43429@macro@TIM_FLAG_SYSTEM_BREAK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_SYSTEM_BREAK", - "location": { - "column": "9", - "line": "762", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_SYSTEM_BREAK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43548@macro@TIM_FLAG_CC1OF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC1OF", - "location": { - "column": "9", - "line": "763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC1OF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43667@macro@TIM_FLAG_CC2OF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC2OF", - "location": { - "column": "9", - "line": "764", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC2OF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43786@macro@TIM_FLAG_CC3OF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC3OF", - "location": { - "column": "9", - "line": "765", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC3OF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@43905@macro@TIM_FLAG_CC4OF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_FLAG_CC4OF", - "location": { - "column": "9", - "line": "766", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_FLAG_CC4OF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44098@macro@TIM_CHANNEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_1", - "location": { - "column": "9", - "line": "774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44229@macro@TIM_CHANNEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_2", - "location": { - "column": "9", - "line": "775", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44360@macro@TIM_CHANNEL_3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_3", - "location": { - "column": "9", - "line": "776", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44491@macro@TIM_CHANNEL_4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_4", - "location": { - "column": "9", - "line": "777", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44622@macro@TIM_CHANNEL_5", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_5", - "location": { - "column": "9", - "line": "778", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44753@macro@TIM_CHANNEL_6", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_6", - "location": { - "column": "9", - "line": "779", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@44884@macro@TIM_CHANNEL_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_ALL", - "location": { - "column": "9", - "line": "780", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45100@macro@TIM_CLOCKSOURCE_INTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_INTERNAL", - "location": { - "column": "9", - "line": "788", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_INTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45220@macro@TIM_CLOCKSOURCE_ETRMODE1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ETRMODE1", - "location": { - "column": "9", - "line": "789", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ETRMODE1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45340@macro@TIM_CLOCKSOURCE_ETRMODE2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ETRMODE2", - "location": { - "column": "9", - "line": "790", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ETRMODE2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45460@macro@TIM_CLOCKSOURCE_TI1ED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_TI1ED", - "location": { - "column": "9", - "line": "791", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_TI1ED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45580@macro@TIM_CLOCKSOURCE_TI1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_TI1", - "location": { - "column": "9", - "line": "792", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_TI1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45700@macro@TIM_CLOCKSOURCE_TI2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_TI2", - "location": { - "column": "9", - "line": "793", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_TI2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45820@macro@TIM_CLOCKSOURCE_ITR0", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ITR0", - "location": { - "column": "9", - "line": "794", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ITR0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@45940@macro@TIM_CLOCKSOURCE_ITR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ITR1", - "location": { - "column": "9", - "line": "795", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ITR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46060@macro@TIM_CLOCKSOURCE_ITR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ITR2", - "location": { - "column": "9", - "line": "796", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ITR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46180@macro@TIM_CLOCKSOURCE_ITR3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKSOURCE_ITR3", - "location": { - "column": "9", - "line": "797", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKSOURCE_ITR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46388@macro@TIM_CLOCKPOLARITY_INVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPOLARITY_INVERTED", - "location": { - "column": "9", - "line": "805", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPOLARITY_INVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46509@macro@TIM_CLOCKPOLARITY_NONINVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPOLARITY_NONINVERTED", - "location": { - "column": "9", - "line": "806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPOLARITY_NONINVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46630@macro@TIM_CLOCKPOLARITY_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPOLARITY_RISING", - "location": { - "column": "9", - "line": "807", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPOLARITY_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46750@macro@TIM_CLOCKPOLARITY_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPOLARITY_FALLING", - "location": { - "column": "9", - "line": "808", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPOLARITY_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@46870@macro@TIM_CLOCKPOLARITY_BOTHEDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPOLARITY_BOTHEDGE", - "location": { - "column": "9", - "line": "809", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPOLARITY_BOTHEDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47080@macro@TIM_CLOCKPRESCALER_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPRESCALER_DIV1", - "location": { - "column": "9", - "line": "817", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPRESCALER_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47242@macro@TIM_CLOCKPRESCALER_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPRESCALER_DIV2", - "location": { - "column": "9", - "line": "818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPRESCALER_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47404@macro@TIM_CLOCKPRESCALER_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPRESCALER_DIV4", - "location": { - "column": "9", - "line": "819", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPRESCALER_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47566@macro@TIM_CLOCKPRESCALER_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLOCKPRESCALER_DIV8", - "location": { - "column": "9", - "line": "820", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLOCKPRESCALER_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47827@macro@TIM_CLEARINPUTPOLARITY_INVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPOLARITY_INVERTED", - "location": { - "column": "9", - "line": "828", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPOLARITY_INVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@47938@macro@TIM_CLEARINPUTPOLARITY_NONINVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPOLARITY_NONINVERTED", - "location": { - "column": "9", - "line": "829", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPOLARITY_NONINVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@48150@macro@TIM_CLEARINPUTPRESCALER_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPRESCALER_DIV1", - "location": { - "column": "9", - "line": "837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPRESCALER_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@48310@macro@TIM_CLEARINPUTPRESCALER_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPRESCALER_DIV2", - "location": { - "column": "9", - "line": "838", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPRESCALER_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@48470@macro@TIM_CLEARINPUTPRESCALER_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPRESCALER_DIV4", - "location": { - "column": "9", - "line": "839", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPRESCALER_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@48630@macro@TIM_CLEARINPUTPRESCALER_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CLEARINPUTPRESCALER_DIV8", - "location": { - "column": "9", - "line": "840", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CLEARINPUTPRESCALER_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@48935@macro@TIM_OSSR_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OSSR_ENABLE", - "location": { - "column": "9", - "line": "848", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OSSR_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@49108@macro@TIM_OSSR_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OSSR_DISABLE", - "location": { - "column": "9", - "line": "849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OSSR_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@49428@macro@TIM_OSSI_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OSSI_ENABLE", - "location": { - "column": "9", - "line": "857", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OSSI_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@49601@macro@TIM_OSSI_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OSSI_DISABLE", - "location": { - "column": "9", - "line": "858", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OSSI_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@49853@macro@TIM_LOCKLEVEL_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_LOCKLEVEL_OFF", - "location": { - "column": "9", - "line": "865", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_LOCKLEVEL_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@49955@macro@TIM_LOCKLEVEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_LOCKLEVEL_1", - "location": { - "column": "9", - "line": "866", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_LOCKLEVEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50057@macro@TIM_LOCKLEVEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_LOCKLEVEL_2", - "location": { - "column": "9", - "line": "867", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_LOCKLEVEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50159@macro@TIM_LOCKLEVEL_3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_LOCKLEVEL_3", - "location": { - "column": "9", - "line": "868", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_LOCKLEVEL_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50365@macro@TIM_BREAK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_ENABLE", - "location": { - "column": "9", - "line": "876", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50482@macro@TIM_BREAK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_DISABLE", - "location": { - "column": "9", - "line": "877", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50693@macro@TIM_BREAKPOLARITY_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAKPOLARITY_LOW", - "location": { - "column": "9", - "line": "885", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAKPOLARITY_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@50813@macro@TIM_BREAKPOLARITY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAKPOLARITY_HIGH", - "location": { - "column": "9", - "line": "886", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAKPOLARITY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51040@macro@TIM_BREAK2_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK2_DISABLE", - "location": { - "column": "9", - "line": "894", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK2_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51159@macro@TIM_BREAK2_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK2_ENABLE", - "location": { - "column": "9", - "line": "895", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK2_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51374@macro@TIM_BREAK2POLARITY_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK2POLARITY_LOW", - "location": { - "column": "9", - "line": "903", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK2POLARITY_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51496@macro@TIM_BREAK2POLARITY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK2POLARITY_HIGH", - "location": { - "column": "9", - "line": "904", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK2POLARITY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51718@macro@TIM_AUTOMATICOUTPUT_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_AUTOMATICOUTPUT_DISABLE", - "location": { - "column": "9", - "line": "912", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_AUTOMATICOUTPUT_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@51839@macro@TIM_AUTOMATICOUTPUT_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_AUTOMATICOUTPUT_ENABLE", - "location": { - "column": "9", - "line": "913", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_AUTOMATICOUTPUT_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52161@macro@TIM_GROUPCH5_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_GROUPCH5_NONE", - "location": { - "column": "9", - "line": "921", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_GROUPCH5_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52302@macro@TIM_GROUPCH5_OC1REFC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_GROUPCH5_OC1REFC", - "location": { - "column": "9", - "line": "922", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_GROUPCH5_OC1REFC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52443@macro@TIM_GROUPCH5_OC2REFC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_GROUPCH5_OC2REFC", - "location": { - "column": "9", - "line": "923", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_GROUPCH5_OC2REFC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52584@macro@TIM_GROUPCH5_OC3REFC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_GROUPCH5_OC3REFC", - "location": { - "column": "9", - "line": "924", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_GROUPCH5_OC3REFC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52827@macro@TIM_TRGO_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_RESET", - "location": { - "column": "9", - "line": "932", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@52981@macro@TIM_TRGO_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_ENABLE", - "location": { - "column": "9", - "line": "933", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53135@macro@TIM_TRGO_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_UPDATE", - "location": { - "column": "9", - "line": "934", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53289@macro@TIM_TRGO_OC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_OC1", - "location": { - "column": "9", - "line": "935", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_OC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53443@macro@TIM_TRGO_OC1REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_OC1REF", - "location": { - "column": "9", - "line": "936", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_OC1REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53597@macro@TIM_TRGO_OC2REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_OC2REF", - "location": { - "column": "9", - "line": "937", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_OC2REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53751@macro@TIM_TRGO_OC3REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_OC3REF", - "location": { - "column": "9", - "line": "938", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_OC3REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@53905@macro@TIM_TRGO_OC4REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO_OC4REF", - "location": { - "column": "9", - "line": "939", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO_OC4REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@54173@macro@TIM_TRGO2_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_RESET", - "location": { - "column": "9", - "line": "947", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@54362@macro@TIM_TRGO2_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_ENABLE", - "location": { - "column": "9", - "line": "948", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@54551@macro@TIM_TRGO2_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_UPDATE", - "location": { - "column": "9", - "line": "949", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@54740@macro@TIM_TRGO2_OC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC1", - "location": { - "column": "9", - "line": "950", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@54929@macro@TIM_TRGO2_OC1REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC1REF", - "location": { - "column": "9", - "line": "951", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC1REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@55118@macro@TIM_TRGO2_OC2REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC2REF", - "location": { - "column": "9", - "line": "952", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC2REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@55307@macro@TIM_TRGO2_OC3REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC3REF", - "location": { - "column": "9", - "line": "953", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC3REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@55496@macro@TIM_TRGO2_OC4REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC4REF", - "location": { - "column": "9", - "line": "954", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC4REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@55685@macro@TIM_TRGO2_OC5REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC5REF", - "location": { - "column": "9", - "line": "955", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC5REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@55874@macro@TIM_TRGO2_OC6REF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC6REF", - "location": { - "column": "9", - "line": "956", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC6REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@56063@macro@TIM_TRGO2_OC4REF_RISINGFALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC4REF_RISINGFALLING", - "location": { - "column": "9", - "line": "957", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC4REF_RISINGFALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@56252@macro@TIM_TRGO2_OC6REF_RISINGFALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC6REF_RISINGFALLING", - "location": { - "column": "9", - "line": "958", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC6REF_RISINGFALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@56441@macro@TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", - "location": { - "column": "9", - "line": "959", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@56630@macro@TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", - "location": { - "column": "9", - "line": "960", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@56819@macro@TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", - "location": { - "column": "9", - "line": "961", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57008@macro@TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", - "location": { - "column": "9", - "line": "962", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57291@macro@TIM_MASTERSLAVEMODE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_MASTERSLAVEMODE_ENABLE", - "location": { - "column": "9", - "line": "970", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_MASTERSLAVEMODE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57390@macro@TIM_MASTERSLAVEMODE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_MASTERSLAVEMODE_DISABLE", - "location": { - "column": "9", - "line": "971", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_MASTERSLAVEMODE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57589@macro@TIM_SLAVEMODE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_DISABLE", - "location": { - "column": "9", - "line": "979", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57724@macro@TIM_SLAVEMODE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_RESET", - "location": { - "column": "9", - "line": "980", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57859@macro@TIM_SLAVEMODE_GATED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_GATED", - "location": { - "column": "9", - "line": "981", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_GATED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@57994@macro@TIM_SLAVEMODE_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_TRIGGER", - "location": { - "column": "9", - "line": "982", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58129@macro@TIM_SLAVEMODE_EXTERNAL1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_EXTERNAL1", - "location": { - "column": "9", - "line": "983", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_EXTERNAL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58264@macro@TIM_SLAVEMODE_COMBINED_RESETTRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SLAVEMODE_COMBINED_RESETTRIGGER", - "location": { - "column": "9", - "line": "984", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SLAVEMODE_COMBINED_RESETTRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58515@macro@TIM_OCMODE_TIMING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_TIMING", - "location": { - "column": "9", - "line": "992", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_TIMING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58664@macro@TIM_OCMODE_ACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_ACTIVE", - "location": { - "column": "9", - "line": "993", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_ACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58813@macro@TIM_OCMODE_INACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_INACTIVE", - "location": { - "column": "9", - "line": "994", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_INACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@58962@macro@TIM_OCMODE_TOGGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_TOGGLE", - "location": { - "column": "9", - "line": "995", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_TOGGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59111@macro@TIM_OCMODE_PWM1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_PWM1", - "location": { - "column": "9", - "line": "996", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_PWM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59260@macro@TIM_OCMODE_PWM2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_PWM2", - "location": { - "column": "9", - "line": "997", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_PWM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59409@macro@TIM_OCMODE_FORCED_ACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_FORCED_ACTIVE", - "location": { - "column": "9", - "line": "998", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_FORCED_ACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59558@macro@TIM_OCMODE_FORCED_INACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_FORCED_INACTIVE", - "location": { - "column": "9", - "line": "999", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_FORCED_INACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59707@macro@TIM_OCMODE_RETRIGERRABLE_OPM1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_RETRIGERRABLE_OPM1", - "location": { - "column": "9", - "line": "1000", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_RETRIGERRABLE_OPM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@59856@macro@TIM_OCMODE_RETRIGERRABLE_OPM2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_RETRIGERRABLE_OPM2", - "location": { - "column": "9", - "line": "1001", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_RETRIGERRABLE_OPM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60005@macro@TIM_OCMODE_COMBINED_PWM1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_COMBINED_PWM1", - "location": { - "column": "9", - "line": "1002", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_COMBINED_PWM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60154@macro@TIM_OCMODE_COMBINED_PWM2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_COMBINED_PWM2", - "location": { - "column": "9", - "line": "1003", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_COMBINED_PWM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60303@macro@TIM_OCMODE_ASSYMETRIC_PWM1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_ASSYMETRIC_PWM1", - "location": { - "column": "9", - "line": "1004", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_ASSYMETRIC_PWM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60452@macro@TIM_OCMODE_ASSYMETRIC_PWM2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_OCMODE_ASSYMETRIC_PWM2", - "location": { - "column": "9", - "line": "1005", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OCMODE_ASSYMETRIC_PWM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60695@macro@TIM_TS_ITR0", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_ITR0", - "location": { - "column": "9", - "line": "1013", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_ITR0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60838@macro@TIM_TS_ITR1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_ITR1", - "location": { - "column": "9", - "line": "1014", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_ITR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@60981@macro@TIM_TS_ITR2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_ITR2", - "location": { - "column": "9", - "line": "1015", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_ITR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61124@macro@TIM_TS_ITR3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_ITR3", - "location": { - "column": "9", - "line": "1016", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_ITR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61267@macro@TIM_TS_TI1F_ED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_TI1F_ED", - "location": { - "column": "9", - "line": "1017", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_TI1F_ED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61410@macro@TIM_TS_TI1FP1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_TI1FP1", - "location": { - "column": "9", - "line": "1018", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_TI1FP1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61553@macro@TIM_TS_TI2FP2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_TI2FP2", - "location": { - "column": "9", - "line": "1019", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_TI2FP2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61696@macro@TIM_TS_ETRF", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_ETRF", - "location": { - "column": "9", - "line": "1020", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_ETRF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@61839@macro@TIM_TS_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TS_NONE", - "location": { - "column": "9", - "line": "1021", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TS_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62074@macro@TIM_TRIGGERPOLARITY_INVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPOLARITY_INVERTED", - "location": { - "column": "9", - "line": "1029", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPOLARITY_INVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62215@macro@TIM_TRIGGERPOLARITY_NONINVERTED", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPOLARITY_NONINVERTED", - "location": { - "column": "9", - "line": "1030", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPOLARITY_NONINVERTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62356@macro@TIM_TRIGGERPOLARITY_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPOLARITY_RISING", - "location": { - "column": "9", - "line": "1031", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPOLARITY_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62497@macro@TIM_TRIGGERPOLARITY_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPOLARITY_FALLING", - "location": { - "column": "9", - "line": "1032", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPOLARITY_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62638@macro@TIM_TRIGGERPOLARITY_BOTHEDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPOLARITY_BOTHEDGE", - "location": { - "column": "9", - "line": "1033", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPOLARITY_BOTHEDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@62873@macro@TIM_TRIGGERPRESCALER_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPRESCALER_DIV1", - "location": { - "column": "9", - "line": "1041", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPRESCALER_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@63037@macro@TIM_TRIGGERPRESCALER_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPRESCALER_DIV2", - "location": { - "column": "9", - "line": "1042", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPRESCALER_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@63201@macro@TIM_TRIGGERPRESCALER_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPRESCALER_DIV4", - "location": { - "column": "9", - "line": "1043", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPRESCALER_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@63365@macro@TIM_TRIGGERPRESCALER_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TRIGGERPRESCALER_DIV8", - "location": { - "column": "9", - "line": "1044", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TRIGGERPRESCALER_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@63621@macro@TIM_TI1SELECTION_CH1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TI1SELECTION_CH1", - "location": { - "column": "9", - "line": "1052", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TI1SELECTION_CH1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@63753@macro@TIM_TI1SELECTION_XORCOMBINATION", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_TI1SELECTION_XORCOMBINATION", - "location": { - "column": "9", - "line": "1053", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TI1SELECTION_XORCOMBINATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64014@macro@TIM_DMABURSTLENGTH_1TRANSFER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_1TRANSFER", - "location": { - "column": "9", - "line": "1061", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_1TRANSFER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64178@macro@TIM_DMABURSTLENGTH_2TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_2TRANSFERS", - "location": { - "column": "9", - "line": "1062", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_2TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64342@macro@TIM_DMABURSTLENGTH_3TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_3TRANSFERS", - "location": { - "column": "9", - "line": "1063", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_3TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64506@macro@TIM_DMABURSTLENGTH_4TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_4TRANSFERS", - "location": { - "column": "9", - "line": "1064", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_4TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64670@macro@TIM_DMABURSTLENGTH_5TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_5TRANSFERS", - "location": { - "column": "9", - "line": "1065", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_5TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64834@macro@TIM_DMABURSTLENGTH_6TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_6TRANSFERS", - "location": { - "column": "9", - "line": "1066", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_6TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@64998@macro@TIM_DMABURSTLENGTH_7TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_7TRANSFERS", - "location": { - "column": "9", - "line": "1067", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_7TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65162@macro@TIM_DMABURSTLENGTH_8TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_8TRANSFERS", - "location": { - "column": "9", - "line": "1068", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_8TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65326@macro@TIM_DMABURSTLENGTH_9TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_9TRANSFERS", - "location": { - "column": "9", - "line": "1069", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_9TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65490@macro@TIM_DMABURSTLENGTH_10TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_10TRANSFERS", - "location": { - "column": "9", - "line": "1070", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_10TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65654@macro@TIM_DMABURSTLENGTH_11TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_11TRANSFERS", - "location": { - "column": "9", - "line": "1071", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_11TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65818@macro@TIM_DMABURSTLENGTH_12TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_12TRANSFERS", - "location": { - "column": "9", - "line": "1072", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_12TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@65982@macro@TIM_DMABURSTLENGTH_13TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_13TRANSFERS", - "location": { - "column": "9", - "line": "1073", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_13TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@66146@macro@TIM_DMABURSTLENGTH_14TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_14TRANSFERS", - "location": { - "column": "9", - "line": "1074", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_14TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@66310@macro@TIM_DMABURSTLENGTH_15TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_15TRANSFERS", - "location": { - "column": "9", - "line": "1075", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_15TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@66474@macro@TIM_DMABURSTLENGTH_16TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_16TRANSFERS", - "location": { - "column": "9", - "line": "1076", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_16TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@66638@macro@TIM_DMABURSTLENGTH_17TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_17TRANSFERS", - "location": { - "column": "9", - "line": "1077", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_17TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@66802@macro@TIM_DMABURSTLENGTH_18TRANSFERS", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMABURSTLENGTH_18TRANSFERS", - "location": { - "column": "9", - "line": "1078", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMABURSTLENGTH_18TRANSFERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67054@macro@TIM_DMA_ID_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_UPDATE", - "location": { - "column": "9", - "line": "1086", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_UPDATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67183@macro@TIM_DMA_ID_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_CC1", - "location": { - "column": "9", - "line": "1087", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67323@macro@TIM_DMA_ID_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_CC2", - "location": { - "column": "9", - "line": "1088", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67463@macro@TIM_DMA_ID_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_CC3", - "location": { - "column": "9", - "line": "1089", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67603@macro@TIM_DMA_ID_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_CC4", - "location": { - "column": "9", - "line": "1090", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67743@macro@TIM_DMA_ID_COMMUTATION", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_COMMUTATION", - "location": { - "column": "9", - "line": "1091", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_COMMUTATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@67877@macro@TIM_DMA_ID_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_DMA_ID_TRIGGER", - "location": { - "column": "9", - "line": "1092", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMA_ID_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68108@macro@TIM_CCx_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCx_ENABLE", - "location": { - "column": "9", - "line": "1100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCx_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68232@macro@TIM_CCx_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCx_DISABLE", - "location": { - "column": "9", - "line": "1101", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCx_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68357@macro@TIM_CCxN_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCxN_ENABLE", - "location": { - "column": "9", - "line": "1102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCxN_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68486@macro@TIM_CCxN_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCxN_DISABLE", - "location": { - "column": "9", - "line": "1103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCxN_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68699@macro@TIM_BREAK_SYSTEM_ECC", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_SYSTEM_ECC", - "location": { - "column": "9", - "line": "1111", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_SYSTEM_ECC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@68848@macro@TIM_BREAK_SYSTEM_PVD", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_SYSTEM_PVD", - "location": { - "column": "9", - "line": "1112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_SYSTEM_PVD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@69054@macro@TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", - "location": { - "column": "9", - "line": "1113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@69212@macro@TIM_BREAK_SYSTEM_LOCKUP", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_BREAK_SYSTEM_LOCKUP", - "location": { - "column": "9", - "line": "1114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_BREAK_SYSTEM_LOCKUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@73072@macro@__HAL_TIM_RESET_HANDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_RESET_HANDLE_STATE", - "location": { - "column": "9", - "line": "1163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_RESET_HANDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@74835@macro@__HAL_TIM_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_ENABLE", - "location": { - "column": "9", - "line": "1184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@75041@macro@__HAL_TIM_MOE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_MOE_ENABLE", - "location": { - "column": "9", - "line": "1191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_MOE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@75249@macro@__HAL_TIM_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_DISABLE", - "location": { - "column": "9", - "line": "1198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@75798@macro@__HAL_TIM_MOE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_MOE_DISABLE", - "location": { - "column": "9", - "line": "1216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_MOE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@76301@macro@__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", - "location": { - "column": "9", - "line": "1233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@77137@macro@__HAL_TIM_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_ENABLE_IT", - "location": { - "column": "9", - "line": "1249", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@77976@macro@__HAL_TIM_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_DISABLE_IT", - "location": { - "column": "9", - "line": "1265", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@78771@macro@__HAL_TIM_ENABLE_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_ENABLE_DMA", - "location": { - "column": "9", - "line": "1280", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_ENABLE_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@79561@macro@__HAL_TIM_DISABLE_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_DISABLE_DMA", - "location": { - "column": "9", - "line": "1295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_DISABLE_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@81038@macro@__HAL_TIM_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_FLAG", - "location": { - "column": "9", - "line": "1319", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@82505@macro@__HAL_TIM_CLEAR_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_CLEAR_FLAG", - "location": { - "column": "9", - "line": "1343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_CLEAR_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@83387@macro@__HAL_TIM_GET_IT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_IT_SOURCE", - "location": { - "column": "9", - "line": "1360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_IT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@84311@macro@__HAL_TIM_CLEAR_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_CLEAR_IT", - "location": { - "column": "9", - "line": "1377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_CLEAR_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@84758@macro@__HAL_TIM_UIFREMAP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_UIFREMAP_ENABLE", - "location": { - "column": "9", - "line": "1387", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_UIFREMAP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@84994@macro@__HAL_TIM_UIFREMAP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_UIFREMAP_DISABLE", - "location": { - "column": "9", - "line": "1395", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_UIFREMAP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@85266@macro@__HAL_TIM_GET_UIFCPY", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_UIFCPY", - "location": { - "column": "9", - "line": "1403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_UIFCPY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@85726@macro@__HAL_TIM_IS_TIM_COUNTING_DOWN", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_IS_TIM_COUNTING_DOWN", - "location": { - "column": "9", - "line": "1412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_IS_TIM_COUNTING_DOWN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@86017@macro@__HAL_TIM_SET_PRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_PRESCALER", - "location": { - "column": "9", - "line": "1420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_PRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@86602@macro@__HAL_TIM_SET_COUNTER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_COUNTER", - "location": { - "column": "9", - "line": "1431", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_COUNTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@86891@macro@__HAL_TIM_GET_COUNTER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_COUNTER", - "location": { - "column": "9", - "line": "1438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_COUNTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@87212@macro@__HAL_TIM_SET_AUTORELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_AUTORELOAD", - "location": { - "column": "9", - "line": "1446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_AUTORELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@87654@macro@__HAL_TIM_GET_AUTORELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_AUTORELOAD", - "location": { - "column": "9", - "line": "1457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_AUTORELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@88202@macro@__HAL_TIM_SET_CLOCKDIVISION", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_CLOCKDIVISION", - "location": { - "column": "9", - "line": "1469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_CLOCKDIVISION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@88853@macro@__HAL_TIM_GET_CLOCKDIVISION", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_CLOCKDIVISION", - "location": { - "column": "9", - "line": "1484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_CLOCKDIVISION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@89917@macro@__HAL_TIM_SET_ICPRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_ICPRESCALER", - "location": { - "column": "9", - "line": "1504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_ICPRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@91069@macro@__HAL_TIM_GET_ICPRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_ICPRESCALER", - "location": { - "column": "9", - "line": "1525", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_ICPRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@92220@macro@__HAL_TIM_SET_COMPARE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_COMPARE", - "location": { - "column": "9", - "line": "1545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_COMPARE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@93570@macro@__HAL_TIM_GET_COMPARE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_GET_COMPARE", - "location": { - "column": "9", - "line": "1566", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_GET_COMPARE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@94620@macro@__HAL_TIM_ENABLE_OCxPRELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_ENABLE_OCxPRELOAD", - "location": { - "column": "9", - "line": "1587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_ENABLE_OCxPRELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@95801@macro@__HAL_TIM_DISABLE_OCxPRELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_DISABLE_OCxPRELOAD", - "location": { - "column": "9", - "line": "1608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_DISABLE_OCxPRELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@97302@macro@__HAL_TIM_ENABLE_OCxFAST", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_ENABLE_OCxFAST", - "location": { - "column": "9", - "line": "1633", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_ENABLE_OCxFAST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@98758@macro@__HAL_TIM_DISABLE_OCxFAST", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_DISABLE_OCxFAST", - "location": { - "column": "9", - "line": "1658", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_DISABLE_OCxFAST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@99672@macro@__HAL_TIM_URS_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_URS_ENABLE", - "location": { - "column": "9", - "line": "1674", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_URS_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@100230@macro@__HAL_TIM_URS_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_URS_DISABLE", - "location": { - "column": "9", - "line": "1687", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_URS_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@101068@macro@__HAL_TIM_SET_CAPTUREPOLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SET_CAPTUREPOLARITY", - "location": { - "column": "9", - "line": "1704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SET_CAPTUREPOLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@101845@macro@__HAL_TIM_SELECT_CCDMAREQUEST", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_TIM_SELECT_CCDMAREQUEST", - "location": { - "column": "9", - "line": "1718", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "__HAL_TIM_SELECT_CCDMAREQUEST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@102354@macro@TIM_CCER_CCxE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCER_CCxE_MASK", - "location": { - "column": "9", - "line": "1732", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCER_CCxE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@102459@macro@TIM_CCER_CCxNE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CCER_CCxNE_MASK", - "location": { - "column": "9", - "line": "1733", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCER_CCxNE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@102803@macro@IS_TIM_CLEARINPUT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLEARINPUT_SOURCE", - "location": { - "column": "9", - "line": "1743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLEARINPUT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@103088@macro@IS_TIM_DMA_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_DMA_BASE", - "location": { - "column": "9", - "line": "1747", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_DMA_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@104907@macro@IS_TIM_EVENT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_EVENT_SOURCE", - "location": { - "column": "9", - "line": "1772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_EVENT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@105031@macro@IS_TIM_COUNTER_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_COUNTER_MODE", - "location": { - "column": "9", - "line": "1774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_COUNTER_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@105518@macro@IS_TIM_UIFREMAP_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_UIFREMAP_MODE", - "location": { - "column": "9", - "line": "1780", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_UIFREMAP_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@105689@macro@IS_TIM_CLOCKDIVISION_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLOCKDIVISION_DIV", - "location": { - "column": "9", - "line": "1783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLOCKDIVISION_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@105951@macro@IS_TIM_AUTORELOAD_PRELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_AUTORELOAD_PRELOAD", - "location": { - "column": "9", - "line": "1787", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_AUTORELOAD_PRELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@106140@macro@IS_TIM_FAST_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_FAST_STATE", - "location": { - "column": "9", - "line": "1790", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_FAST_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@106309@macro@IS_TIM_OC_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OC_POLARITY", - "location": { - "column": "9", - "line": "1793", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OC_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@106486@macro@IS_TIM_OCN_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OCN_POLARITY", - "location": { - "column": "9", - "line": "1796", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OCN_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@106665@macro@IS_TIM_OCIDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OCIDLE_STATE", - "location": { - "column": "9", - "line": "1799", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OCIDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@106839@macro@IS_TIM_OCNIDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OCNIDLE_STATE", - "location": { - "column": "9", - "line": "1802", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OCNIDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@107015@macro@IS_TIM_ENCODERINPUT_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_ENCODERINPUT_POLARITY", - "location": { - "column": "9", - "line": "1805", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_ENCODERINPUT_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@107240@macro@IS_TIM_IC_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_IC_POLARITY", - "location": { - "column": "9", - "line": "1808", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_IC_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@107520@macro@IS_TIM_IC_SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_IC_SELECTION", - "location": { - "column": "9", - "line": "1812", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_IC_SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@107803@macro@IS_TIM_IC_PRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_IC_PRESCALER", - "location": { - "column": "9", - "line": "1816", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_IC_PRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@108145@macro@IS_TIM_OPM_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OPM_MODE", - "location": { - "column": "9", - "line": "1821", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OPM_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@108315@macro@IS_TIM_ENCODER_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_ENCODER_MODE", - "location": { - "column": "9", - "line": "1824", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_ENCODER_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@108572@macro@IS_TIM_DMA_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_DMA_SOURCE", - "location": { - "column": "9", - "line": "1828", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_DMA_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@108694@macro@IS_TIM_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CHANNELS", - "location": { - "column": "9", - "line": "1830", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@109275@macro@IS_TIM_OPM_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OPM_CHANNELS", - "location": { - "column": "9", - "line": "1838", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OPM_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@109439@macro@IS_TIM_PERIOD", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_PERIOD", - "location": { - "column": "9", - "line": "1841", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_PERIOD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@109636@macro@IS_TIM_COMPLEMENTARY_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_COMPLEMENTARY_CHANNELS", - "location": { - "column": "9", - "line": "1844", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_COMPLEMENTARY_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@109907@macro@IS_TIM_CLOCKSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLOCKSOURCE", - "location": { - "column": "9", - "line": "1848", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLOCKSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@110771@macro@IS_TIM_CLOCKPOLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLOCKPOLARITY", - "location": { - "column": "9", - "line": "1859", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLOCKPOLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@111266@macro@IS_TIM_CLOCKPRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLOCKPRESCALER", - "location": { - "column": "9", - "line": "1865", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLOCKPRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@111652@macro@IS_TIM_CLOCKFILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLOCKFILTER", - "location": { - "column": "9", - "line": "1870", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLOCKFILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@111726@macro@IS_TIM_CLEARINPUT_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLEARINPUT_POLARITY", - "location": { - "column": "9", - "line": "1872", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLEARINPUT_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@111943@macro@IS_TIM_CLEARINPUT_PRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLEARINPUT_PRESCALER", - "location": { - "column": "9", - "line": "1875", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLEARINPUT_PRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@112373@macro@IS_TIM_CLEARINPUT_FILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_CLEARINPUT_FILTER", - "location": { - "column": "9", - "line": "1880", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_CLEARINPUT_FILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@112448@macro@IS_TIM_OSSR_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OSSR_STATE", - "location": { - "column": "9", - "line": "1882", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OSSR_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@112613@macro@IS_TIM_OSSI_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OSSI_STATE", - "location": { - "column": "9", - "line": "1885", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OSSI_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@112778@macro@IS_TIM_LOCK_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_LOCK_LEVEL", - "location": { - "column": "9", - "line": "1888", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_LOCK_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113114@macro@IS_TIM_BREAK_FILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK_FILTER", - "location": { - "column": "9", - "line": "1893", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK_FILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113189@macro@IS_TIM_BREAK_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK_STATE", - "location": { - "column": "9", - "line": "1896", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113356@macro@IS_TIM_BREAK_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK_POLARITY", - "location": { - "column": "9", - "line": "1899", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113541@macro@IS_TIM_BREAK2_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK2_STATE", - "location": { - "column": "9", - "line": "1902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK2_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113710@macro@IS_TIM_BREAK2_POLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK2_POLARITY", - "location": { - "column": "9", - "line": "1905", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK2_POLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@113899@macro@IS_TIM_AUTOMATIC_OUTPUT_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_AUTOMATIC_OUTPUT_STATE", - "location": { - "column": "9", - "line": "1908", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_AUTOMATIC_OUTPUT_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@114098@macro@IS_TIM_GROUPCH5", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_GROUPCH5", - "location": { - "column": "9", - "line": "1911", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_GROUPCH5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@114183@macro@IS_TIM_TRGO_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRGO_SOURCE", - "location": { - "column": "9", - "line": "1913", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRGO_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@114821@macro@IS_TIM_TRGO2_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRGO2_SOURCE", - "location": { - "column": "9", - "line": "1922", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRGO2_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@116587@macro@IS_TIM_MSM_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_MSM_STATE", - "location": { - "column": "9", - "line": "1940", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_MSM_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@116770@macro@IS_TIM_SLAVE_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_SLAVE_MODE", - "location": { - "column": "9", - "line": "1943", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_SLAVE_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@117278@macro@IS_TIM_PWM_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_PWM_MODE", - "location": { - "column": "9", - "line": "1950", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_PWM_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@117795@macro@IS_TIM_OC_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_OC_MODE", - "location": { - "column": "9", - "line": "1957", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_OC_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@118489@macro@IS_TIM_TRIGGER_SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRIGGER_SELECTION", - "location": { - "column": "9", - "line": "1966", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRIGGER_SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@119212@macro@IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", - "location": { - "column": "9", - "line": "1975", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@119720@macro@IS_TIM_TRIGGERPOLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRIGGERPOLARITY", - "location": { - "column": "9", - "line": "1981", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRIGGERPOLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@120248@macro@IS_TIM_TRIGGERPRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRIGGERPRESCALER", - "location": { - "column": "9", - "line": "1987", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRIGGERPRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@120650@macro@IS_TIM_TRIGGERFILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TRIGGERFILTER", - "location": { - "column": "9", - "line": "1992", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TRIGGERFILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@120721@macro@IS_TIM_TI1SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_TI1SELECTION", - "location": { - "column": "9", - "line": "1994", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_TI1SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@120928@macro@IS_TIM_DMA_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_DMA_LENGTH", - "location": { - "column": "9", - "line": "1997", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_DMA_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@122708@macro@IS_TIM_DMA_DATA_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_DMA_DATA_LENGTH", - "location": { - "column": "9", - "line": "2016", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_DMA_DATA_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@122796@macro@IS_TIM_IC_FILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_IC_FILTER", - "location": { - "column": "9", - "line": "2018", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_IC_FILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@122865@macro@IS_TIM_DEADTIME", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_DEADTIME", - "location": { - "column": "9", - "line": "2020", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_DEADTIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@122935@macro@IS_TIM_BREAK_SYSTEM", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_BREAK_SYSTEM", - "location": { - "column": "9", - "line": "2022", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_BREAK_SYSTEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@123343@macro@IS_TIM_SLAVEMODE_TRIGGER_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_TIM_SLAVEMODE_TRIGGER_ENABLED", - "location": { - "column": "9", - "line": "2027", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "IS_TIM_SLAVEMODE_TRIGGER_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@123559@macro@TIM_SET_ICPRESCALERVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SET_ICPRESCALERVALUE", - "location": { - "column": "9", - "line": "2030", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SET_ICPRESCALERVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@123968@macro@TIM_RESET_ICPRESCALERVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_RESET_ICPRESCALERVALUE", - "location": { - "column": "9", - "line": "2036", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_RESET_ICPRESCALERVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@124376@macro@TIM_SET_CAPTUREPOLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_SET_CAPTUREPOLARITY", - "location": { - "column": "9", - "line": "2042", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_SET_CAPTUREPOLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@124806@macro@TIM_RESET_CAPTUREPOLARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_RESET_CAPTUREPOLARITY", - "location": { - "column": "9", - "line": "2048", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_RESET_CAPTUREPOLARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@125273@macro@TIM_CHANNEL_STATE_GET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_STATE_GET", - "location": { - "column": "9", - "line": "2054", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_STATE_GET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@125727@macro@TIM_CHANNEL_STATE_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_STATE_SET", - "location": { - "column": "9", - "line": "2062", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_STATE_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@126345@macro@TIM_CHANNEL_STATE_SET_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_STATE_SET_ALL", - "location": { - "column": "9", - "line": "2070", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_STATE_SET_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@127720@macro@TIM_CHANNEL_N_STATE_GET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_N_STATE_GET", - "location": { - "column": "9", - "line": "2085", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_N_STATE_GET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@128036@macro@TIM_CHANNEL_N_STATE_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_N_STATE_SET", - "location": { - "column": "9", - "line": "2091", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_N_STATE_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_tim.h@128468@macro@TIM_CHANNEL_N_STATE_SET_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "TIM_CHANNEL_N_STATE_SET_ALL", - "location": { - "column": "9", - "line": "2097", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CHANNEL_N_STATE_SET_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2127", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2127", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2131", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2131", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2134", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2134", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2135", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2135", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2138", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2138", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2161", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2161", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2177", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2177", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2179", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2179", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2180", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2180", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *, TIM_Encoder_InitTypeDef *)", - "location": { - "column": "19", - "line": "2235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *, TIM_Encoder_InitTypeDef *)", - "location": { - "column": "19", - "line": "2235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *)", - "location": { - "column": "19", - "line": "2236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2243", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2243", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2244", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2244", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "2246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IRQHandler(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2258", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IRQHandler(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2258", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2268", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2268", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *, const TIM_IC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *, const TIM_IC_InitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *, TIM_OnePulse_InitTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2274", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *, TIM_OnePulse_InitTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2274", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigOCrefClear", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *, const TIM_ClearInputConfigTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2276", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigOCrefClear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigOCrefClear", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *, const TIM_ClearInputConfigTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2276", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigOCrefClear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigClockSource", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *, const TIM_ClockConfigTypeDef *)", - "location": { - "column": "19", - "line": "2279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigClockSource", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigClockSource", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *, const TIM_ClockConfigTypeDef *)", - "location": { - "column": "19", - "line": "2279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigClockSource", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigTI1Input", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2280", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigTI1Input", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ConfigTI1Input", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2280", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ConfigTI1Input", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_SlaveConfigSynchro", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", - "location": { - "column": "19", - "line": "2281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_SlaveConfigSynchro", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_SlaveConfigSynchro", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", - "location": { - "column": "19", - "line": "2281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_SlaveConfigSynchro", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_SlaveConfigSynchro_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro_IT(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", - "location": { - "column": "19", - "line": "2282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_SlaveConfigSynchro_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_SlaveConfigSynchro_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro_IT(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", - "location": { - "column": "19", - "line": "2282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_SlaveConfigSynchro_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_WriteStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t)", - "location": { - "column": "19", - "line": "2283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_WriteStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_WriteStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t)", - "location": { - "column": "19", - "line": "2283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_WriteStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_MultiWriteStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiWriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_MultiWriteStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_MultiWriteStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiWriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_MultiWriteStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_WriteStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_WriteStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_WriteStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_WriteStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_ReadStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t)", - "location": { - "column": "19", - "line": "2289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_ReadStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_ReadStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t)", - "location": { - "column": "19", - "line": "2289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_ReadStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_MultiReadStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_MultiReadStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_MultiReadStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "2291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_MultiReadStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_ReadStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_ReadStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurst_ReadStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurst_ReadStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GenerateEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GenerateEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GenerateEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "2295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GenerateEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ReadCapturedValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_TIM_ReadCapturedValue(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "2296", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ReadCapturedValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ReadCapturedValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_TIM_ReadCapturedValue(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "2296", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ReadCapturedValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PeriodElapsedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PeriodElapsedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PeriodElapsedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PeriodElapsedHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PeriodElapsedHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PeriodElapsedHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PeriodElapsedHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PeriodElapsedHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PeriodElapsedHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_DelayElapsedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_DelayElapsedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_DelayElapsedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_DelayElapsedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_CaptureCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_CaptureCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_CaptureCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_CaptureCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_CaptureHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_CaptureHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_CaptureHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_CaptureHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_IC_CaptureHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_CaptureHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_PulseFinishedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_PulseFinishedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_PulseFinishedCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_PulseFinishedCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_PulseFinishedHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_PulseFinishedHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_PulseFinishedHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_PulseFinishedHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_PWM_PulseFinishedHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_PulseFinishedHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_TriggerCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_TriggerCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_TriggerCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_TriggerCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_TriggerHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_TriggerHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2314", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_TriggerHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_TriggerHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_TriggerHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2314", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_TriggerHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2315", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_ErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2315", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_ErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Base_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Base_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_PWM_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_PWM_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2336", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_IC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2336", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_IC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_OnePulse_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_OnePulse_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_Encoder_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "2338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_Encoder_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GetActiveChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ActiveChannel HAL_TIM_GetActiveChannel(const TIM_HandleTypeDef *)", - "location": { - "column": "23", - "line": "2341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GetActiveChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GetActiveChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ActiveChannel HAL_TIM_GetActiveChannel(const TIM_HandleTypeDef *)", - "location": { - "column": "23", - "line": "2341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GetActiveChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GetChannelState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ChannelStateTypeDef HAL_TIM_GetChannelState(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "29", - "line": "2342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GetChannelState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_GetChannelState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ChannelStateTypeDef HAL_TIM_GetChannelState(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "29", - "line": "2342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_GetChannelState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurstState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_DMABurstStateTypeDef HAL_TIM_DMABurstState(const TIM_HandleTypeDef *)", - "location": { - "column": "30", - "line": "2343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurstState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIM_DMABurstState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_DMABurstStateTypeDef HAL_TIM_DMABurstState(const TIM_HandleTypeDef *)", - "location": { - "column": "30", - "line": "2343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "HAL_TIM_DMABurstState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_Base_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_Base_SetConfig(TIM_TypeDef *, const TIM_Base_InitTypeDef *)", - "location": { - "column": "6", - "line": "2357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_Base_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_Base_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_Base_SetConfig(TIM_TypeDef *, const TIM_Base_InitTypeDef *)", - "location": { - "column": "6", - "line": "2357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_Base_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_TI1_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_TI1_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TI1_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_TI1_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_TI1_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_TI1_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_OC2_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_OC2_SetConfig(TIM_TypeDef *, const TIM_OC_InitTypeDef *)", - "location": { - "column": "6", - "line": "2359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OC2_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_OC2_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_OC2_SetConfig(TIM_TypeDef *, const TIM_OC_InitTypeDef *)", - "location": { - "column": "6", - "line": "2359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_OC2_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_ETR_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_ETR_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETR_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_ETR_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_ETR_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_ETR_SetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMADelayPulseHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMADelayPulseHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2363", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMADelayPulseHalfCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMADelayPulseHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMADelayPulseHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2363", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMADelayPulseHalfCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMAError", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMAError(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMAError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMAError", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMAError(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMAError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMACaptureCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMACaptureCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMACaptureCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMACaptureCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMACaptureCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMACaptureCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMACaptureHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMACaptureHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2366", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMACaptureHalfCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_DMACaptureHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_DMACaptureHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "2366", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_DMACaptureHalfCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_CCxChannelCmd", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_CCxChannelCmd(TIM_TypeDef *, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2367", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCxChannelCmd", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIM_CCxChannelCmd", - "What": "Function", - "defdec": "Dec", - "display": "void TIM_CCxChannelCmd(TIM_TypeDef *, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "2367", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" - }, - "name": "TIM_CCxChannelCmd", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@lora_out_buff", - "What": "Variable", - "defdec": "Dec", - "display": "lora_out_buff", - "location": { - "column": "17", - "line": "6", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "lora_out_buff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@uart_devices", - "What": "Variable", - "defdec": "Dec", - "display": "uart_devices", - "location": { - "column": "25", - "line": "7", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "uart_devices", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@send_uart_pack", - "What": "Function", - "defdec": "Dec", - "display": "void send_uart_pack(device_handle, FRT_MsgFunctionCode_e, const void *, u_int16_t)", - "location": { - "column": "13", - "line": "10", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "send_uart_pack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_MsgProc_ReadRegister", - "What": "Function", - "defdec": "Dec", - "display": "void FRT_MsgProc_ReadRegister(device_handle, void *)", - "location": { - "column": "13", - "line": "11", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_MsgProc_ReadRegister", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_MsgProc_WriteRegister", - "What": "Function", - "defdec": "Dec", - "display": "void FRT_MsgProc_WriteRegister(device_handle, void *)", - "location": { - "column": "13", - "line": "12", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_MsgProc_WriteRegister", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadReg", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadReg(unsigned char)", - "location": { - "column": "18", - "line": "13", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadReg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegCurrent", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegCurrent(void *)", - "location": { - "column": "18", - "line": "15", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegMaxCurrent", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegMaxCurrent(void *)", - "location": { - "column": "18", - "line": "16", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegMaxCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegPulseCount", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegPulseCount(void *)", - "location": { - "column": "18", - "line": "17", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegPulseCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_V", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegBat_V(void *)", - "location": { - "column": "18", - "line": "18", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegBat_V", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_Charge", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegBat_Charge(void *)", - "location": { - "column": "18", - "line": "19", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegBat_Charge", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegMACINFO", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_ReadRegMACINFO(void *)", - "location": { - "column": "18", "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" }, - "name": "FRT_ReadRegMACINFO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegDeviceAddr", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_WriteRegDeviceAddr(void *)", - "location": { - "column": "18", - "line": "22", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegDeviceAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegNetId", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_WriteRegNetId(void *)", - "location": { - "column": "18", - "line": "23", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegNetId", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegMaxCurrent", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_WriteRegMaxCurrent(void *)", - "location": { - "column": "18", - "line": "24", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegMaxCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegPulseCount", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_WriteRegPulseCount(void *)", - "location": { - "column": "18", - "line": "25", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegPulseCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegReboot", - "What": "Function", - "defdec": "Dec", - "display": "u_int16_t FRT_WriteRegReboot(void *)", - "location": { - "column": "18", - "line": "26", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegReboot", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@pdebug_mcs_info", - "What": "Function", - "defdec": "Dec", - "display": "void pdebug_mcs_info(void)", - "location": { - "column": "13", - "line": "28", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pdebug_mcs_info", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_stMcs_Para", - "What": "Variable", - "defdec": "Def", - "display": "g_stMcs_Para", - "location": { - "column": "10", - "line": "30", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "g_stMcs_Para", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_MsgTbl", - "What": "Variable", - "defdec": "Def", - "display": "g_MsgTbl", - "location": { - "column": "27", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "g_MsgTbl", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_RegTbl", - "What": "Variable", - "defdec": "Def", - "display": "g_RegTbl", - "location": { - "column": "20", - "line": "40", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "g_RegTbl", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_Write_RegTbl", - "What": "Variable", - "defdec": "Def", - "display": "g_Write_RegTbl", - "location": { - "column": "20", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "g_Write_RegTbl", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CRC16", - "What": "Function", - "defdec": "Def", - "display": "unsigned short CRC16(unsigned char *, unsigned char)", - "location": { - "column": "16", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "CRC16", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@2728@F@CRC16@crc", - "What": "Variable", - "defdec": "Def", - "display": "crc", - "location": { - "column": "17", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "crc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@2757@F@CRC16@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "16", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@2757@F@CRC16@j", - "What": "Variable", - "defdec": "Dec", - "display": "j", - "location": { - "column": "19", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "j", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_swap_endian_16", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_swap_endian_16(u_int16_t)", - "location": { - "column": "18", - "line": "89", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_swap_endian_16", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegCurrent", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegCurrent(void *)", - "location": { - "column": "18", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@3341@F@FRT_ReadRegCurrent@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "101", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegMaxCurrent", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegMaxCurrent(void *)", - "location": { - "column": "18", - "line": "110", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegMaxCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@3611@F@FRT_ReadRegMaxCurrent@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegPulseCount", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegPulseCount(void *)", - "location": { - "column": "18", - "line": "121", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegPulseCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@3891@F@FRT_ReadRegPulseCount@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_V", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegBat_V(void *)", - "location": { - "column": "18", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegBat_V", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@4134@F@FRT_ReadRegBat_V@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "134", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_Charge", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegBat_Charge(void *)", - "location": { - "column": "18", - "line": "143", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegBat_Charge", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@4472@F@FRT_ReadRegBat_Charge@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadRegMACINFO", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadRegMACINFO(void *)", - "location": { - "column": "18", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadRegMACINFO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@4713@F@FRT_ReadRegMACINFO@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "17", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegDeviceAddr", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_WriteRegDeviceAddr(void *)", - "location": { - "column": "18", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegDeviceAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5010@F@FRT_WriteRegDeviceAddr@pMsgAddr", - "What": "Variable", - "defdec": "Def", - "display": "pMsgAddr", - "location": { - "column": "15", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pMsgAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5054@F@FRT_WriteRegDeviceAddr@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegNetId", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_WriteRegNetId(void *)", - "location": { - "column": "18", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegNetId", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5384@F@FRT_WriteRegNetId@pMsgAddr", - "What": "Variable", - "defdec": "Def", - "display": "pMsgAddr", - "location": { - "column": "15", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pMsgAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5428@F@FRT_WriteRegNetId@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegMaxCurrent", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_WriteRegMaxCurrent(void *)", - "location": { - "column": "18", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegMaxCurrent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5744@F@FRT_WriteRegMaxCurrent@pMsgAddr", - "What": "Variable", - "defdec": "Def", - "display": "pMsgAddr", - "location": { - "column": "15", - "line": "208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pMsgAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@5788@F@FRT_WriteRegMaxCurrent@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "209", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegPulseCount", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_WriteRegPulseCount(void *)", - "location": { - "column": "18", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegPulseCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@6051@F@FRT_WriteRegPulseCount@pMsgAddr", - "What": "Variable", - "defdec": "Def", - "display": "pMsgAddr", - "location": { - "column": "15", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pMsgAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@6095@F@FRT_WriteRegPulseCount@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_WriteRegReboot", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_WriteRegReboot(void *)", - "location": { - "column": "18", - "line": "236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_WriteRegReboot", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@6349@F@FRT_WriteRegReboot@pMsgAddr", - "What": "Variable", - "defdec": "Def", - "display": "pMsgAddr", - "location": { - "column": "15", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pMsgAddr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@6393@F@FRT_WriteRegReboot@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@send_uart_pack", - "What": "Function", - "defdec": "Def", - "display": "void send_uart_pack(device_handle, FRT_MsgFunctionCode_e, const void *, u_int16_t)", - "location": { - "column": "13", - "line": "257", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "send_uart_pack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@6861@F@send_uart_pack@pack", - "What": "Variable", - "defdec": "Def", - "display": "pack", - "location": { - "column": "29", - "line": "260", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_ReadReg", - "What": "Function", - "defdec": "Def", - "display": "u_int16_t FRT_ReadReg(unsigned char)", - "location": { - "column": "11", - "line": "279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_ReadReg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@7614@F@FRT_ReadReg@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "19", - "line": "281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_MsgProc_ReadRegister", - "What": "Function", - "defdec": "Def", - "display": "void FRT_MsgProc_ReadRegister(device_handle, void *)", - "location": { - "column": "6", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_MsgProc_ReadRegister", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@8050@F@FRT_MsgProc_ReadRegister@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@8090@F@FRT_MsgProc_ReadRegister@start_reg_addr", - "What": "Variable", - "defdec": "Def", - "display": "start_reg_addr", - "location": { - "column": "15", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "start_reg_addr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@8147@F@FRT_MsgProc_ReadRegister@reg_num", - "What": "Variable", - "defdec": "Def", - "display": "reg_num", - "location": { - "column": "15", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "reg_num", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@8551@F@FRT_MsgProc_ReadRegister@reg_value_buff", - "What": "Variable", - "defdec": "Def", - "display": "reg_value_buff", - "location": { - "column": "21", - "line": "313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "reg_value_buff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@8663@F@FRT_MsgProc_ReadRegister@pos", - "What": "Variable", - "defdec": "Def", - "display": "pos", - "location": { - "column": "19", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pos", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@FRT_MsgProc_WriteRegister", - "What": "Function", - "defdec": "Def", - "display": "void FRT_MsgProc_WriteRegister(device_handle, void *)", - "location": { - "column": "6", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_MsgProc_WriteRegister", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9332@F@FRT_MsgProc_WriteRegister@data", - "What": "Variable", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "339", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9372@F@FRT_MsgProc_WriteRegister@start_reg_addr", - "What": "Variable", - "defdec": "Def", - "display": "start_reg_addr", - "location": { - "column": "15", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "start_reg_addr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9429@F@FRT_MsgProc_WriteRegister@reg_num", - "What": "Variable", - "defdec": "Def", - "display": "reg_num", - "location": { - "column": "15", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "reg_num", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9478@F@FRT_MsgProc_WriteRegister@byte_num", - "What": "Variable", - "defdec": "Def", - "display": "byte_num", - "location": { - "column": "15", - "line": "342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "byte_num", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9512@F@FRT_MsgProc_WriteRegister@return_crc_value", - "What": "Variable", - "defdec": "Def", - "display": "return_crc_value", - "location": { - "column": "20", - "line": "343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "return_crc_value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@9945@F@FRT_MsgProc_WriteRegister@Trans_data", - "What": "Variable", - "defdec": "Def", - "display": "Trans_data", - "location": { - "column": "13", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "Trans_data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@10570@F@FRT_MsgProc_WriteRegister@content", - "What": "Variable", - "defdec": "Def", - "display": "content", - "location": { - "column": "14", - "line": "376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "content", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@10608@F@FRT_MsgProc_WriteRegister@var", - "What": "Variable", - "defdec": "Def", - "display": "var", - "location": { - "column": "19", - "line": "377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "var", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@10749@F@FRT_MsgProc_WriteRegister@pos", - "What": "Variable", - "defdec": "Def", - "display": "pos", - "location": { - "column": "19", - "line": "382", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pos", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@10808@F@FRT_MsgProc_WriteRegister@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "23", - "line": "384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@uart_read_frt_climate_pack", - "What": "Function", - "defdec": "Def", - "display": "int uart_read_frt_climate_pack(device_handle, u_int8_t *, u_int32_t)", - "location": { - "column": "12", - "line": "400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "uart_read_frt_climate_pack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11261@F@uart_read_frt_climate_pack@offset", - "What": "Variable", - "defdec": "Def", - "display": "offset", - "location": { - "column": "15", - "line": "402", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "offset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11288@F@uart_read_frt_climate_pack@c", - "What": "Variable", - "defdec": "Def", - "display": "c", - "location": { - "column": "10", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "c", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11370@F@uart_read_frt_climate_pack@new_buff", - "What": "Variable", - "defdec": "Def", - "display": "new_buff", - "location": { - "column": "19", - "line": "406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "new_buff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11470@F@uart_read_frt_climate_pack@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "16", - "line": "409", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11606@F@uart_read_frt_climate_pack@start_index", - "What": "Variable", - "defdec": "Def", - "display": "start_index", - "location": { - "column": "11", - "line": "415", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "start_index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@11741@F@uart_read_frt_climate_pack@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "16", - "line": "417", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@12701@F@uart_read_frt_climate_pack@regnum", - "What": "Variable", - "defdec": "Def", - "display": "regnum", - "location": { - "column": "21", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "regnum", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FRT_MsgHandler", - "What": "Function", - "defdec": "Def", - "display": "void FRT_MsgHandler(device_handle, u_int8_t *, u_int32_t)", - "location": { - "column": "6", - "line": "473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "FRT_MsgHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@13884@F@FRT_MsgHandler@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "20", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@rs485_buff", - "What": "Variable", - "defdec": "Def", - "display": "rs485_buff", - "location": { - "column": "17", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "rs485_buff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@read_and_process_uart_data", - "What": "Function", - "defdec": "Def", - "display": "void read_and_process_uart_data(device_handle)", - "location": { - "column": "6", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "read_and_process_uart_data", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@14548@F@read_and_process_uart_data@ret", - "What": "Variable", - "defdec": "Def", - "display": "ret", - "location": { - "column": "10", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "ret", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:frt_protocol.c@F@pdebug_mcs_info", - "What": "Function", - "defdec": "Def", - "display": "void pdebug_mcs_info(void)", - "location": { - "column": "13", - "line": "517", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" - }, - "name": "pdebug_mcs_info", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:comm_types.h@30@macro@_COMM_TYPES_", - "What": "MacroDef", - "defdec": "Def", - "display": "_COMM_TYPES_", - "location": { - "column": "9", - "line": "2", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "_COMM_TYPES_", + "name": "STM32L4xx_HAL_RCC_H", "origin": "user_include", "scope": null }, { - "ID": "c:comm_types.h@52@macro@RAM_FUNC", - "What": "MacroDef", - "defdec": "Def", - "display": "RAM_FUNC", - "location": { - "column": "9", - "line": "3", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "RAM_FUNC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@ulong", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long", - "location": { - "column": "27", - "line": "5", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "ulong", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@ushort", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "28", - "line": "6", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "ushort", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@uint", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "7", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "uint", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@u_int8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "23", - "line": "8", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "u_int8_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@u_int16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "28", - "line": "9", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "u_int16_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@u_int32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "10", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "u_int32_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@u_int64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "31", - "line": "11", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "u_int64_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@BOOL", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "24", - "line": "12", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "BOOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@BYTE", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "23", - "line": "15", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "BYTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@SHORT", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "20", - "line": "18", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "SHORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@WORD", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "24", - "line": "19", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "WORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@WCHAR", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "24", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "WCHAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@INT", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "15", - "line": "23", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@UINT", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "24", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "UINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@LONG", - "What": "Typedef", - "defdec": "Def", - "display": "long", - "location": { - "column": "16", - "line": "27", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "LONG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@T@DWORD", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long", - "location": { - "column": "23", - "line": "28", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "DWORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@756@macro@FALSE", - "What": "MacroDef", - "defdec": "Def", - "display": "FALSE", - "location": { - "column": "9", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "FALSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@811@macro@TRUE", - "What": "MacroDef", - "defdec": "Def", - "display": "TRUE", - "location": { - "column": "9", - "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "TRUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:comm_types.h@856@macro@ELEMENT_OF", - "What": "MacroDef", - "defdec": "Def", - "display": "ELEMENT_OF", - "location": { - "column": "9", - "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "ELEMENT_OF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@U_DataType", - "What": "Union", + "ID": "c:@SA@RCC_PLLInitTypeDef", + "What": "Struct", "defdec": "Def", "display": "", "location": { "column": "9", "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" }, "members": [ { - "ID": "c:@UA@U_DataType@FI@iValue", + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLState", "What": "FieldDecl", "defdec": "Def", - "display": "iValue", + "display": "PLLState", "location": { - "column": "11", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" - }, - "name": "iValue", - "origin": "user_include", - "scope": "_anonymous_comm_types_h_45_9" - }, - { - "ID": "c:@UA@U_DataType@FI@fValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "fValue", - "location": { - "column": "11", + "column": "12", "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" }, - "name": "fValue", + "name": "PLLState", "origin": "user_include", - "scope": "_anonymous_comm_types_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" }, { - "ID": "c:@UA@U_DataType@FI@cValue", + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLSource", "What": "FieldDecl", "defdec": "Def", - "display": "cValue", + "display": "PLLSource", "location": { - "column": "11", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + "column": "12", + "line": "50", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" }, - "name": "cValue", + "name": "PLLSource", "origin": "user_include", - "scope": "_anonymous_comm_types_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" }, { - "ID": "c:@T@U_DataType", + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLM", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLLM", + "location": { + "column": "12", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLLM", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + }, + { + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLN", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLLN", + "location": { + "column": "12", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLLN", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + }, + { + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLP", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLLP", + "location": { + "column": "12", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLLP", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + }, + { + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLQ", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLLQ", + "location": { + "column": "12", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLLQ", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + }, + { + "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLR", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLLR", + "location": { + "column": "12", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLLR", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + }, + { + "ID": "c:@T@RCC_PLLInitTypeDef", "What": "TypedefDecl", "defdec": "Def", - "display": "union U_DataType", + "display": "struct RCC_PLLInitTypeDef", "location": { "column": "2", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" }, - "name": "U_DataType", + "name": "RCC_PLLInitTypeDef", "origin": "user_include", - "scope": "_anonymous_comm_types_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" } ], "name": "", "origin": "user_include", "scope": null }, + { + "ID": "c:@SA@RCC_OscInitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "members": [ + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@OscillatorType", + "What": "FieldDecl", + "defdec": "Def", + "display": "OscillatorType", + "location": { + "column": "12", + "line": "80", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "OscillatorType", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSEState", + "What": "FieldDecl", + "defdec": "Def", + "display": "HSEState", + "location": { + "column": "12", + "line": "83", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HSEState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@LSEState", + "What": "FieldDecl", + "defdec": "Def", + "display": "LSEState", + "location": { + "column": "12", + "line": "86", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "LSEState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSIState", + "What": "FieldDecl", + "defdec": "Def", + "display": "HSIState", + "location": { + "column": "12", + "line": "89", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HSIState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSICalibrationValue", + "What": "FieldDecl", + "defdec": "Def", + "display": "HSICalibrationValue", + "location": { + "column": "12", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HSICalibrationValue", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@LSIState", + "What": "FieldDecl", + "defdec": "Def", + "display": "LSIState", + "location": { + "column": "12", + "line": "98", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "LSIState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSIState", + "What": "FieldDecl", + "defdec": "Def", + "display": "MSIState", + "location": { + "column": "12", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "MSIState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSICalibrationValue", + "What": "FieldDecl", + "defdec": "Def", + "display": "MSICalibrationValue", + "location": { + "column": "12", + "line": "109", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "MSICalibrationValue", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSIClockRange", + "What": "FieldDecl", + "defdec": "Def", + "display": "MSIClockRange", + "location": { + "column": "12", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "MSIClockRange", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSI48State", + "What": "FieldDecl", + "defdec": "Def", + "display": "HSI48State", + "location": { + "column": "12", + "line": "115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HSI48State", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@SA@RCC_OscInitTypeDef@FI@PLL", + "What": "FieldDecl", + "defdec": "Def", + "display": "PLL", + "location": { + "column": "22", + "line": "118", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "PLL", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + }, + { + "ID": "c:@T@RCC_OscInitTypeDef", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct RCC_OscInitTypeDef", + "location": { + "column": "2", + "line": "120", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OscInitTypeDef", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@RCC_ClkInitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "125", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "members": [ + { + "ID": "c:@SA@RCC_ClkInitTypeDef@FI@ClockType", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockType", + "location": { + "column": "12", + "line": "127", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "ClockType", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + }, + { + "ID": "c:@SA@RCC_ClkInitTypeDef@FI@SYSCLKSource", + "What": "FieldDecl", + "defdec": "Def", + "display": "SYSCLKSource", + "location": { + "column": "12", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "SYSCLKSource", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + }, + { + "ID": "c:@SA@RCC_ClkInitTypeDef@FI@AHBCLKDivider", + "What": "FieldDecl", + "defdec": "Def", + "display": "AHBCLKDivider", + "location": { + "column": "12", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "AHBCLKDivider", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + }, + { + "ID": "c:@SA@RCC_ClkInitTypeDef@FI@APB1CLKDivider", + "What": "FieldDecl", + "defdec": "Def", + "display": "APB1CLKDivider", + "location": { + "column": "12", + "line": "136", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "APB1CLKDivider", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + }, + { + "ID": "c:@SA@RCC_ClkInitTypeDef@FI@APB2CLKDivider", + "What": "FieldDecl", + "defdec": "Def", + "display": "APB2CLKDivider", + "location": { + "column": "12", + "line": "139", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "APB2CLKDivider", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + }, + { + "ID": "c:@T@RCC_ClkInitTypeDef", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct RCC_ClkInitTypeDef", + "location": { + "column": "2", + "line": "142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_ClkInitTypeDef", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7224@macro@RCC_DBP_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_DBP_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_DBP_TIMEOUT_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7308@macro@RCC_LSE_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSE_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSE_TIMEOUT_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7454@macro@RCC_OSCILLATORTYPE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_NONE", + "location": { + "column": "9", + "line": "165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7551@macro@RCC_OSCILLATORTYPE_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_HSE", + "location": { + "column": "9", + "line": "166", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7630@macro@RCC_OSCILLATORTYPE_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_HSI", + "location": { + "column": "9", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7709@macro@RCC_OSCILLATORTYPE_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_LSE", + "location": { + "column": "9", + "line": "168", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7788@macro@RCC_OSCILLATORTYPE_LSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_LSI", + "location": { + "column": "9", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_LSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7867@macro@RCC_OSCILLATORTYPE_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_MSI", + "location": { + "column": "9", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@7978@macro@RCC_OSCILLATORTYPE_HSI48", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_HSI48", + "location": { + "column": "9", + "line": "172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_HSI48", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8167@macro@RCC_HSE_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSE_OFF", + "location": { + "column": "9", + "line": "181", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSE_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8269@macro@RCC_HSE_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSE_ON", + "location": { + "column": "9", + "line": "182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSE_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8369@macro@RCC_HSE_BYPASS", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSE_BYPASS", + "location": { + "column": "9", + "line": "183", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSE_BYPASS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8560@macro@RCC_LSE_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSE_OFF", + "location": { + "column": "9", + "line": "191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSE_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8669@macro@RCC_LSE_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSE_ON", + "location": { + "column": "9", + "line": "192", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSE_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@8776@macro@RCC_LSE_BYPASS", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSE_BYPASS", + "location": { + "column": "9", + "line": "193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSE_BYPASS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@9347@macro@RCC_HSI_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSI_OFF", + "location": { + "column": "9", + "line": "205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSI_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@9432@macro@RCC_HSI_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSI_ON", + "location": { + "column": "9", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSI_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@9724@macro@RCC_HSICALIBRATION_DEFAULT", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSICALIBRATION_DEFAULT", + "location": { + "column": "9", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSICALIBRATION_DEFAULT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@9989@macro@RCC_LSI_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSI_OFF", + "location": { + "column": "9", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSI_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@10074@macro@RCC_LSI_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSI_ON", + "location": { + "column": "9", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSI_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@10549@macro@RCC_MSI_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSI_OFF", + "location": { + "column": "9", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSI_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@10634@macro@RCC_MSI_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSI_ON", + "location": { + "column": "9", + "line": "241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSI_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@10719@macro@RCC_MSICALIBRATION_DEFAULT", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSICALIBRATION_DEFAULT", + "location": { + "column": "9", + "line": "243", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSICALIBRATION_DEFAULT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@10932@macro@RCC_HSI48_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSI48_OFF", + "location": { + "column": "9", + "line": "252", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSI48_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11023@macro@RCC_HSI48_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HSI48_ON", + "location": { + "column": "9", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HSI48_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11392@macro@RCC_PLL_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_NONE", + "location": { + "column": "9", + "line": "270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11482@macro@RCC_PLL_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_OFF", + "location": { + "column": "9", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11561@macro@RCC_PLL_ON", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_ON", + "location": { + "column": "9", + "line": "272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_ON", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11801@macro@RCC_PLLP_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV2", + "location": { + "column": "9", + "line": "282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11889@macro@RCC_PLLP_DIV3", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV3", + "location": { + "column": "9", + "line": "283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@11977@macro@RCC_PLLP_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV4", + "location": { + "column": "9", + "line": "284", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12065@macro@RCC_PLLP_DIV5", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV5", + "location": { + "column": "9", + "line": "285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12153@macro@RCC_PLLP_DIV6", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV6", + "location": { + "column": "9", + "line": "286", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12241@macro@RCC_PLLP_DIV7", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV7", + "location": { + "column": "9", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12329@macro@RCC_PLLP_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV8", + "location": { + "column": "9", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12417@macro@RCC_PLLP_DIV9", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV9", + "location": { + "column": "9", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12505@macro@RCC_PLLP_DIV10", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV10", + "location": { + "column": "9", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV10", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12593@macro@RCC_PLLP_DIV11", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV11", + "location": { + "column": "9", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV11", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12681@macro@RCC_PLLP_DIV12", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV12", + "location": { + "column": "9", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV12", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12769@macro@RCC_PLLP_DIV13", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV13", + "location": { + "column": "9", + "line": "293", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV13", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12857@macro@RCC_PLLP_DIV14", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV14", + "location": { + "column": "9", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV14", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@12945@macro@RCC_PLLP_DIV15", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV15", + "location": { + "column": "9", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV15", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13033@macro@RCC_PLLP_DIV16", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV16", + "location": { + "column": "9", + "line": "296", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13121@macro@RCC_PLLP_DIV17", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV17", + "location": { + "column": "9", + "line": "297", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV17", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13209@macro@RCC_PLLP_DIV18", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV18", + "location": { + "column": "9", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV18", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13297@macro@RCC_PLLP_DIV19", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV19", + "location": { + "column": "9", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV19", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13385@macro@RCC_PLLP_DIV20", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV20", + "location": { + "column": "9", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV20", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13473@macro@RCC_PLLP_DIV21", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV21", + "location": { + "column": "9", + "line": "301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV21", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13561@macro@RCC_PLLP_DIV22", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV22", + "location": { + "column": "9", + "line": "302", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV22", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13649@macro@RCC_PLLP_DIV23", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV23", + "location": { + "column": "9", + "line": "303", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV23", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13737@macro@RCC_PLLP_DIV24", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV24", + "location": { + "column": "9", + "line": "304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV24", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13825@macro@RCC_PLLP_DIV25", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV25", + "location": { + "column": "9", + "line": "305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV25", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@13913@macro@RCC_PLLP_DIV26", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV26", + "location": { + "column": "9", + "line": "306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV26", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14001@macro@RCC_PLLP_DIV27", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV27", + "location": { + "column": "9", + "line": "307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV27", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14089@macro@RCC_PLLP_DIV28", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV28", + "location": { + "column": "9", + "line": "308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV28", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14177@macro@RCC_PLLP_DIV29", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV29", + "location": { + "column": "9", + "line": "309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV29", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14265@macro@RCC_PLLP_DIV30", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV30", + "location": { + "column": "9", + "line": "310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV30", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14353@macro@RCC_PLLP_DIV31", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLP_DIV31", + "location": { + "column": "9", + "line": "311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLP_DIV31", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14787@macro@RCC_PLLQ_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLQ_DIV2", + "location": { + "column": "9", + "line": "324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLQ_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14874@macro@RCC_PLLQ_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLQ_DIV4", + "location": { + "column": "9", + "line": "325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLQ_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@14961@macro@RCC_PLLQ_DIV6", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLQ_DIV6", + "location": { + "column": "9", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLQ_DIV6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15048@macro@RCC_PLLQ_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLQ_DIV8", + "location": { + "column": "9", + "line": "327", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLQ_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15227@macro@RCC_PLLR_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLR_DIV2", + "location": { + "column": "9", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLR_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15314@macro@RCC_PLLR_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLR_DIV4", + "location": { + "column": "9", + "line": "336", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLR_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15401@macro@RCC_PLLR_DIV6", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLR_DIV6", + "location": { + "column": "9", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLR_DIV6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15488@macro@RCC_PLLR_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLR_DIV8", + "location": { + "column": "9", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLR_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15663@macro@RCC_PLLSOURCE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSOURCE_NONE", + "location": { + "column": "9", + "line": "346", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSOURCE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15780@macro@RCC_PLLSOURCE_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSOURCE_MSI", + "location": { + "column": "9", + "line": "347", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSOURCE_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@15897@macro@RCC_PLLSOURCE_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSOURCE_HSI", + "location": { + "column": "9", + "line": "348", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSOURCE_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@16014@macro@RCC_PLLSOURCE_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSOURCE_HSE", + "location": { + "column": "9", + "line": "349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSOURCE_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@16423@macro@RCC_PLL_SAI2CLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_SAI2CLK", + "location": { + "column": "9", + "line": "360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_SAI2CLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@16594@macro@RCC_PLL_48M1CLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_48M1CLK", + "location": { + "column": "9", + "line": "362", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_48M1CLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@16701@macro@RCC_PLL_SYSCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_SYSCLK", + "location": { + "column": "9", + "line": "363", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLL_SYSCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@16934@macro@RCC_PLLSAI1_SAI1CLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSAI1_SAI1CLK", + "location": { + "column": "9", + "line": "372", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSAI1_SAI1CLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@17043@macro@RCC_PLLSAI1_48M2CLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSAI1_48M2CLK", + "location": { + "column": "9", + "line": "373", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSAI1_48M2CLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@17152@macro@RCC_PLLSAI1_ADC1CLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLLSAI1_ADC1CLK", + "location": { + "column": "9", + "line": "374", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_PLLSAI1_ADC1CLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18356@macro@RCC_MSIRANGE_0", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_0", + "location": { + "column": "9", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18438@macro@RCC_MSIRANGE_1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_1", + "location": { + "column": "9", + "line": "404", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18520@macro@RCC_MSIRANGE_2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_2", + "location": { + "column": "9", + "line": "405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18602@macro@RCC_MSIRANGE_3", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_3", + "location": { + "column": "9", + "line": "406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18684@macro@RCC_MSIRANGE_4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_4", + "location": { + "column": "9", + "line": "407", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18766@macro@RCC_MSIRANGE_5", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_5", + "location": { + "column": "9", + "line": "408", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18848@macro@RCC_MSIRANGE_6", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_6", + "location": { + "column": "9", + "line": "409", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@18930@macro@RCC_MSIRANGE_7", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_7", + "location": { + "column": "9", + "line": "410", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19012@macro@RCC_MSIRANGE_8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_8", + "location": { + "column": "9", + "line": "411", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19094@macro@RCC_MSIRANGE_9", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_9", + "location": { + "column": "9", + "line": "412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19176@macro@RCC_MSIRANGE_10", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_10", + "location": { + "column": "9", + "line": "413", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_10", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19258@macro@RCC_MSIRANGE_11", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MSIRANGE_11", + "location": { + "column": "9", + "line": "414", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MSIRANGE_11", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19430@macro@RCC_CLOCKTYPE_SYSCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_CLOCKTYPE_SYSCLK", + "location": { + "column": "9", + "line": "422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_CLOCKTYPE_SYSCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19512@macro@RCC_CLOCKTYPE_HCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_CLOCKTYPE_HCLK", + "location": { + "column": "9", + "line": "423", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_CLOCKTYPE_HCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19592@macro@RCC_CLOCKTYPE_PCLK1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_CLOCKTYPE_PCLK1", + "location": { + "column": "9", + "line": "424", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_CLOCKTYPE_PCLK1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19673@macro@RCC_CLOCKTYPE_PCLK2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_CLOCKTYPE_PCLK2", + "location": { + "column": "9", + "line": "425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_CLOCKTYPE_PCLK2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19848@macro@RCC_SYSCLKSOURCE_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_MSI", + "location": { + "column": "9", + "line": "433", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@19945@macro@RCC_SYSCLKSOURCE_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_HSI", + "location": { + "column": "9", + "line": "434", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20042@macro@RCC_SYSCLKSOURCE_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_HSE", + "location": { + "column": "9", + "line": "435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20139@macro@RCC_SYSCLKSOURCE_PLLCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_PLLCLK", + "location": { + "column": "9", + "line": "436", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_PLLCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20344@macro@RCC_SYSCLKSOURCE_STATUS_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_STATUS_MSI", + "location": { + "column": "9", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_STATUS_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20436@macro@RCC_SYSCLKSOURCE_STATUS_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_STATUS_HSI", + "location": { + "column": "9", + "line": "445", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_STATUS_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20528@macro@RCC_SYSCLKSOURCE_STATUS_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_STATUS_HSE", + "location": { + "column": "9", + "line": "446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_STATUS_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20620@macro@RCC_SYSCLKSOURCE_STATUS_PLLCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLKSOURCE_STATUS_PLLCLK", + "location": { + "column": "9", + "line": "447", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLKSOURCE_STATUS_PLLCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20800@macro@RCC_SYSCLK_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV1", + "location": { + "column": "9", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20888@macro@RCC_SYSCLK_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV2", + "location": { + "column": "9", + "line": "456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@20977@macro@RCC_SYSCLK_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV4", + "location": { + "column": "9", + "line": "457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21066@macro@RCC_SYSCLK_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV8", + "location": { + "column": "9", + "line": "458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21155@macro@RCC_SYSCLK_DIV16", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV16", + "location": { + "column": "9", + "line": "459", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21245@macro@RCC_SYSCLK_DIV64", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV64", + "location": { + "column": "9", + "line": "460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV64", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21335@macro@RCC_SYSCLK_DIV128", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV128", + "location": { + "column": "9", + "line": "461", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV128", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21426@macro@RCC_SYSCLK_DIV256", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV256", + "location": { + "column": "9", + "line": "462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV256", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21517@macro@RCC_SYSCLK_DIV512", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_SYSCLK_DIV512", + "location": { + "column": "9", + "line": "463", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_SYSCLK_DIV512", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21708@macro@RCC_HCLK_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HCLK_DIV1", + "location": { + "column": "9", + "line": "471", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HCLK_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21794@macro@RCC_HCLK_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HCLK_DIV2", + "location": { + "column": "9", + "line": "472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HCLK_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21881@macro@RCC_HCLK_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HCLK_DIV4", + "location": { + "column": "9", + "line": "473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HCLK_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@21968@macro@RCC_HCLK_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HCLK_DIV8", + "location": { + "column": "9", + "line": "474", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HCLK_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22055@macro@RCC_HCLK_DIV16", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_HCLK_DIV16", + "location": { + "column": "9", + "line": "475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_HCLK_DIV16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22231@macro@RCC_RTCCLKSOURCE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RTCCLKSOURCE_NONE", + "location": { + "column": "9", + "line": "483", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RTCCLKSOURCE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22327@macro@RCC_RTCCLKSOURCE_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RTCCLKSOURCE_LSE", + "location": { + "column": "9", + "line": "484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RTCCLKSOURCE_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22435@macro@RCC_RTCCLKSOURCE_LSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RTCCLKSOURCE_LSI", + "location": { + "column": "9", + "line": "485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RTCCLKSOURCE_LSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22543@macro@RCC_RTCCLKSOURCE_HSE_DIV32", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RTCCLKSOURCE_HSE_DIV32", + "location": { + "column": "9", + "line": "486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RTCCLKSOURCE_HSE_DIV32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22739@macro@RCC_MCO1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1", + "location": { + "column": "9", + "line": "494", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22791@macro@RCC_MCO", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO", + "location": { + "column": "9", + "line": "495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@22995@macro@RCC_MCO1SOURCE_NOCLOCK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_NOCLOCK", + "location": { + "column": "9", + "line": "503", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_NOCLOCK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23121@macro@RCC_MCO1SOURCE_SYSCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_SYSCLK", + "location": { + "column": "9", + "line": "504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_SYSCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23240@macro@RCC_MCO1SOURCE_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_MSI", + "location": { + "column": "9", + "line": "505", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23356@macro@RCC_MCO1SOURCE_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_HSI", + "location": { + "column": "9", + "line": "506", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23472@macro@RCC_MCO1SOURCE_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_HSE", + "location": { + "column": "9", + "line": "507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23588@macro@RCC_MCO1SOURCE_PLLCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_PLLCLK", + "location": { + "column": "9", + "line": "508", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_PLLCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23707@macro@RCC_MCO1SOURCE_LSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_LSI", + "location": { + "column": "9", + "line": "509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_LSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23823@macro@RCC_MCO1SOURCE_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_LSE", + "location": { + "column": "9", + "line": "510", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@23988@macro@RCC_MCO1SOURCE_HSI48", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCO1SOURCE_HSI48", + "location": { + "column": "9", + "line": "512", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCO1SOURCE_HSI48", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24264@macro@RCC_MCODIV_1", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCODIV_1", + "location": { + "column": "9", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCODIV_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24354@macro@RCC_MCODIV_2", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCODIV_2", + "location": { + "column": "9", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCODIV_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24444@macro@RCC_MCODIV_4", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCODIV_4", + "location": { + "column": "9", + "line": "523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCODIV_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24534@macro@RCC_MCODIV_8", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCODIV_8", + "location": { + "column": "9", + "line": "524", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCODIV_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24624@macro@RCC_MCODIV_16", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_MCODIV_16", + "location": { + "column": "9", + "line": "525", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_MCODIV_16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24790@macro@RCC_IT_LSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_LSIRDY", + "location": { + "column": "9", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_LSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24885@macro@RCC_IT_LSERDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_LSERDY", + "location": { + "column": "9", + "line": "534", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_LSERDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@24980@macro@RCC_IT_MSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_MSIRDY", + "location": { + "column": "9", + "line": "535", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_MSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25075@macro@RCC_IT_HSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_HSIRDY", + "location": { + "column": "9", + "line": "536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_HSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25172@macro@RCC_IT_HSERDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_HSERDY", + "location": { + "column": "9", + "line": "537", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_HSERDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25267@macro@RCC_IT_PLLRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_PLLRDY", + "location": { + "column": "9", + "line": "538", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_PLLRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25396@macro@RCC_IT_PLLSAI1RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_PLLSAI1RDY", + "location": { + "column": "9", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_PLLSAI1RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25696@macro@RCC_IT_CSS", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_CSS", + "location": { + "column": "9", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_CSS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25802@macro@RCC_IT_LSECSS", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_LSECSS", + "location": { + "column": "9", + "line": "546", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_LSECSS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@25944@macro@RCC_IT_HSI48RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_IT_HSI48RDY", + "location": { + "column": "9", + "line": "548", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_IT_HSI48RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@26480@macro@RCC_FLAG_MSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_MSIRDY", + "location": { + "column": "9", + "line": "565", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_MSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@26586@macro@RCC_FLAG_HSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_HSIRDY", + "location": { + "column": "9", + "line": "566", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_HSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@26692@macro@RCC_FLAG_HSERDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_HSERDY", + "location": { + "column": "9", + "line": "567", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_HSERDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@26798@macro@RCC_FLAG_PLLRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_PLLRDY", + "location": { + "column": "9", + "line": "568", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_PLLRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@26938@macro@RCC_FLAG_PLLSAI1RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_PLLSAI1RDY", + "location": { + "column": "9", + "line": "570", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_PLLSAI1RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27304@macro@RCC_FLAG_LSERDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_LSERDY", + "location": { + "column": "9", + "line": "577", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_LSERDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27415@macro@RCC_FLAG_LSECSSD", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_LSECSSD", + "location": { + "column": "9", + "line": "578", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_LSECSSD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27587@macro@RCC_FLAG_LSIRDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_LSIRDY", + "location": { + "column": "9", + "line": "581", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_LSIRDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27698@macro@RCC_FLAG_FWRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_FWRST", + "location": { + "column": "9", + "line": "582", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_FWRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27814@macro@RCC_FLAG_OBLRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_OBLRST", + "location": { + "column": "9", + "line": "583", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_OBLRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@27940@macro@RCC_FLAG_PINRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_PINRST", + "location": { + "column": "9", + "line": "584", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_PINRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28051@macro@RCC_FLAG_BORRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_BORRST", + "location": { + "column": "9", + "line": "585", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_BORRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28162@macro@RCC_FLAG_SFTRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_SFTRST", + "location": { + "column": "9", + "line": "586", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_SFTRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28278@macro@RCC_FLAG_IWDGRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_IWDGRST", + "location": { + "column": "9", + "line": "587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_IWDGRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28406@macro@RCC_FLAG_WWDGRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_WWDGRST", + "location": { + "column": "9", + "line": "588", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_WWDGRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28529@macro@RCC_FLAG_LPWRRST", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_LPWRRST", + "location": { + "column": "9", + "line": "589", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_LPWRRST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28715@macro@RCC_FLAG_HSI48RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_HSI48RDY", + "location": { + "column": "9", + "line": "593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_HSI48RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@28950@macro@RCC_LSEDRIVE_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSEDRIVE_LOW", + "location": { + "column": "9", + "line": "602", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSEDRIVE_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@29045@macro@RCC_LSEDRIVE_MEDIUMLOW", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSEDRIVE_MEDIUMLOW", + "location": { + "column": "9", + "line": "603", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSEDRIVE_MEDIUMLOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@29147@macro@RCC_LSEDRIVE_MEDIUMHIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSEDRIVE_MEDIUMHIGH", + "location": { + "column": "9", + "line": "604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSEDRIVE_MEDIUMHIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@29250@macro@RCC_LSEDRIVE_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_LSEDRIVE_HIGH", + "location": { + "column": "9", + "line": "605", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_LSEDRIVE_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@29441@macro@RCC_STOP_WAKEUPCLOCK_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_STOP_WAKEUPCLOCK_MSI", + "location": { + "column": "9", + "line": "613", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_STOP_WAKEUPCLOCK_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@29549@macro@RCC_STOP_WAKEUPCLOCK_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_STOP_WAKEUPCLOCK_HSI", + "location": { + "column": "9", + "line": "614", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_STOP_WAKEUPCLOCK_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@30216@macro@__HAL_RCC_DMA1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_CLK_ENABLE", + "location": { + "column": "9", + "line": "637", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@30777@macro@__HAL_RCC_DMA2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_CLK_ENABLE", + "location": { + "column": "9", + "line": "645", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@31949@macro@__HAL_RCC_FLASH_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_CLK_ENABLE", + "location": { + "column": "9", + "line": "663", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@32512@macro@__HAL_RCC_CRC_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_CLK_ENABLE", + "location": { + "column": "9", + "line": "671", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@33071@macro@__HAL_RCC_TSC_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_CLK_ENABLE", + "location": { + "column": "9", + "line": "679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@34842@macro@__HAL_RCC_DMA1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_CLK_DISABLE", + "location": { + "column": "9", + "line": "708", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@34936@macro@__HAL_RCC_DMA2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_CLK_DISABLE", + "location": { + "column": "9", + "line": "710", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@35171@macro@__HAL_RCC_FLASH_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_CLK_DISABLE", + "location": { + "column": "9", + "line": "716", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@35266@macro@__HAL_RCC_CRC_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_CLK_DISABLE", + "location": { + "column": "9", + "line": "718", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@35359@macro@__HAL_RCC_TSC_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_CLK_DISABLE", + "location": { + "column": "9", + "line": "720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@36108@macro@__HAL_RCC_GPIOA_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_CLK_ENABLE", + "location": { + "column": "9", + "line": "742", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@36671@macro@__HAL_RCC_GPIOB_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_CLK_ENABLE", + "location": { + "column": "9", + "line": "750", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@37234@macro@__HAL_RCC_GPIOC_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_CLK_ENABLE", + "location": { + "column": "9", + "line": "758", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@37817@macro@__HAL_RCC_GPIOD_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_CLK_ENABLE", + "location": { + "column": "9", + "line": "767", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@38420@macro@__HAL_RCC_GPIOE_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_CLK_ENABLE", + "location": { + "column": "9", + "line": "777", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@40209@macro@__HAL_RCC_GPIOH_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_CLK_ENABLE", + "location": { + "column": "9", + "line": "806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@41988@macro@__HAL_RCC_ADC_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_CLK_ENABLE", + "location": { + "column": "9", + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@44936@macro@__HAL_RCC_RNG_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_CLK_ENABLE", + "location": { + "column": "9", + "line": "882", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@47377@macro@__HAL_RCC_GPIOA_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_CLK_DISABLE", + "location": { + "column": "9", + "line": "921", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@47472@macro@__HAL_RCC_GPIOB_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_CLK_DISABLE", + "location": { + "column": "9", + "line": "923", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@47567@macro@__HAL_RCC_GPIOC_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_CLK_DISABLE", + "location": { + "column": "9", + "line": "925", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@47682@macro@__HAL_RCC_GPIOD_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_CLK_DISABLE", + "location": { + "column": "9", + "line": "928", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@47817@macro@__HAL_RCC_GPIOE_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_CLK_DISABLE", + "location": { + "column": "9", + "line": "932", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@48202@macro@__HAL_RCC_GPIOH_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_CLK_DISABLE", + "location": { + "column": "9", + "line": "943", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@48578@macro@__HAL_RCC_ADC_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_CLK_DISABLE", + "location": { + "column": "9", + "line": "953", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@49194@macro@__HAL_RCC_RNG_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_CLK_DISABLE", + "location": { + "column": "9", + "line": "971", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@50762@macro@__HAL_RCC_QSPI_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_CLK_ENABLE", + "location": { + "column": "9", + "line": "1008", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@52726@macro@__HAL_RCC_QSPI_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_CLK_DISABLE", + "location": { + "column": "9", + "line": "1042", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@53496@macro@__HAL_RCC_TIM2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_CLK_ENABLE", + "location": { + "column": "9", + "line": "1065", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@55870@macro@__HAL_RCC_TIM6_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_CLK_ENABLE", + "location": { + "column": "9", + "line": "1103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@56454@macro@__HAL_RCC_TIM7_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_CLK_ENABLE", + "location": { + "column": "9", + "line": "1112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@57673@macro@__HAL_RCC_RTCAPB_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_CLK_ENABLE", + "location": { + "column": "9", + "line": "1132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@58278@macro@__HAL_RCC_WWDG_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_CLK_ENABLE", + "location": { + "column": "9", + "line": "1141", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@58862@macro@__HAL_RCC_SPI2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_CLK_ENABLE", + "location": { + "column": "9", + "line": "1150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@59465@macro@__HAL_RCC_SPI3_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_CLK_ENABLE", + "location": { + "column": "9", + "line": "1160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@60049@macro@__HAL_RCC_USART2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_CLK_ENABLE", + "location": { + "column": "9", + "line": "1169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@60639@macro@__HAL_RCC_USART3_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_CLK_ENABLE", + "location": { + "column": "9", + "line": "1178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@62443@macro@__HAL_RCC_I2C1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1207", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@63027@macro@__HAL_RCC_I2C2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_CLK_ENABLE", + "location": { + "column": "9", + "line": "1216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@63611@macro@__HAL_RCC_I2C3_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_CLK_ENABLE", + "location": { + "column": "9", + "line": "1225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@64797@macro@__HAL_RCC_CRS_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_CLK_ENABLE", + "location": { + "column": "9", + "line": "1244", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@65397@macro@__HAL_RCC_CAN1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1254", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@67187@macro@__HAL_RCC_PWR_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_CLK_ENABLE", + "location": { + "column": "9", + "line": "1283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@67769@macro@__HAL_RCC_DAC1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@68353@macro@__HAL_RCC_OPAMP_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_CLK_ENABLE", + "location": { + "column": "9", + "line": "1301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@68920@macro@__HAL_RCC_LPTIM1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@69489@macro@__HAL_RCC_LPUART1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@70081@macro@__HAL_RCC_SWPMI1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@70671@macro@__HAL_RCC_LPTIM2_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_CLK_ENABLE", + "location": { + "column": "9", + "line": "1335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@71242@macro@__HAL_RCC_TIM2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_CLK_DISABLE", + "location": { + "column": "9", + "line": "1344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@71740@macro@__HAL_RCC_TIM6_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_CLK_DISABLE", + "location": { + "column": "9", + "line": "1358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@71855@macro@__HAL_RCC_TIM7_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_CLK_DISABLE", + "location": { + "column": "9", + "line": "1361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@72138@macro@__HAL_RCC_RTCAPB_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_CLK_DISABLE", + "location": { + "column": "9", + "line": "1369", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@72292@macro@__HAL_RCC_SPI2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_CLK_DISABLE", + "location": { + "column": "9", + "line": "1373", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@72426@macro@__HAL_RCC_SPI3_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_CLK_DISABLE", + "location": { + "column": "9", + "line": "1377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@72541@macro@__HAL_RCC_USART2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_CLK_DISABLE", + "location": { + "column": "9", + "line": "1380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@72660@macro@__HAL_RCC_USART3_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_CLK_DISABLE", + "location": { + "column": "9", + "line": "1383", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@73053@macro@__HAL_RCC_I2C1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1394", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@73168@macro@__HAL_RCC_I2C2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_CLK_DISABLE", + "location": { + "column": "9", + "line": "1397", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@73283@macro@__HAL_RCC_I2C3_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_CLK_DISABLE", + "location": { + "column": "9", + "line": "1400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@73531@macro@__HAL_RCC_CRS_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_CLK_DISABLE", + "location": { + "column": "9", + "line": "1407", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@73664@macro@__HAL_RCC_CAN1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1411", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74047@macro@__HAL_RCC_PWR_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_CLK_DISABLE", + "location": { + "column": "9", + "line": "1422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74161@macro@__HAL_RCC_DAC1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74276@macro@__HAL_RCC_OPAMP_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_CLK_DISABLE", + "location": { + "column": "9", + "line": "1428", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74373@macro@__HAL_RCC_LPTIM1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1430", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74471@macro@__HAL_RCC_LPUART1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1432", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74591@macro@__HAL_RCC_SWPMI1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@74710@macro@__HAL_RCC_LPTIM2_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_CLK_DISABLE", + "location": { + "column": "9", + "line": "1438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@75180@macro@__HAL_RCC_SYSCFG_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_CLK_ENABLE", + "location": { + "column": "9", + "line": "1452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@75745@macro@__HAL_RCC_FIREWALL_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FIREWALL_CLK_ENABLE", + "location": { + "column": "9", + "line": "1460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FIREWALL_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@76356@macro@__HAL_RCC_SDMMC1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@76966@macro@__HAL_RCC_TIM1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@77527@macro@__HAL_RCC_SPI1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@78687@macro@__HAL_RCC_USART1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@79254@macro@__HAL_RCC_TIM15_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_CLK_ENABLE", + "location": { + "column": "9", + "line": "1513", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@79817@macro@__HAL_RCC_TIM16_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_CLK_ENABLE", + "location": { + "column": "9", + "line": "1521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@81002@macro@__HAL_RCC_SAI1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_CLK_ENABLE", + "location": { + "column": "9", + "line": "1540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_CLK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84000@macro@__HAL_RCC_SYSCFG_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_CLK_DISABLE", + "location": { + "column": "9", + "line": "1590", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84150@macro@__HAL_RCC_SDMMC1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84291@macro@__HAL_RCC_TIM1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1596", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84385@macro@__HAL_RCC_SPI1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1598", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84611@macro@__HAL_RCC_USART1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84707@macro@__HAL_RCC_TIM15_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_CLK_DISABLE", + "location": { + "column": "9", + "line": "1606", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@84802@macro@__HAL_RCC_TIM16_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_CLK_DISABLE", + "location": { + "column": "9", + "line": "1608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@85051@macro@__HAL_RCC_SAI1_CLK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_CLK_DISABLE", + "location": { + "column": "9", + "line": "1615", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_CLK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@86127@macro@__HAL_RCC_DMA1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@86228@macro@__HAL_RCC_DMA2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1648", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@86477@macro@__HAL_RCC_FLASH_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1654", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@86579@macro@__HAL_RCC_CRC_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1656", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@86679@macro@__HAL_RCC_TSC_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1658", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@87068@macro@__HAL_RCC_DMA1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1669", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@87169@macro@__HAL_RCC_DMA2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1671", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@87418@macro@__HAL_RCC_FLASH_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1677", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@87520@macro@__HAL_RCC_CRC_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@87620@macro@__HAL_RCC_TSC_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1681", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@88412@macro@__HAL_RCC_GPIOA_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1703", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@88514@macro@__HAL_RCC_GPIOB_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1705", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@88616@macro@__HAL_RCC_GPIOC_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1707", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@88738@macro@__HAL_RCC_GPIOD_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1710", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@88880@macro@__HAL_RCC_GPIOE_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1714", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@89286@macro@__HAL_RCC_GPIOH_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1725", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@89682@macro@__HAL_RCC_ADC_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1735", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@90332@macro@__HAL_RCC_RNG_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1753", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@90929@macro@__HAL_RCC_GPIOA_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@91031@macro@__HAL_RCC_GPIOB_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1770", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@91133@macro@__HAL_RCC_GPIOC_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@91255@macro@__HAL_RCC_GPIOD_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1775", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@91397@macro@__HAL_RCC_GPIOE_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1779", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@91803@macro@__HAL_RCC_GPIOH_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1790", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@92199@macro@__HAL_RCC_ADC_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1800", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@92849@macro@__HAL_RCC_RNG_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@94019@macro@__HAL_RCC_QSPI_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@94608@macro@__HAL_RCC_QSPI_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1865", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@95432@macro@__HAL_RCC_TIM2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1888", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@95958@macro@__HAL_RCC_TIM6_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96080@macro@__HAL_RCC_TIM7_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1905", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96376@macro@__HAL_RCC_RTCAPB_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1913", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96517@macro@__HAL_RCC_WWDG_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1916", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96639@macro@__HAL_RCC_SPI2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1919", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96780@macro@__HAL_RCC_SPI3_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1923", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@96902@macro@__HAL_RCC_USART2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1926", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@97028@macro@__HAL_RCC_USART3_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1929", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@97442@macro@__HAL_RCC_I2C1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1940", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@97564@macro@__HAL_RCC_I2C2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1943", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@97686@macro@__HAL_RCC_I2C3_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1946", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@97948@macro@__HAL_RCC_CRS_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1953", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98087@macro@__HAL_RCC_CAN1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1957", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98490@macro@__HAL_RCC_PWR_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1968", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98611@macro@__HAL_RCC_DAC1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1971", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98733@macro@__HAL_RCC_OPAMP_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1974", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98837@macro@__HAL_RCC_LPTIM1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1976", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@98942@macro@__HAL_RCC_LPUART1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1978", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@99069@macro@__HAL_RCC_SWPMI1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1981", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@99195@macro@__HAL_RCC_LPTIM2_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "1984", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@99302@macro@__HAL_RCC_TIM2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "1987", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@99828@macro@__HAL_RCC_TIM6_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2001", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@99950@macro@__HAL_RCC_TIM7_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2004", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100246@macro@__HAL_RCC_RTCAPB_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2012", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100387@macro@__HAL_RCC_WWDG_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2015", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100509@macro@__HAL_RCC_SPI2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2018", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100650@macro@__HAL_RCC_SPI3_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2022", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100772@macro@__HAL_RCC_USART2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2025", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@100898@macro@__HAL_RCC_USART3_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2028", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@101312@macro@__HAL_RCC_I2C1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2039", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@101434@macro@__HAL_RCC_I2C2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2042", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@101556@macro@__HAL_RCC_I2C3_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2045", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@101818@macro@__HAL_RCC_CRS_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2052", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@101957@macro@__HAL_RCC_CAN1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2056", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102360@macro@__HAL_RCC_PWR_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2067", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102481@macro@__HAL_RCC_DAC1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2070", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102603@macro@__HAL_RCC_OPAMP_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2073", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102707@macro@__HAL_RCC_LPTIM1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2075", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102812@macro@__HAL_RCC_LPUART1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2077", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@102939@macro@__HAL_RCC_SWPMI1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2080", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@103065@macro@__HAL_RCC_LPTIM2_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2083", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@103575@macro@__HAL_RCC_SYSCFG_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2097", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@103678@macro@__HAL_RCC_FIREWALL_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FIREWALL_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2099", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FIREWALL_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@103831@macro@__HAL_RCC_SDMMC1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@103979@macro@__HAL_RCC_TIM1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@104080@macro@__HAL_RCC_SPI1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2107", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@104320@macro@__HAL_RCC_USART1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@104423@macro@__HAL_RCC_TIM15_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@104525@macro@__HAL_RCC_TIM16_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2117", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@104788@macro@__HAL_RCC_SAI1_IS_CLK_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_IS_CLK_ENABLED", + "location": { + "column": "9", + "line": "2124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_IS_CLK_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@105485@macro@__HAL_RCC_SYSCFG_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2144", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@105642@macro@__HAL_RCC_SDMMC1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2147", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@105790@macro@__HAL_RCC_TIM1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@105891@macro@__HAL_RCC_SPI1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@106131@macro@__HAL_RCC_USART1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@106234@macro@__HAL_RCC_TIM15_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@106336@macro@__HAL_RCC_TIM16_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2162", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@106599@macro@__HAL_RCC_SAI1_IS_CLK_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_IS_CLK_DISABLED", + "location": { + "column": "9", + "line": "2169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_IS_CLK_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@107462@macro@__HAL_RCC_AHB1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB1_FORCE_RESET", + "location": { + "column": "9", + "line": "2196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@107551@macro@__HAL_RCC_DMA1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_FORCE_RESET", + "location": { + "column": "9", + "line": "2198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@107646@macro@__HAL_RCC_DMA2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_FORCE_RESET", + "location": { + "column": "9", + "line": "2200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@107883@macro@__HAL_RCC_FLASH_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_FORCE_RESET", + "location": { + "column": "9", + "line": "2206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@107979@macro@__HAL_RCC_CRC_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_FORCE_RESET", + "location": { + "column": "9", + "line": "2208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108073@macro@__HAL_RCC_TSC_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_FORCE_RESET", + "location": { + "column": "9", + "line": "2210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108444@macro@__HAL_RCC_AHB1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108533@macro@__HAL_RCC_DMA1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108630@macro@__HAL_RCC_DMA2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108871@macro@__HAL_RCC_FLASH_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_RELEASE_RESET", + "location": { + "column": "9", + "line": "2231", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@108969@macro@__HAL_RCC_CRC_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_RELEASE_RESET", + "location": { + "column": "9", + "line": "2233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@109065@macro@__HAL_RCC_TSC_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_RELEASE_RESET", + "location": { + "column": "9", + "line": "2235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@109608@macro@__HAL_RCC_AHB2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB2_FORCE_RESET", + "location": { + "column": "9", + "line": "2253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@109697@macro@__HAL_RCC_GPIOA_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_FORCE_RESET", + "location": { + "column": "9", + "line": "2255", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@109793@macro@__HAL_RCC_GPIOB_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_FORCE_RESET", + "location": { + "column": "9", + "line": "2257", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@109889@macro@__HAL_RCC_GPIOC_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_FORCE_RESET", + "location": { + "column": "9", + "line": "2259", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@110005@macro@__HAL_RCC_GPIOD_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_FORCE_RESET", + "location": { + "column": "9", + "line": "2262", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@110141@macro@__HAL_RCC_GPIOE_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_FORCE_RESET", + "location": { + "column": "9", + "line": "2266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@110529@macro@__HAL_RCC_GPIOH_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_FORCE_RESET", + "location": { + "column": "9", + "line": "2277", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@110907@macro@__HAL_RCC_ADC_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_FORCE_RESET", + "location": { + "column": "9", + "line": "2287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@111527@macro@__HAL_RCC_RNG_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_FORCE_RESET", + "location": { + "column": "9", + "line": "2305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112104@macro@__HAL_RCC_AHB2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112193@macro@__HAL_RCC_GPIOA_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_RELEASE_RESET", + "location": { + "column": "9", + "line": "2322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112291@macro@__HAL_RCC_GPIOB_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_RELEASE_RESET", + "location": { + "column": "9", + "line": "2324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112389@macro@__HAL_RCC_GPIOC_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_RELEASE_RESET", + "location": { + "column": "9", + "line": "2326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112507@macro@__HAL_RCC_GPIOD_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_RELEASE_RESET", + "location": { + "column": "9", + "line": "2329", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@112645@macro@__HAL_RCC_GPIOE_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_RELEASE_RESET", + "location": { + "column": "9", + "line": "2333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@113039@macro@__HAL_RCC_GPIOH_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_RELEASE_RESET", + "location": { + "column": "9", + "line": "2344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@113423@macro@__HAL_RCC_ADC_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_RELEASE_RESET", + "location": { + "column": "9", + "line": "2354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@114053@macro@__HAL_RCC_RNG_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_RELEASE_RESET", + "location": { + "column": "9", + "line": "2372", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@114804@macro@__HAL_RCC_AHB3_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB3_FORCE_RESET", + "location": { + "column": "9", + "line": "2394", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB3_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@115057@macro@__HAL_RCC_QSPI_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_FORCE_RESET", + "location": { + "column": "9", + "line": "2401", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@115458@macro@__HAL_RCC_AHB3_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_AHB3_RELEASE_RESET", + "location": { + "column": "9", + "line": "2412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_AHB3_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@115713@macro@__HAL_RCC_QSPI_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_RELEASE_RESET", + "location": { + "column": "9", + "line": "2419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@116288@macro@__HAL_RCC_APB1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_APB1_FORCE_RESET", + "location": { + "column": "9", + "line": "2438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_APB1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@116590@macro@__HAL_RCC_TIM2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_FORCE_RESET", + "location": { + "column": "9", + "line": "2443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117092@macro@__HAL_RCC_TIM6_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_FORCE_RESET", + "location": { + "column": "9", + "line": "2457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117208@macro@__HAL_RCC_TIM7_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_FORCE_RESET", + "location": { + "column": "9", + "line": "2460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117475@macro@__HAL_RCC_SPI2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_FORCE_RESET", + "location": { + "column": "9", + "line": "2468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117610@macro@__HAL_RCC_SPI3_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_FORCE_RESET", + "location": { + "column": "9", + "line": "2472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117726@macro@__HAL_RCC_USART2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_FORCE_RESET", + "location": { + "column": "9", + "line": "2475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@117846@macro@__HAL_RCC_USART3_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_FORCE_RESET", + "location": { + "column": "9", + "line": "2478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@118242@macro@__HAL_RCC_I2C1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_FORCE_RESET", + "location": { + "column": "9", + "line": "2489", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@118358@macro@__HAL_RCC_I2C2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_FORCE_RESET", + "location": { + "column": "9", + "line": "2492", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@118474@macro@__HAL_RCC_I2C3_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_FORCE_RESET", + "location": { + "column": "9", + "line": "2495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@118724@macro@__HAL_RCC_CRS_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_FORCE_RESET", + "location": { + "column": "9", + "line": "2502", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@118857@macro@__HAL_RCC_CAN1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_FORCE_RESET", + "location": { + "column": "9", + "line": "2506", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119242@macro@__HAL_RCC_PWR_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_FORCE_RESET", + "location": { + "column": "9", + "line": "2517", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119357@macro@__HAL_RCC_DAC1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_FORCE_RESET", + "location": { + "column": "9", + "line": "2520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119473@macro@__HAL_RCC_OPAMP_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_FORCE_RESET", + "location": { + "column": "9", + "line": "2523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119571@macro@__HAL_RCC_LPTIM1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_FORCE_RESET", + "location": { + "column": "9", + "line": "2525", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119670@macro@__HAL_RCC_LPUART1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_FORCE_RESET", + "location": { + "column": "9", + "line": "2527", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119791@macro@__HAL_RCC_SWPMI1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_FORCE_RESET", + "location": { + "column": "9", + "line": "2530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@119911@macro@__HAL_RCC_LPTIM2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_FORCE_RESET", + "location": { + "column": "9", + "line": "2533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@120012@macro@__HAL_RCC_APB1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_APB1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_APB1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@120314@macro@__HAL_RCC_TIM2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2541", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@120824@macro@__HAL_RCC_TIM6_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_RELEASE_RESET", + "location": { + "column": "9", + "line": "2555", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@120942@macro@__HAL_RCC_TIM7_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_RELEASE_RESET", + "location": { + "column": "9", + "line": "2558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@121213@macro@__HAL_RCC_SPI2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2566", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@121350@macro@__HAL_RCC_SPI3_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_RELEASE_RESET", + "location": { + "column": "9", + "line": "2570", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@121468@macro@__HAL_RCC_USART2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@121590@macro@__HAL_RCC_USART3_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_RELEASE_RESET", + "location": { + "column": "9", + "line": "2576", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@121992@macro@__HAL_RCC_I2C1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@122110@macro@__HAL_RCC_I2C2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2590", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@122228@macro@__HAL_RCC_I2C3_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_RELEASE_RESET", + "location": { + "column": "9", + "line": "2593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@122482@macro@__HAL_RCC_CRS_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_RELEASE_RESET", + "location": { + "column": "9", + "line": "2600", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@122617@macro@__HAL_RCC_CAN1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123008@macro@__HAL_RCC_PWR_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_RELEASE_RESET", + "location": { + "column": "9", + "line": "2615", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123125@macro@__HAL_RCC_DAC1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2618", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123243@macro@__HAL_RCC_OPAMP_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_RELEASE_RESET", + "location": { + "column": "9", + "line": "2621", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123343@macro@__HAL_RCC_LPTIM1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2623", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123444@macro@__HAL_RCC_LPUART1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2625", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123567@macro@__HAL_RCC_SWPMI1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2628", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123689@macro@__HAL_RCC_LPTIM2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2631", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@123958@macro@__HAL_RCC_APB2_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_APB2_FORCE_RESET", + "location": { + "column": "9", + "line": "2641", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_APB2_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124047@macro@__HAL_RCC_SYSCFG_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_FORCE_RESET", + "location": { + "column": "9", + "line": "2643", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124200@macro@__HAL_RCC_SDMMC1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_FORCE_RESET", + "location": { + "column": "9", + "line": "2646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124344@macro@__HAL_RCC_TIM1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_FORCE_RESET", + "location": { + "column": "9", + "line": "2649", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124439@macro@__HAL_RCC_SPI1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_FORCE_RESET", + "location": { + "column": "9", + "line": "2651", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124667@macro@__HAL_RCC_USART1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_FORCE_RESET", + "location": { + "column": "9", + "line": "2657", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124764@macro@__HAL_RCC_TIM15_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_FORCE_RESET", + "location": { + "column": "9", + "line": "2659", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@124860@macro@__HAL_RCC_TIM16_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_FORCE_RESET", + "location": { + "column": "9", + "line": "2661", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@125111@macro@__HAL_RCC_SAI1_FORCE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_FORCE_RESET", + "location": { + "column": "9", + "line": "2668", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_FORCE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@125778@macro@__HAL_RCC_APB2_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_APB2_RELEASE_RESET", + "location": { + "column": "9", + "line": "2688", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_APB2_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@125867@macro@__HAL_RCC_SYSCFG_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_RELEASE_RESET", + "location": { + "column": "9", + "line": "2690", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126022@macro@__HAL_RCC_SDMMC1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2693", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126168@macro@__HAL_RCC_TIM1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2696", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126265@macro@__HAL_RCC_SPI1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2698", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126497@macro@__HAL_RCC_USART1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126596@macro@__HAL_RCC_TIM15_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_RELEASE_RESET", + "location": { + "column": "9", + "line": "2706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126694@macro@__HAL_RCC_TIM16_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_RELEASE_RESET", + "location": { + "column": "9", + "line": "2708", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@126949@macro@__HAL_RCC_SAI1_RELEASE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_RELEASE_RESET", + "location": { + "column": "9", + "line": "2715", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_RELEASE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128116@macro@__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2747", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128214@macro@__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2749", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128457@macro@__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128556@macro@__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2757", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128655@macro@__HAL_RCC_CRC_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2759", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@128752@macro@__HAL_RCC_TSC_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129132@macro@__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129232@macro@__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129479@macro@__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2780", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129580@macro@__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2782", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129681@macro@__HAL_RCC_CRC_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2784", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@129780@macro@__HAL_RCC_TSC_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2786", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@130656@macro@__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2809", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@130755@macro@__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2811", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@130854@macro@__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2813", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@130973@macro@__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2816", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@131112@macro@__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2820", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@131509@macro@__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2831", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@131747@macro@__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@132136@macro@__HAL_RCC_ADC_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2847", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@132771@macro@__HAL_RCC_RNG_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2865", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@133364@macro@__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2880", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@133465@macro@__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2882", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@133566@macro@__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2884", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@133687@macro@__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2887", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@133828@macro@__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2891", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@134231@macro@__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@134473@macro@__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2908", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@134871@macro@__HAL_RCC_ADC_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2918", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@135516@macro@__HAL_RCC_RNG_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2936", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@136629@macro@__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "2964", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@137206@macro@__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "2980", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@138261@macro@__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3008", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@138775@macro@__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3022", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@138894@macro@__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3025", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139188@macro@__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3033", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139330@macro@__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3036", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139449@macro@__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3039", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139587@macro@__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3043", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139706@macro@__HAL_RCC_USART2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3046", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@139829@macro@__HAL_RCC_USART3_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3049", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@140234@macro@__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3060", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@140353@macro@__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3063", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@140472@macro@__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3066", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@140728@macro@__HAL_RCC_CRS_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3073", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@140864@macro@__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3077", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141258@macro@__HAL_RCC_PWR_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3088", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141376@macro@__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3091", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141495@macro@__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3094", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141596@macro@__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3096", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141698@macro@__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3098", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141822@macro@__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3101", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@141945@macro@__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@142049@macro@__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3107", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@142571@macro@__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3121", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@142692@macro@__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@142990@macro@__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@143134@macro@__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3135", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@143255@macro@__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3138", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@143395@macro@__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@143516@macro@__HAL_RCC_USART2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@143641@macro@__HAL_RCC_USART3_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@144052@macro@__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@144173@macro@__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3162", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@144294@macro@__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@144554@macro@__HAL_RCC_CRS_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@144692@macro@__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145092@macro@__HAL_RCC_PWR_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145212@macro@__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145333@macro@__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145436@macro@__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145540@macro@__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145666@macro@__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@145791@macro@__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@146387@macro@__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@146545@macro@__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@146694@macro@__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@146792@macro@__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@147026@macro@__HAL_RCC_USART1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3232", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@147126@macro@__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@147225@macro@__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@147482@macro@__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", + "location": { + "column": "9", + "line": "3243", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148164@macro@__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3263", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148324@macro@__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148475@macro@__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148575@macro@__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148813@macro@__HAL_RCC_USART1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3277", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@148915@macro@__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@149016@macro@__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@149277@macro@__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", + "location": { + "column": "9", + "line": "3288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@150492@macro@__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@150601@macro@__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@150866@macro@__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@150976@macro@__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3330", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@151086@macro@__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3332", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@151194@macro@__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@151607@macro@__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3345", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@151716@macro@__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3347", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@151982@macro@__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@152092@macro@__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3355", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@152202@macro@__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@152310@macro@__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@153246@macro@__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3382", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@153356@macro@__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@153466@macro@__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3386", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@153596@macro@__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3389", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@153746@macro@__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@154176@macro@__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3404", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@154436@macro@__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3410", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@154860@macro@__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@155550@macro@__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@156187@macro@__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@156297@macro@__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@156407@macro@__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@156537@macro@__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@156687@macro@__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3464", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@157117@macro@__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@157377@macro@__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3481", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@157801@macro@__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3491", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@158491@macro@__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@159673@macro@__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3537", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@160296@macro@__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3554", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@161420@macro@__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3582", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@161986@macro@__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3596", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@162118@macro@__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3599", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@162438@macro@__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3607", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@162593@macro@__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3610", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@162725@macro@__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3613", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@162876@macro@__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3617", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@163008@macro@__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3620", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@163144@macro@__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3623", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@163588@macro@__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3634", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@163720@macro@__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3637", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@163852@macro@__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3640", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@164134@macro@__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3647", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@164283@macro@__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3651", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@164716@macro@__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3662", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@164847@macro@__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3665", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@164979@macro@__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3668", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@165093@macro@__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3670", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@165208@macro@__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3672", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@165345@macro@__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3675", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@165481@macro@__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3678", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@165598@macro@__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3681", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@166164@macro@__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@166296@macro@__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3698", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@166616@macro@__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@166771@macro@__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3709", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@166903@macro@__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3712", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@167054@macro@__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3716", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@167186@macro@__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3719", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@167322@macro@__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@167766@macro@__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3733", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@167898@macro@__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3736", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@168030@macro@__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3739", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@168312@macro@__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3746", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@168461@macro@__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3750", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@168894@macro@__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169025@macro@__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3764", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169157@macro@__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3767", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169271@macro@__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3769", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169386@macro@__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3771", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169523@macro@__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@169659@macro@__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3777", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@170299@macro@__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3792", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@170470@macro@__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3795", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@170632@macro@__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3798", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@170743@macro@__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3800", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@171003@macro@__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@171116@macro@__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3808", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@171228@macro@__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3810", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@171511@macro@__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", + "location": { + "column": "9", + "line": "3817", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@172258@macro@__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@172429@macro@__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3840", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@172591@macro@__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3843", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@172702@macro@__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3845", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@172962@macro@__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3851", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@173075@macro@__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3853", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@173187@macro@__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3855", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@173470@macro@__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", + "location": { + "column": "9", + "line": "3862", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@174615@macro@__HAL_RCC_BACKUPRESET_FORCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_BACKUPRESET_FORCE", + "location": { + "column": "9", + "line": "3895", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_BACKUPRESET_FORCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@174693@macro@__HAL_RCC_BACKUPRESET_RELEASE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_BACKUPRESET_RELEASE", + "location": { + "column": "9", + "line": "3897", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_BACKUPRESET_RELEASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@175316@macro@__HAL_RCC_RTC_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTC_ENABLE", + "location": { + "column": "9", + "line": "3915", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTC_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@175393@macro@__HAL_RCC_RTC_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTC_DISABLE", + "location": { + "column": "9", + "line": "3917", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTC_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@176520@macro@__HAL_RCC_HSI_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSI_ENABLE", + "location": { + "column": "9", + "line": "3939", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSI_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@176586@macro@__HAL_RCC_HSI_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSI_DISABLE", + "location": { + "column": "9", + "line": "3941", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSI_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@177225@macro@__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", + "location": { + "column": "9", + "line": "3952", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@177766@macro@__HAL_RCC_HSIAUTOMATIC_START_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSIAUTOMATIC_START_ENABLE", + "location": { + "column": "9", + "line": "3962", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSIAUTOMATIC_START_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@177850@macro@__HAL_RCC_HSIAUTOMATIC_START_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSIAUTOMATIC_START_DISABLE", + "location": { + "column": "9", + "line": "3964", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSIAUTOMATIC_START_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@178432@macro@__HAL_RCC_HSISTOP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSISTOP_ENABLE", + "location": { + "column": "9", + "line": "3975", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSISTOP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@178508@macro@__HAL_RCC_HSISTOP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSISTOP_DISABLE", + "location": { + "column": "9", + "line": "3977", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSISTOP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@179593@macro@__HAL_RCC_MSI_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MSI_ENABLE", + "location": { + "column": "9", + "line": "3996", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MSI_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@179659@macro@__HAL_RCC_MSI_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MSI_DISABLE", + "location": { + "column": "9", + "line": "3998", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MSI_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@180307@macro@__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", + "location": { + "column": "9", + "line": "4010", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@182142@macro@__HAL_RCC_MSI_RANGE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MSI_RANGE_CONFIG", + "location": { + "column": "9", + "line": "4039", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MSI_RANGE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@183133@macro@__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", + "location": { + "column": "9", + "line": "4056", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@184331@macro@__HAL_RCC_GET_MSI_RANGE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_MSI_RANGE", + "location": { + "column": "9", + "line": "4075", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_MSI_RANGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@185130@macro@__HAL_RCC_LSI_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LSI_ENABLE", + "location": { + "column": "9", + "line": "4089", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LSI_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@185205@macro@__HAL_RCC_LSI_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LSI_DISABLE", + "location": { + "column": "9", + "line": "4091", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LSI_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@186789@macro@__HAL_RCC_HSE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSE_CONFIG", + "location": { + "column": "9", + "line": "4116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@189097@macro@__HAL_RCC_LSE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LSE_CONFIG", + "location": { + "column": "9", + "line": "4154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LSE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@190630@macro@__HAL_RCC_HSI48_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSI48_ENABLE", + "location": { + "column": "9", + "line": "4181", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSI48_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@190706@macro@__HAL_RCC_HSI48_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_HSI48_DISABLE", + "location": { + "column": "9", + "line": "4183", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_HSI48_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@192269@macro@__HAL_RCC_RTC_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_RTC_CONFIG", + "location": { + "column": "9", + "line": "4211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_RTC_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@192839@macro@__HAL_RCC_GET_RTC_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_RTC_SOURCE", + "location": { + "column": "10", + "line": "4222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_RTC_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@193372@macro@__HAL_RCC_PLL_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLL_ENABLE", + "location": { + "column": "9", + "line": "4232", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLL_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@193445@macro@__HAL_RCC_PLL_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLL_DISABLE", + "location": { + "column": "9", + "line": "4234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLL_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@194268@macro@__HAL_RCC_PLL_PLLSOURCE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLL_PLLSOURCE_CONFIG", + "location": { + "column": "9", + "line": "4248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLL_PLLSOURCE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@195091@macro@__HAL_RCC_PLL_PLLM_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLL_PLLM_CONFIG", + "location": { + "column": "9", + "line": "4262", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLL_PLLM_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@197753@macro@__HAL_RCC_PLL_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLL_CONFIG", + "location": { + "column": "9", + "line": "4306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLL_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@200620@macro@__HAL_RCC_GET_PLL_OSCSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_PLL_OSCSOURCE", + "location": { + "column": "9", + "line": "4352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_PLL_OSCSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@201767@macro@__HAL_RCC_PLLCLKOUT_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLLCLKOUT_ENABLE", + "location": { + "column": "9", + "line": "4368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLLCLKOUT_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@201865@macro@__HAL_RCC_PLLCLKOUT_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_PLLCLKOUT_DISABLE", + "location": { + "column": "9", + "line": "4370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_PLLCLKOUT_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@202769@macro@__HAL_RCC_GET_PLLCLKOUT_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_PLLCLKOUT_CONFIG", + "location": { + "column": "9", + "line": "4383", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_PLLCLKOUT_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@203442@macro@__HAL_RCC_SYSCLK_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_SYSCLK_CONFIG", + "location": { + "column": "9", + "line": "4395", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_SYSCLK_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@204058@macro@__HAL_RCC_GET_SYSCLK_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_SYSCLK_SOURCE", + "location": { + "column": "9", + "line": "4406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_SYSCLK_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@205027@macro@__HAL_RCC_LSEDRIVE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_LSEDRIVE_CONFIG", + "location": { + "column": "9", + "line": "4422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_LSEDRIVE_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@205568@macro@__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", + "location": { + "column": "9", + "line": "4433", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@207291@macro@__HAL_RCC_MCO1_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_MCO1_CONFIG", + "location": { + "column": "9", + "line": "4462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_MCO1_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@208718@macro@__HAL_RCC_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_ENABLE_IT", + "location": { + "column": "9", + "line": "4490", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@209889@macro@__HAL_RCC_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_DISABLE_IT", + "location": { + "column": "9", + "line": "4512", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@211144@macro@__HAL_RCC_CLEAR_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CLEAR_IT", + "location": { + "column": "9", + "line": "4535", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CLEAR_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@212438@macro@__HAL_RCC_GET_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_IT", + "location": { + "column": "9", + "line": "4558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@212800@macro@__HAL_RCC_CLEAR_RESET_FLAGS", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_CLEAR_RESET_FLAGS", + "location": { + "column": "9", + "line": "4565", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_CLEAR_RESET_FLAGS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@214550@macro@__HAL_RCC_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RCC_GET_FLAG", + "location": { + "column": "9", + "line": "4596", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "__HAL_RCC_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@215730@macro@CR_REG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "CR_REG_INDEX", + "location": { + "column": "9", + "line": "4621", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "CR_REG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@215768@macro@BDCR_REG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "BDCR_REG_INDEX", + "location": { + "column": "9", + "line": "4622", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "BDCR_REG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@215806@macro@CSR_REG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "CSR_REG_INDEX", + "location": { + "column": "9", + "line": "4623", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "CSR_REG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@215876@macro@CRRCR_REG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "CRRCR_REG_INDEX", + "location": { + "column": "9", + "line": "4625", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "CRRCR_REG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@215948@macro@RCC_FLAG_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_FLAG_MASK", + "location": { + "column": "9", + "line": "4628", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_FLAG_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216055@macro@RCC_OSCILLATORTYPE_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_OSCILLATORTYPE_ALL", + "location": { + "column": "9", + "line": "4632", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_OSCILLATORTYPE_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216584@macro@RCC_RESET_FLAG_OBL", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_OBL", + "location": { + "column": "9", + "line": "4640", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_OBL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216681@macro@RCC_RESET_FLAG_PIN", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_PIN", + "location": { + "column": "9", + "line": "4641", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_PIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216763@macro@RCC_RESET_FLAG_PWR", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_PWR", + "location": { + "column": "9", + "line": "4642", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_PWR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216856@macro@RCC_RESET_FLAG_SW", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_SW", + "location": { + "column": "9", + "line": "4643", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_SW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@216943@macro@RCC_RESET_FLAG_IWDG", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_IWDG", + "location": { + "column": "9", + "line": "4644", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_IWDG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@217042@macro@RCC_RESET_FLAG_WWDG", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_WWDG", + "location": { + "column": "9", + "line": "4645", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_WWDG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@217136@macro@RCC_RESET_FLAG_LPWR", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_LPWR", + "location": { + "column": "9", + "line": "4646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_LPWR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@217224@macro@RCC_RESET_FLAG_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_RESET_FLAG_ALL", + "location": { + "column": "9", + "line": "4647", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "RCC_RESET_FLAG_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@217675@macro@IS_RCC_OSCILLATORTYPE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_OSCILLATORTYPE", + "location": { + "column": "9", + "line": "4663", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_OSCILLATORTYPE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@217883@macro@IS_RCC_HSE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_HSE", + "location": { + "column": "9", + "line": "4666", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_HSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@218313@macro@IS_RCC_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_LSE", + "location": { + "column": "9", + "line": "4673", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@218502@macro@IS_RCC_HSI", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_HSI", + "location": { + "column": "9", + "line": "4677", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_HSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@218592@macro@IS_RCC_HSI_CALIBRATION_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_HSI_CALIBRATION_VALUE", + "location": { + "column": "9", + "line": "4679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_HSI_CALIBRATION_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@218705@macro@IS_RCC_LSI", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_LSI", + "location": { + "column": "9", + "line": "4681", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_LSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@218966@macro@IS_RCC_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MSI", + "location": { + "column": "9", + "line": "4687", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@219056@macro@IS_RCC_MSICALIBRATION_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MSICALIBRATION_VALUE", + "location": { + "column": "9", + "line": "4689", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MSICALIBRATION_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@219160@macro@IS_RCC_HSI48", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_HSI48", + "location": { + "column": "9", + "line": "4692", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_HSI48", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@219294@macro@IS_RCC_PLL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLL", + "location": { + "column": "9", + "line": "4695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@219445@macro@IS_RCC_PLLSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLSOURCE", + "location": { + "column": "9", + "line": "4698", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@219897@macro@IS_RCC_PLLM_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLM_VALUE", + "location": { + "column": "9", + "line": "4706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLM_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@220021@macro@IS_RCC_PLLN_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLN_VALUE", + "location": { + "column": "9", + "line": "4709", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLN_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@220147@macro@IS_RCC_PLLP_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLP_VALUE", + "location": { + "column": "9", + "line": "4712", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLP_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@220363@macro@IS_RCC_PLLQ_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLQ_VALUE", + "location": { + "column": "9", + "line": "4717", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLQ_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@220535@macro@IS_RCC_PLLR_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLR_VALUE", + "location": { + "column": "9", + "line": "4720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLR_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@220741@macro@IS_RCC_PLLSAI1CLOCKOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PLLSAI1CLOCKOUT_VALUE", + "location": { + "column": "9", + "line": "4724", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PLLSAI1CLOCKOUT_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@222666@macro@IS_RCC_MSI_CLOCK_RANGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MSI_CLOCK_RANGE", + "location": { + "column": "9", + "line": "4743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MSI_CLOCK_RANGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@223648@macro@IS_RCC_MSI_STANDBY_CLOCK_RANGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MSI_STANDBY_CLOCK_RANGE", + "location": { + "column": "9", + "line": "4756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MSI_STANDBY_CLOCK_RANGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@224005@macro@IS_RCC_CLOCKTYPE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_CLOCKTYPE", + "location": { + "column": "9", + "line": "4761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_CLOCKTYPE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@224085@macro@IS_RCC_SYSCLKSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_SYSCLKSOURCE", + "location": { + "column": "9", + "line": "4763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_SYSCLKSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@224430@macro@IS_RCC_HCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_HCLK", + "location": { + "column": "9", + "line": "4768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_HCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@224931@macro@IS_RCC_PCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_PCLK", + "location": { + "column": "9", + "line": "4774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_PCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@225197@macro@IS_RCC_RTCCLKSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_RTCCLKSOURCE", + "location": { + "column": "9", + "line": "4778", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_RTCCLKSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@225554@macro@IS_RCC_MCO", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MCO", + "location": { + "column": "9", + "line": "4783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MCO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@225643@macro@IS_RCC_MCO1SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MCO1SOURCE", + "location": { + "column": "9", + "line": "4786", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MCO1SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@227092@macro@IS_RCC_MCODIV", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_MCODIV", + "location": { + "column": "9", + "line": "4806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_MCODIV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@227351@macro@IS_RCC_LSE_DRIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_LSE_DRIVE", + "location": { + "column": "9", + "line": "4810", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_LSE_DRIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.h@227679@macro@IS_RCC_STOP_WAKEUPCLOCK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_RCC_STOP_WAKEUPCLOCK", + "location": { + "column": "9", + "line": "4815", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "IS_RCC_STOP_WAKEUPCLOCK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", + "location": { + "column": "19", + "line": "4835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", + "location": { + "column": "19", + "line": "4835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_OscConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "19", + "line": "4836", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_OscConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_OscConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "19", + "line": "4836", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_OscConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_ClockConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "4837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_ClockConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_ClockConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "4837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_ClockConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_MCOConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "4848", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_MCOConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_MCOConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "4848", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_MCOConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_EnableCSS", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_EnableCSS(void)", + "location": { + "column": "19", + "line": "4849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_EnableCSS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_EnableCSS", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_EnableCSS(void)", + "location": { + "column": "19", + "line": "4849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_EnableCSS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetSysClockFreq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", + "location": { + "column": "19", + "line": "4850", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetSysClockFreq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetSysClockFreq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", + "location": { + "column": "19", + "line": "4850", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetSysClockFreq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetHCLKFreq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", + "location": { + "column": "19", + "line": "4851", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetHCLKFreq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetHCLKFreq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", + "location": { + "column": "19", + "line": "4851", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetHCLKFreq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK1Freq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", + "location": { + "column": "19", + "line": "4852", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetPCLK1Freq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK1Freq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", + "location": { + "column": "19", + "line": "4852", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetPCLK1Freq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK2Freq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", + "location": { + "column": "19", + "line": "4853", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetPCLK2Freq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK2Freq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", + "location": { + "column": "19", + "line": "4853", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetPCLK2Freq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetOscConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "19", + "line": "4854", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetOscConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetOscConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "19", + "line": "4854", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetOscConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetClockConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", + "location": { + "column": "19", + "line": "4855", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetClockConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetClockConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", + "location": { + "column": "19", + "line": "4855", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetClockConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_NMI_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_NMI_IRQHandler(void)", + "location": { + "column": "19", + "line": "4857", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_NMI_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_NMI_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_NMI_IRQHandler(void)", + "location": { + "column": "19", + "line": "4857", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_NMI_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_CSSCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_CSSCallback(void)", + "location": { + "column": "19", + "line": "4859", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_CSSCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_CSSCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_RCC_CSSCallback(void)", + "location": { + "column": "19", + "line": "4859", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_CSSCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetResetSource", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetResetSource(void)", + "location": { + "column": "19", + "line": "4861", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetResetSource", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetResetSource", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_RCC_GetResetSource(void)", + "location": { + "column": "19", + "line": "4861", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + }, + "name": "HAL_RCC_GetResetSource", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@288@macro@__BUILTINS_INCLUDED", + "What": "MacroDef", + "defdec": "Def", + "display": "__BUILTINS_INCLUDED", + "location": { + "column": "9", + "line": "12", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__BUILTINS_INCLUDED", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@605@macro@__IEFF_HS", + "What": "MacroDef", + "defdec": "Def", + "display": "__IEFF_HS", + "location": { + "column": "9", + "line": "29", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__IEFF_HS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@683@macro@__IEFF_NE", + "What": "MacroDef", + "defdec": "Def", + "display": "__IEFF_NE", + "location": { + "column": "9", + "line": "30", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__IEFF_NE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_no_operation", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_no_operation(void)", + "location": { + "column": "22", + "line": "39", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_no_operation", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_disable_interrupt", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_disable_interrupt(void)", + "location": { + "column": "22", + "line": "41", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_disable_interrupt", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_enable_interrupt", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_enable_interrupt(void)", + "location": { + "column": "22", + "line": "42", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_enable_interrupt", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@T@__istate_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", + "line": "44", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__istate_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_interrupt_state", + "What": "Function", + "defdec": "Dec", + "display": "__istate_t __iar_builtin_get_interrupt_state(void)", + "location": { + "column": "25", + "line": "46", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_interrupt_state", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_interrupt_state", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_interrupt_state(__istate_t)", + "location": { + "column": "19", + "line": "47", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_interrupt_state", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_PSR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_PSR(void)", + "location": { + "column": "27", + "line": "50", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_PSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_IPSR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_IPSR(void)", + "location": { + "column": "27", + "line": "51", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_IPSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_MSP", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_MSP(void)", + "location": { + "column": "37", + "line": "52", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_MSP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_MSP", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_MSP(unsigned int)", + "location": { + "column": "27", + "line": "53", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_MSP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_PSP", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_PSP(void)", + "location": { + "column": "37", + "line": "54", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_PSP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_PSP", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_PSP(unsigned int)", + "location": { + "column": "27", + "line": "55", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_PSP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_PRIMASK", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_PRIMASK(void)", + "location": { + "column": "37", + "line": "56", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_PRIMASK", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_PRIMASK", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_PRIMASK(unsigned int)", + "location": { + "column": "27", + "line": "57", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_PRIMASK", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_CONTROL", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_CONTROL(void)", + "location": { + "column": "37", + "line": "58", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_CONTROL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_CONTROL", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_CONTROL(unsigned int)", + "location": { + "column": "27", + "line": "59", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_CONTROL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_FAULTMASK", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_FAULTMASK(void)", + "location": { + "column": "37", + "line": "62", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_FAULTMASK", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_FAULTMASK", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_FAULTMASK(unsigned int)", + "location": { + "column": "27", + "line": "63", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_FAULTMASK", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_BASEPRI", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_BASEPRI(void)", + "location": { + "column": "37", + "line": "64", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_BASEPRI", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_BASEPRI", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_BASEPRI(unsigned int)", + "location": { + "column": "27", + "line": "65", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_BASEPRI", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_disable_irq", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_disable_irq(void)", + "location": { + "column": "19", + "line": "68", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_disable_irq", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_enable_irq", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_enable_irq(void)", + "location": { + "column": "19", + "line": "69", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_enable_irq", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_disable_fiq", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_disable_fiq(void)", + "location": { + "column": "19", + "line": "71", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_disable_fiq", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_enable_fiq", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_enable_fiq(void)", + "location": { + "column": "19", + "line": "72", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_enable_fiq", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SWP", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SWP(unsigned int, volatile unsigned int *)", + "location": { + "column": "37", + "line": "77", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SWP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SWPB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned char __iar_builtin_SWPB(unsigned char, volatile unsigned char *)", + "location": { + "column": "38", + "line": "78", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SWPB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@T@__ul", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", + "line": "80", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__ul", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@T@__iar_builtin_uint", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", + "line": "81", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_uint", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@2813@macro@__cpid", + "What": "MacroDef", + "defdec": "Def", + "display": "__cpid", + "location": { + "column": "9", + "line": "83", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__cpid", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@2859@macro@__cpreg", + "What": "MacroDef", + "defdec": "Def", + "display": "__cpreg", + "location": { + "column": "9", + "line": "84", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__cpreg", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@2905@macro@__cpopcw", + "What": "MacroDef", + "defdec": "Def", + "display": "__cpopcw", + "location": { + "column": "9", + "line": "85", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__cpopcw", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@2951@macro@__cpopc", + "What": "MacroDef", + "defdec": "Def", + "display": "__cpopc", + "location": { + "column": "9", + "line": "86", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__cpopc", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CDP", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_CDP(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "29", + "line": "90", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CDP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CDP2", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_CDP2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "29", + "line": "91", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CDP2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MCR", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_MCR(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "94", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MCR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MRC", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_MRC(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "27", + "line": "96", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MRC", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MCR2", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_MCR2(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "98", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MCR2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MRC2", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_MRC2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "27", + "line": "100", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MRC2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MCRR", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_MCRR(unsigned int, unsigned int, unsigned long long, unsigned int)", + "location": { + "column": "19", + "line": "103", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MCRR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MCRR2", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_MCRR2(unsigned int, unsigned int, unsigned long long, unsigned int)", + "location": { + "column": "19", + "line": "104", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MCRR2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MRRC", + "What": "Function", + "defdec": "Dec", + "display": "unsigned long long __iar_builtin_MRRC(unsigned int, unsigned int, unsigned int)", + "location": { + "column": "33", + "line": "106", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MRRC", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_MRRC2", + "What": "Function", + "defdec": "Dec", + "display": "unsigned long long __iar_builtin_MRRC2(unsigned int, unsigned int, unsigned int)", + "location": { + "column": "33", + "line": "107", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_MRRC2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "110", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDCL", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDCL(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "111", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDCL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC2", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC2(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "112", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC2L", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC2L(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "113", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC2L", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC(unsigned int, unsigned int, volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "116", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STCL", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STCL(unsigned int, unsigned int, volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "117", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STCL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC2", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC2(unsigned int, unsigned int, volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "118", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC2L", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC2L(unsigned int, unsigned int, volatile __iar_builtin_uint *)", + "location": { + "column": "19", + "line": "119", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC2L", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "122", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDCL_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDCL_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "125", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDCL_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC2_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC2_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "128", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC2_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDC2L_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_LDC2L_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "131", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDC2L_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "135", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STCL_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STCL_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "138", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STCL_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC2_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC2_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "141", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC2_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STC2L_noidx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_STC2L_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", + "location": { + "column": "19", + "line": "144", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STC2L_noidx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:iccarm_builtin.h@6950@macro@__sys_reg", + "What": "MacroDef", + "defdec": "Def", + "display": "__sys_reg", + "location": { + "column": "9", + "line": "147", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__sys_reg", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_rsr", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_rsr(const char *)", + "location": { + "column": "33", + "line": "150", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_rsr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_rsr64", + "What": "Function", + "defdec": "Dec", + "display": "unsigned long long __iar_builtin_rsr64(const char *)", + "location": { + "column": "33", + "line": "151", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_rsr64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_rsrp", + "What": "Function", + "defdec": "Dec", + "display": "void * __iar_builtin_rsrp(const char *)", + "location": { + "column": "33", + "line": "152", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_rsrp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_wsr", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_wsr(const char *, unsigned int)", + "location": { + "column": "19", + "line": "155", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_wsr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_wsr64", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_wsr64(const char *, unsigned long long)", + "location": { + "column": "19", + "line": "156", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_wsr64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_wsrp", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_wsrp(const char *, const void *)", + "location": { + "column": "19", + "line": "157", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_wsrp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_APSR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_APSR(void)", + "location": { + "column": "27", + "line": "160", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_APSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_APSR", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_APSR(unsigned int)", + "location": { + "column": "27", + "line": "161", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_APSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_CPSR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_CPSR(void)", + "location": { + "column": "27", + "line": "164", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_CPSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_CPSR", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_CPSR(unsigned int)", + "location": { + "column": "27", + "line": "165", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_CPSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_FPSCR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_FPSCR(void)", + "location": { + "column": "27", + "line": "168", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_FPSCR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_FPSCR", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_FPSCR(unsigned int)", + "location": { + "column": "19", + "line": "169", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_FPSCR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CLZ", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CLZ(unsigned int)", + "location": { + "column": "37", + "line": "173", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CLZ", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_ROR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_ROR(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "174", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_ROR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_RRX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_RRX(unsigned int)", + "location": { + "column": "27", + "line": "175", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_RRX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QADD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QADD(int, int)", + "location": { + "column": "35", + "line": "178", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QADD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QDADD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QDADD(int, int)", + "location": { + "column": "35", + "line": "179", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QDADD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QSUB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QSUB(int, int)", + "location": { + "column": "35", + "line": "180", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QSUB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QDSUB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QDSUB(int, int)", + "location": { + "column": "35", + "line": "181", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QDSUB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QDOUBLE", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QDOUBLE(int)", + "location": { + "column": "35", + "line": "182", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QDOUBLE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QFlag", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QFlag(void)", + "location": { + "column": "35", + "line": "183", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QFlag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_acle_QFlag", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_acle_QFlag(void)", + "location": { + "column": "30", + "line": "184", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_acle_QFlag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_QFlag", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_QFlag(int)", + "location": { + "column": "30", + "line": "185", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_QFlag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_ignore_QFlag", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_ignore_QFlag(void)", + "location": { + "column": "30", + "line": "186", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_ignore_QFlag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QCFlag", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_QCFlag(void)", + "location": { + "column": "36", + "line": "188", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QCFlag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_reset_QC_flag", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_reset_QC_flag(void)", + "location": { + "column": "29", + "line": "189", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_reset_QC_flag", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMUL", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMUL(short, short)", + "location": { + "column": "35", + "line": "191", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMUL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_REV", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_REV(unsigned int)", + "location": { + "column": "37", + "line": "194", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_REV", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_REVSH", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_REVSH(short)", + "location": { + "column": "35", + "line": "195", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_REVSH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_REV16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_REV16(unsigned int)", + "location": { + "column": "37", + "line": "197", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_REV16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_RBIT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_RBIT(unsigned int)", + "location": { + "column": "37", + "line": "198", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_RBIT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDREXB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned char __iar_builtin_LDREXB(const volatile unsigned char *)", + "location": { + "column": "29", + "line": "200", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDREXB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDREXH", + "What": "Function", + "defdec": "Dec", + "display": "unsigned short __iar_builtin_LDREXH(const volatile unsigned short *)", + "location": { + "column": "29", + "line": "201", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDREXH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDREX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_LDREX(const volatile unsigned int *)", + "location": { + "column": "28", + "line": "202", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDREX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_LDREXD", + "What": "Function", + "defdec": "Dec", + "display": "unsigned long long __iar_builtin_LDREXD(const volatile unsigned long long *)", + "location": { + "column": "33", + "line": "203", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_LDREXD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STREXB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_STREXB(unsigned char, volatile unsigned char *)", + "location": { + "column": "28", + "line": "205", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STREXB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STREXH", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_STREXH(unsigned short, volatile unsigned short *)", + "location": { + "column": "28", + "line": "206", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STREXH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STREX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_STREX(unsigned int, volatile unsigned int *)", + "location": { + "column": "28", + "line": "207", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STREX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_STREXD", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_STREXD(unsigned long long, volatile unsigned long long *)", + "location": { + "column": "28", + "line": "208", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_STREXD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CLREX", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_CLREX(void)", + "location": { + "column": "19", + "line": "210", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CLREX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SEV", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_SEV(void)", + "location": { + "column": "19", + "line": "212", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SEV", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_WFE", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_WFE(void)", + "location": { + "column": "19", + "line": "213", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_WFE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_WFI", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_WFI(void)", + "location": { + "column": "19", + "line": "214", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_WFI", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_YIELD", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_YIELD(void)", + "location": { + "column": "19", + "line": "215", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_YIELD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PLI", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_PLI(const volatile void *)", + "location": { + "column": "19", + "line": "217", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PLI", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PLD", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_PLD(const volatile void *)", + "location": { + "column": "19", + "line": "218", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PLD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PLIx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_PLIx(const volatile void *, unsigned int, unsigned int)", + "location": { + "column": "19", + "line": "220", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PLIx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PLDx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_PLDx(const volatile void *, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "19", + "line": "221", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PLDx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PLDW", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_PLDW(const volatile void *)", + "location": { + "column": "19", + "line": "222", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PLDW", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSAT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SSAT(int, unsigned int)", + "location": { + "column": "37", + "line": "224", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSAT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USAT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USAT(int, unsigned int)", + "location": { + "column": "37", + "line": "225", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USAT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SEL", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SEL(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "228", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SEL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "230", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "231", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SSUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "232", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SSUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "233", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "234", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SSUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "235", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "237", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "238", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHSUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHSUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "239", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHSUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHSUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHSUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "240", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHSUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "241", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHSUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHSUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "242", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHSUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "244", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "245", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QSUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QSUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "246", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QSUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QSUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QSUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "247", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QSUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "248", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QSUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QSUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "249", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QSUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "251", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "252", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "253", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "254", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "255", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "256", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "258", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "259", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHSUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHSUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "260", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHSUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHSUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHSUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "261", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHSUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "262", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHSUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHSUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "263", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHSUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQADD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQADD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "265", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQADD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQADD16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQADD16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "266", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQADD16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQSUB8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQSUB8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "267", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQSUB8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQSUB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQSUB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "268", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQSUB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQADDSUBX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQADDSUBX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "269", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQADDSUBX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQSUBADDX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQSUBADDX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "270", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQSUBADDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USAD8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USAD8(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "272", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USAD8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USADA8", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USADA8(unsigned int, unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "273", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USADA8", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSAT16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SSAT16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "276", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSAT16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USAT16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USAT16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "278", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USAT16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMUAD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMUAD(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "281", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMUAD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMUSD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMUSD(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "282", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMUSD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMUADX", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMUADX(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "283", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMUADX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMUSDX", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMUSDX(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "284", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMUSDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLAD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLAD(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "286", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLAD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLSD", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLSD(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "287", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLSD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLADX", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLADX(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "288", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLADX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLSDX", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLSDX(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "289", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLSDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALD", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALD(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "291", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALDX", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALDX(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "295", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLSLD", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLSLD(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "299", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLSLD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLSLDX", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLSLDX(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "303", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLSLDX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PKHBT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_PKHBT(unsigned int, unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "307", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PKHBT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_PKHTB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_PKHTB(unsigned int, unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "310", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_PKHTB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLABB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLABB(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "314", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLABB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLABT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLABT(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "315", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLABT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLATB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLATB(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "316", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLATB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLATT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLATT(unsigned int, unsigned int, int)", + "location": { + "column": "28", + "line": "317", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLATT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLAWB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLAWB(int, unsigned int, int)", + "location": { + "column": "28", + "line": "319", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLAWB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLAWT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMLAWT(int, unsigned int, int)", + "location": { + "column": "28", + "line": "320", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLAWT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMLA", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMLA(int, int, int)", + "location": { + "column": "28", + "line": "322", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMLA", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMLAR", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMLAR(int, int, int)", + "location": { + "column": "28", + "line": "323", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMLAR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMLS", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMLS(int, int, int)", + "location": { + "column": "28", + "line": "324", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMLS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMLSR", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMLSR(int, int, int)", + "location": { + "column": "28", + "line": "325", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMLSR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMUL", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMUL(int, int)", + "location": { + "column": "28", + "line": "327", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMUL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMMULR", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMMULR(int, int)", + "location": { + "column": "28", + "line": "328", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMMULR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULBB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULBB(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "330", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULBB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULBT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULBT(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "331", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULBT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULTB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULTB(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "332", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULTB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULTT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULTT(unsigned int, unsigned int)", + "location": { + "column": "28", + "line": "333", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULTT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULWB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULWB(int, unsigned int)", + "location": { + "column": "28", + "line": "335", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULWB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMULWT", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SMULWT(int, unsigned int)", + "location": { + "column": "28", + "line": "336", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMULWT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SXTAB", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SXTAB(int, unsigned int)", + "location": { + "column": "28", + "line": "338", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SXTAB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SXTAH", + "What": "Function", + "defdec": "Dec", + "display": "int __iar_builtin_SXTAH(int, unsigned int)", + "location": { + "column": "28", + "line": "339", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SXTAH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UXTAB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UXTAB(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "340", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UXTAB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UXTAH", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UXTAH(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "341", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UXTAH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UMAAL", + "What": "Function", + "defdec": "Dec", + "display": "unsigned long long __iar_builtin_UMAAL(unsigned int, unsigned int, unsigned int, unsigned int)", + "location": { + "column": "43", + "line": "343", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UMAAL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALBB", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALBB(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "348", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALBB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALBT", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALBT(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "352", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALBT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALTB", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALTB(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "356", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALTB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SMLALTT", + "What": "Function", + "defdec": "Dec", + "display": "long long __iar_builtin_SMLALTT(unsigned int, unsigned int, long long)", + "location": { + "column": "34", + "line": "360", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SMLALTT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UXTB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UXTB16(unsigned int)", + "location": { + "column": "37", + "line": "364", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UXTB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UXTAB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UXTAB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "365", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UXTAB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SXTB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SXTB16(unsigned int)", + "location": { + "column": "37", + "line": "367", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SXTB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SXTAB16", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SXTAB16(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "368", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SXTAB16", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "370", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SSAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SSAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "371", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SSAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "372", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_SHSAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_SHSAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "373", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_SHSAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "374", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_QSAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_QSAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "375", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_QSAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "377", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_USAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_USAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "378", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_USAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "379", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UHSAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UHSAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "380", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UHSAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQASX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQASX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "381", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQASX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_UQSAX", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_UQSAX(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "382", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_UQSAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_DMB", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_DMB(void)", + "location": { + "column": "19", + "line": "385", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_DMB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_DSB", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_DSB(void)", + "location": { + "column": "19", + "line": "386", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_DSB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_ISB", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_ISB(void)", + "location": { + "column": "19", + "line": "387", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_ISB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_DMBx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_DMBx(unsigned int)", + "location": { + "column": "19", + "line": "388", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_DMBx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_DSBx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_DSBx(unsigned int)", + "location": { + "column": "19", + "line": "389", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_DSBx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_ISBx", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_ISBx(unsigned int)", + "location": { + "column": "19", + "line": "390", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_ISBx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_TT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_TT(unsigned int)", + "location": { + "column": "27", + "line": "393", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_TT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_TTT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_TTT(unsigned int)", + "location": { + "column": "27", + "line": "394", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_TTT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_TTA", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_TTA(unsigned int)", + "location": { + "column": "27", + "line": "395", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_TTA", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_TTAT", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_TTAT(unsigned int)", + "location": { + "column": "27", + "line": "396", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_TTAT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_get_SB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_get_SB(void)", + "location": { + "column": "27", + "line": "398", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_get_SB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_set_SB", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_builtin_set_SB(unsigned int)", + "location": { + "column": "19", + "line": "399", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_set_SB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__get_LR", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __get_LR(void)", + "location": { + "column": "27", + "line": "401", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__get_LR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__set_LR", + "What": "Function", + "defdec": "Dec", + "display": "void __set_LR(unsigned int)", + "location": { + "column": "19", + "line": "402", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__set_LR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__get_SP", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __get_SP(void)", + "location": { + "column": "27", + "line": "404", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__get_SP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__set_SP", + "What": "Function", + "defdec": "Dec", + "display": "void __set_SP(unsigned int)", + "location": { + "column": "19", + "line": "405", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__set_SP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VSQRT_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VSQRT_F32(float)", + "location": { + "column": "30", + "line": "408", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VSQRT_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VSQRT_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VSQRT_F64(double)", + "location": { + "column": "31", + "line": "409", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VSQRT_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFMA_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VFMA_F32(float, float, float)", + "location": { + "column": "30", + "line": "412", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFMA_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFMS_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VFMS_F32(float, float, float)", + "location": { + "column": "30", + "line": "413", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFMS_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFNMA_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VFNMA_F32(float, float, float)", + "location": { + "column": "30", + "line": "414", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFNMA_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFNMS_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VFNMS_F32(float, float, float)", + "location": { + "column": "30", + "line": "415", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFNMS_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFMA_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VFMA_F64(double, double, double)", + "location": { + "column": "31", + "line": "416", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFMA_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFMS_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VFMS_F64(double, double, double)", + "location": { + "column": "31", + "line": "417", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFMS_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFNMA_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VFNMA_F64(double, double, double)", + "location": { + "column": "31", + "line": "418", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFNMA_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VFNMS_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VFNMS_F64(double, double, double)", + "location": { + "column": "31", + "line": "419", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VFNMS_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32B", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32B(unsigned int, unsigned char)", + "location": { + "column": "37", + "line": "422", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32B", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32H", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32H(unsigned int, unsigned short)", + "location": { + "column": "37", + "line": "423", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32H", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32W", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32W(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "424", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32W", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32CB", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32CB(unsigned int, unsigned char)", + "location": { + "column": "37", + "line": "425", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32CB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32CH", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32CH(unsigned int, unsigned short)", + "location": { + "column": "37", + "line": "426", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32CH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_CRC32CW", + "What": "Function", + "defdec": "Dec", + "display": "unsigned int __iar_builtin_CRC32CW(unsigned int, unsigned int)", + "location": { + "column": "37", + "line": "427", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_CRC32CW", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VMAXNM_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VMAXNM_F32(float, float)", + "location": { + "column": "30", + "line": "430", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VMAXNM_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VMINNM_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VMINNM_F32(float, float)", + "location": { + "column": "30", + "line": "431", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VMINNM_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VMAXNM_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VMAXNM_F64(double, double)", + "location": { + "column": "31", + "line": "432", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VMAXNM_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VMINNM_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VMINNM_F64(double, double)", + "location": { + "column": "31", + "line": "433", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VMINNM_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTA_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTA_F32(float)", + "location": { + "column": "30", + "line": "436", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTA_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTM_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTM_F32(float)", + "location": { + "column": "30", + "line": "437", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTM_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTN_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTN_F32(float)", + "location": { + "column": "30", + "line": "438", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTN_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTP_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTP_F32(float)", + "location": { + "column": "30", + "line": "439", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTP_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTX_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTX_F32(float)", + "location": { + "column": "30", + "line": "440", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTX_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTR_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTR_F32(float)", + "location": { + "column": "30", + "line": "441", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTR_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTZ_F32", + "What": "Function", + "defdec": "Dec", + "display": "float __iar_builtin_VRINTZ_F32(float)", + "location": { + "column": "30", + "line": "442", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTZ_F32", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTA_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTA_F64(double)", + "location": { + "column": "31", + "line": "443", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTA_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTM_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTM_F64(double)", + "location": { + "column": "31", + "line": "444", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTM_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTN_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTN_F64(double)", + "location": { + "column": "31", + "line": "445", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTN_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTP_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTP_F64(double)", + "location": { + "column": "31", + "line": "446", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTP_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTX_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTX_F64(double)", + "location": { + "column": "31", + "line": "447", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTX_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTR_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTR_F64(double)", + "location": { + "column": "31", + "line": "448", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTR_F64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_builtin_VRINTZ_F64", + "What": "Function", + "defdec": "Dec", + "display": "double __iar_builtin_VRINTZ_F64(double)", + "location": { + "column": "31", + "line": "449", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" + }, + "name": "__iar_builtin_VRINTZ_F64", + "origin": "system_include", + "scope": null + }, { "ID": "c:stm32l4xx_ll_adc.h@798@macro@STM32L4xx_LL_ADC_H", "What": "MacroDef", @@ -226543,1308 +218751,6 @@ "origin": "user_include", "scope": null }, - { - "ID": "c:stdint.h@101@macro@_STDINT", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDINT", - "location": { - "column": "9", - "line": "4", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "_STDINT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "36", - "line": "19", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "35", - "line": "20", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "36", - "line": "24", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "35", - "line": "25", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "29", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "30", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "34", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "35", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "36", - "line": "40", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "35", - "line": "41", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "36", - "line": "43", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "35", - "line": "44", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "46", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "47", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "51", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "54", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast8_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "60", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "61", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast16_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "63", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "64", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "66", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "67", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "70", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "73", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@intmax_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "77", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "intmax_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uintmax_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "78", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uintmax_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "82", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "83", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@2658@macro@__DATA_PTR_MEM_HELPER1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__DATA_PTR_MEM_HELPER1__", - "location": { - "column": "9", - "line": "86", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "__DATA_PTR_MEM_HELPER1__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@__data_intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "1", - "line": "89", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "__data_intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@__data_uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "1", - "line": "89", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "__data_uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@2962@macro@INT8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_MAX", - "location": { - "column": "11", - "line": "94", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3006@macro@INT8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_MIN", - "location": { - "column": "11", - "line": "95", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3050@macro@UINT8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT8_MAX", - "location": { - "column": "11", - "line": "96", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3129@macro@INT16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_MAX", - "location": { - "column": "11", - "line": "100", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3174@macro@INT16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_MIN", - "location": { - "column": "11", - "line": "101", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3219@macro@UINT16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT16_MAX", - "location": { - "column": "11", - "line": "102", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3299@macro@INT32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_MAX", - "location": { - "column": "11", - "line": "106", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3344@macro@INT32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_MIN", - "location": { - "column": "11", - "line": "107", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3389@macro@UINT32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT32_MAX", - "location": { - "column": "11", - "line": "108", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3469@macro@INT64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_MAX", - "location": { - "column": "11", - "line": "112", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3514@macro@INT64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_MIN", - "location": { - "column": "11", - "line": "113", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3559@macro@UINT64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT64_MAX", - "location": { - "column": "11", - "line": "114", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3612@macro@INT_LEAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST8_MAX", - "location": { - "column": "9", - "line": "117", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3662@macro@INT_LEAST8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST8_MIN", - "location": { - "column": "9", - "line": "118", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3712@macro@UINT_LEAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST8_MAX", - "location": { - "column": "9", - "line": "119", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3764@macro@INT_LEAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST16_MAX", - "location": { - "column": "9", - "line": "121", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3815@macro@INT_LEAST16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST16_MIN", - "location": { - "column": "9", - "line": "122", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3866@macro@UINT_LEAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST16_MAX", - "location": { - "column": "9", - "line": "123", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3919@macro@INT_LEAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST32_MAX", - "location": { - "column": "9", - "line": "125", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3970@macro@INT_LEAST32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST32_MIN", - "location": { - "column": "9", - "line": "126", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4021@macro@UINT_LEAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST32_MAX", - "location": { - "column": "9", - "line": "127", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4107@macro@INT_LEAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST64_MAX", - "location": { - "column": "11", - "line": "130", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4158@macro@INT_LEAST64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST64_MIN", - "location": { - "column": "11", - "line": "131", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4251@macro@UINT_LEAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST64_MAX", - "location": { - "column": "11", - "line": "135", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4310@macro@INT_FAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST8_MAX", - "location": { - "column": "9", - "line": "138", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4359@macro@INT_FAST8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST8_MIN", - "location": { - "column": "9", - "line": "139", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4408@macro@UINT_FAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST8_MAX", - "location": { - "column": "9", - "line": "140", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4459@macro@INT_FAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST16_MAX", - "location": { - "column": "9", - "line": "142", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4509@macro@INT_FAST16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST16_MIN", - "location": { - "column": "9", - "line": "143", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4559@macro@UINT_FAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST16_MAX", - "location": { - "column": "9", - "line": "144", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4611@macro@INT_FAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST32_MAX", - "location": { - "column": "9", - "line": "146", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4661@macro@INT_FAST32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST32_MIN", - "location": { - "column": "9", - "line": "147", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4711@macro@UINT_FAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST32_MAX", - "location": { - "column": "9", - "line": "148", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4795@macro@INT_FAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST64_MAX", - "location": { - "column": "11", - "line": "151", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4845@macro@INT_FAST64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST64_MIN", - "location": { - "column": "11", - "line": "152", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4936@macro@UINT_FAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST64_MAX", - "location": { - "column": "11", - "line": "156", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4994@macro@INTMAX_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_MAX", - "location": { - "column": "9", - "line": "159", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5040@macro@INTMAX_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_MIN", - "location": { - "column": "9", - "line": "160", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5086@macro@UINTMAX_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTMAX_MAX", - "location": { - "column": "9", - "line": "161", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTMAX_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5134@macro@SIZE_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "SIZE_MAX", - "location": { - "column": "9", - "line": "163", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "SIZE_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5179@macro@PTRDIFF_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "PTRDIFF_MAX", - "location": { - "column": "9", - "line": "165", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "PTRDIFF_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5225@macro@PTRDIFF_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "PTRDIFF_MIN", - "location": { - "column": "9", - "line": "166", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "PTRDIFF_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5273@macro@INTPTR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INTPTR_MAX", - "location": { - "column": "9", - "line": "168", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INTPTR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5319@macro@INTPTR_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INTPTR_MIN", - "location": { - "column": "9", - "line": "169", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INTPTR_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5365@macro@UINTPTR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTPTR_MAX", - "location": { - "column": "9", - "line": "170", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTPTR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5413@macro@WCHAR_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "WCHAR_MIN", - "location": { - "column": "9", - "line": "172", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "WCHAR_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5448@macro@WCHAR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "WCHAR_MAX", - "location": { - "column": "9", - "line": "173", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "WCHAR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5485@macro@WINT_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "WINT_MIN", - "location": { - "column": "9", - "line": "175", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "WINT_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5520@macro@WINT_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "WINT_MAX", - "location": { - "column": "9", - "line": "176", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "WINT_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5557@macro@SIG_ATOMIC_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "SIG_ATOMIC_MIN", - "location": { - "column": "9", - "line": "178", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "SIG_ATOMIC_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5605@macro@SIG_ATOMIC_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "SIG_ATOMIC_MAX", - "location": { - "column": "9", - "line": "179", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "SIG_ATOMIC_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5729@macro@INT8_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_C", - "location": { - "column": "11", - "line": "184", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5779@macro@UINT8_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT8_C", - "location": { - "column": "11", - "line": "185", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT8_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5865@macro@INT16_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_C", - "location": { - "column": "11", - "line": "189", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5916@macro@UINT16_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT16_C", - "location": { - "column": "11", - "line": "190", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT16_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6003@macro@INT32_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_C", - "location": { - "column": "11", - "line": "194", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6054@macro@UINT32_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT32_C", - "location": { - "column": "11", - "line": "195", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT32_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6147@macro@INT64_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_C", - "location": { - "column": "11", - "line": "199", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6240@macro@UINT64_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT64_C", - "location": { - "column": "11", - "line": "203", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT64_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6300@macro@INTMAX_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_C", - "location": { - "column": "9", - "line": "206", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6352@macro@UINTMAX_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTMAX_C", - "location": { - "column": "9", - "line": "207", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTMAX_C", - "origin": "system_include", - "scope": null - }, { "ID": "c:stm32_hal_legacy.h@902@macro@STM32_HAL_LEGACY", "What": "MacroDef", @@ -257078,1618 +247984,11688 @@ "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@804@macro@STM32L4xx_HAL_EXTI_H", + "ID": "c:core_cm4.h@1249@macro@__CORE_CM4_H_GENERIC", "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_EXTI_H", + "display": "__CORE_CM4_H_GENERIC", "location": { "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "32", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "STM32L4xx_HAL_EXTI_H", + "name": "__CORE_CM4_H_GENERIC", "origin": "user_include", "scope": null }, { - "ID": "c:@EA@EXTI_CallbackIDTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_COMMON_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_EXTI_COMMON_CB_ID", - "location": { - "column": "3", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "HAL_EXTI_COMMON_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_RISING_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_EXTI_RISING_CB_ID", - "location": { - "column": "3", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "HAL_EXTI_RISING_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_FALLING_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_EXTI_FALLING_CB_ID", - "location": { - "column": "3", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "HAL_EXTI_FALLING_CB_ID", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@EXTI_CallbackIDTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum EXTI_CallbackIDTypeDef", - "location": { - "column": "3", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_CallbackIDTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@EXTI_HandleTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "members": [ - { - "ID": "c:@SA@EXTI_HandleTypeDef@FI@Line", - "What": "FieldDecl", - "defdec": "Def", - "display": "Line", - "location": { - "column": "12", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "Line", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_55_9" - }, - { - "ID": "c:@SA@EXTI_HandleTypeDef@FI@PendingCallback", - "What": "FieldDecl", - "defdec": "Def", - "display": "PendingCallback", - "location": { - "column": "11", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "PendingCallback", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_55_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@EXTI_HandleTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct EXTI_HandleTypeDef", - "location": { - "column": "3", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_HandleTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@EXTI_ConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "members": [ - { - "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Line", - "What": "FieldDecl", - "defdec": "Def", - "display": "Line", - "location": { - "column": "12", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "Line", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" - }, - { - "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Mode", - "What": "FieldDecl", - "defdec": "Def", - "display": "Mode", - "location": { - "column": "12", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "Mode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" - }, - { - "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Trigger", - "What": "FieldDecl", - "defdec": "Def", - "display": "Trigger", - "location": { - "column": "12", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "Trigger", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" - }, - { - "ID": "c:@SA@EXTI_ConfigTypeDef@FI@GPIOSel", - "What": "FieldDecl", - "defdec": "Def", - "display": "GPIOSel", - "location": { - "column": "12", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "GPIOSel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@EXTI_ConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct EXTI_ConfigTypeDef", - "location": { - "column": "3", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_ConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@6677@macro@EXTI_LINE_0", + "ID": "c:core_cm4.h@2226@macro@__CM4_CMSIS_VERSION_MAIN", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_0", + "display": "__CM4_CMSIS_VERSION_MAIN", "location": { "column": "9", - "line": "137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_0", + "name": "__CM4_CMSIS_VERSION_MAIN", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@6771@macro@EXTI_LINE_1", + "ID": "c:core_cm4.h@2351@macro@__CM4_CMSIS_VERSION_SUB", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_1", + "display": "__CM4_CMSIS_VERSION_SUB", "location": { "column": "9", - "line": "138", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_1", + "name": "__CM4_CMSIS_VERSION_SUB", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@6865@macro@EXTI_LINE_2", + "ID": "c:core_cm4.h@2475@macro@__CM4_CMSIS_VERSION", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_2", + "display": "__CM4_CMSIS_VERSION", "location": { "column": "9", - "line": "139", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_2", + "name": "__CM4_CMSIS_VERSION", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@6959@macro@EXTI_LINE_3", + "ID": "c:core_cm4.h@2670@macro@__CORTEX_M", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_3", + "display": "__CORTEX_M", "location": { "column": "9", - "line": "140", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_3", + "name": "__CORTEX_M", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@7053@macro@EXTI_LINE_4", + "ID": "c:core_cm4.h@4213@macro@__FPU_USED", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_4", + "display": "__FPU_USED", "location": { - "column": "9", - "line": "141", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "15", + "line": "115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_4", + "name": "__FPU_USED", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@7147@macro@EXTI_LINE_5", + "ID": "c:core_cm4.h@5787@macro@__CORE_CM4_H_DEPENDANT", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_5", - "location": { - "column": "9", - "line": "142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7241@macro@EXTI_LINE_6", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_6", - "location": { - "column": "9", - "line": "143", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7335@macro@EXTI_LINE_7", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_7", - "location": { - "column": "9", - "line": "144", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7429@macro@EXTI_LINE_8", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_8", - "location": { - "column": "9", - "line": "145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7523@macro@EXTI_LINE_9", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_9", - "location": { - "column": "9", - "line": "146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7617@macro@EXTI_LINE_10", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_10", - "location": { - "column": "9", - "line": "147", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7711@macro@EXTI_LINE_11", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_11", - "location": { - "column": "9", - "line": "148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7805@macro@EXTI_LINE_12", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_12", - "location": { - "column": "9", - "line": "149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7899@macro@EXTI_LINE_13", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_13", - "location": { - "column": "9", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@7993@macro@EXTI_LINE_14", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_14", - "location": { - "column": "9", - "line": "151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8087@macro@EXTI_LINE_15", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_15", - "location": { - "column": "9", - "line": "152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8181@macro@EXTI_LINE_16", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_16", - "location": { - "column": "9", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8275@macro@EXTI_LINE_17", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_17", - "location": { - "column": "9", - "line": "154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_17", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8369@macro@EXTI_LINE_18", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_18", - "location": { - "column": "9", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_18", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8463@macro@EXTI_LINE_19", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_19", - "location": { - "column": "9", - "line": "156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_19", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8557@macro@EXTI_LINE_20", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_20", - "location": { - "column": "9", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_20", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8651@macro@EXTI_LINE_21", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_21", - "location": { - "column": "9", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_21", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8745@macro@EXTI_LINE_22", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_22", - "location": { - "column": "9", - "line": "159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_22", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8839@macro@EXTI_LINE_23", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_23", - "location": { - "column": "9", - "line": "160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_23", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@8933@macro@EXTI_LINE_24", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_24", - "location": { - "column": "9", - "line": "161", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_24", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9027@macro@EXTI_LINE_25", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_25", - "location": { - "column": "9", - "line": "162", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_25", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9121@macro@EXTI_LINE_26", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_26", - "location": { - "column": "9", - "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_26", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9215@macro@EXTI_LINE_27", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_27", - "location": { - "column": "9", - "line": "164", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_27", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9309@macro@EXTI_LINE_28", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_28", - "location": { - "column": "9", - "line": "165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_28", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9403@macro@EXTI_LINE_29", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_29", - "location": { - "column": "9", - "line": "166", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_29", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9497@macro@EXTI_LINE_30", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_30", - "location": { - "column": "9", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_30", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9591@macro@EXTI_LINE_31", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_31", - "location": { - "column": "9", - "line": "168", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_31", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9685@macro@EXTI_LINE_32", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_32", - "location": { - "column": "9", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9779@macro@EXTI_LINE_33", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_33", - "location": { - "column": "9", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_33", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9873@macro@EXTI_LINE_34", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_34", - "location": { - "column": "9", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_34", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@9967@macro@EXTI_LINE_35", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_35", - "location": { - "column": "9", - "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_35", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@10061@macro@EXTI_LINE_36", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_36", - "location": { - "column": "9", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_LINE_36", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@10155@macro@EXTI_LINE_37", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_LINE_37", + "display": "__CORE_CM4_H_DEPENDANT", "location": { "column": "9", "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_37", + "name": "__CORE_CM4_H_DEPENDANT", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@10249@macro@EXTI_LINE_38", + "ID": "c:core_cm4.h@7195@macro@__I", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_38", + "display": "__I", + "location": { + "column": "13", + "line": "219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__I", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@7285@macro@__O", + "What": "MacroDef", + "defdec": "Def", + "display": "__O", + "location": { + "column": "13", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__O", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@7368@macro@__IO", + "What": "MacroDef", + "defdec": "Def", + "display": "__IO", + "location": { + "column": "13", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__IO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@7517@macro@__IM", + "What": "MacroDef", + "defdec": "Def", + "display": "__IM", + "location": { + "column": "13", + "line": "225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__IM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@7615@macro@__OM", + "What": "MacroDef", + "defdec": "Def", + "display": "__OM", + "location": { + "column": "13", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__OM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@7714@macro@__IOM", + "What": "MacroDef", + "defdec": "Def", + "display": "__IOM", + "location": { + "column": "13", + "line": "227", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__IOM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@UA@APSR_Type", + "What": "Union", + "defdec": "Def", + "display": "", "location": { "column": "9", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "259", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_38", + "members": [ + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "3", + "line": "261", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@_reserved0", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved0", + "location": { + "column": "14", + "line": "263", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@GE", + "What": "FieldDecl", + "defdec": "Def", + "display": "GE", + "location": { + "column": "14", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "GE", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@_reserved1", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved1", + "location": { + "column": "14", + "line": "265", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@Q", + "What": "FieldDecl", + "defdec": "Def", + "display": "Q", + "location": { + "column": "14", + "line": "266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "Q", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@V", + "What": "FieldDecl", + "defdec": "Def", + "display": "V", + "location": { + "column": "14", + "line": "267", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "V", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@C", + "What": "FieldDecl", + "defdec": "Def", + "display": "C", + "location": { + "column": "14", + "line": "268", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "C", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@Z", + "What": "FieldDecl", + "defdec": "Def", + "display": "Z", + "location": { + "column": "14", + "line": "269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "Z", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + }, + { + "ID": "c:@UA@APSR_Type@S@core_cm4.h@8654@FI@N", + "What": "FieldDecl", + "defdec": "Def", + "display": "N", + "location": { + "column": "14", + "line": "270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "N", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9::_anonymous_core_cm4_h_261_3" + } + ], + "name": "", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9" + }, + { + "ID": "c:@UA@APSR_Type@FI@b", + "What": "FieldDecl", + "defdec": "Def", + "display": "b", + "location": { + "column": "5", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "b", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9" + }, + { + "ID": "c:@UA@APSR_Type@FI@w", + "What": "FieldDecl", + "defdec": "Def", + "display": "w", + "location": { + "column": "12", + "line": "272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "w", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_259_9" + } + ], + "name": "", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@10343@macro@EXTI_LINE_39", + "ID": "c:@T@APSR_Type", + "What": "Typedef", + "defdec": "Def", + "display": "union APSR_Type", + "location": { + "column": "3", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@9571@macro@APSR_N_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_39", + "display": "APSR_N_Pos", "location": { "column": "9", - "line": "176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "276", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_39", + "name": "APSR_N_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@10437@macro@EXTI_LINE_40", + "ID": "c:core_cm4.h@9687@macro@APSR_N_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_40", + "display": "APSR_N_Msk", "location": { "column": "9", - "line": "177", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "277", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_40", + "name": "APSR_N_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46358@macro@EXTI_MODE_NONE", + "ID": "c:core_cm4.h@9801@macro@APSR_Z_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_MODE_NONE", + "display": "APSR_Z_Pos", + "location": { + "column": "9", + "line": "279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_Z_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@9917@macro@APSR_Z_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_Z_Msk", + "location": { + "column": "9", + "line": "280", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_Z_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10031@macro@APSR_C_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_C_Pos", + "location": { + "column": "9", + "line": "282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_C_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10147@macro@APSR_C_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_C_Msk", + "location": { + "column": "9", + "line": "283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_C_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10261@macro@APSR_V_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_V_Pos", + "location": { + "column": "9", + "line": "285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_V_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10377@macro@APSR_V_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_V_Msk", + "location": { + "column": "9", + "line": "286", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_V_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10491@macro@APSR_Q_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_Q_Pos", + "location": { + "column": "9", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_Q_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10607@macro@APSR_Q_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_Q_Msk", + "location": { + "column": "9", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_Q_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10721@macro@APSR_GE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_GE_Pos", + "location": { + "column": "9", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_GE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@10838@macro@APSR_GE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "APSR_GE_Msk", + "location": { + "column": "9", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "APSR_GE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@UA@IPSR_Type", + "What": "Union", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "3", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055@FI@ISR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ISR", + "location": { + "column": "14", + "line": "302", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ISR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_298_9::_anonymous_core_cm4_h_300_3" + }, + { + "ID": "c:@UA@IPSR_Type@S@core_cm4.h@11055@FI@_reserved0", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved0", + "location": { + "column": "14", + "line": "303", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_298_9::_anonymous_core_cm4_h_300_3" + } + ], + "name": "", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_298_9" + }, + { + "ID": "c:@UA@IPSR_Type@FI@b", + "What": "FieldDecl", + "defdec": "Def", + "display": "b", + "location": { + "column": "5", + "line": "304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "b", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_298_9" + }, + { + "ID": "c:@UA@IPSR_Type@FI@w", + "What": "FieldDecl", + "defdec": "Def", + "display": "w", + "location": { + "column": "12", + "line": "305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "w", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_298_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@IPSR_Type", + "What": "Typedef", + "defdec": "Def", + "display": "union IPSR_Type", + "location": { + "column": "3", + "line": "306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "IPSR_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@11439@macro@IPSR_ISR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "IPSR_ISR_Pos", + "location": { + "column": "9", + "line": "309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "IPSR_ISR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@11557@macro@IPSR_ISR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "IPSR_ISR_Msk", + "location": { + "column": "9", + "line": "310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "IPSR_ISR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@UA@xPSR_Type", + "What": "Union", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "3", + "line": "318", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ISR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ISR", + "location": { + "column": "14", + "line": "320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ISR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@_reserved0", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved0", + "location": { + "column": "14", + "line": "321", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ICI_IT_1", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICI_IT_1", + "location": { + "column": "14", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICI_IT_1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@GE", + "What": "FieldDecl", + "defdec": "Def", + "display": "GE", + "location": { + "column": "14", + "line": "323", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "GE", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@_reserved1", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved1", + "location": { + "column": "14", + "line": "324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@T", + "What": "FieldDecl", + "defdec": "Def", + "display": "T", + "location": { + "column": "14", + "line": "325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "T", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@ICI_IT_2", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICI_IT_2", + "location": { + "column": "14", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICI_IT_2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@Q", + "What": "FieldDecl", + "defdec": "Def", + "display": "Q", + "location": { + "column": "14", + "line": "327", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "Q", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@V", + "What": "FieldDecl", + "defdec": "Def", + "display": "V", + "location": { + "column": "14", + "line": "328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "V", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@C", + "What": "FieldDecl", + "defdec": "Def", + "display": "C", + "location": { + "column": "14", + "line": "329", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "C", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@Z", + "What": "FieldDecl", + "defdec": "Def", + "display": "Z", + "location": { + "column": "14", + "line": "330", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "Z", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + }, + { + "ID": "c:@UA@xPSR_Type@S@core_cm4.h@11782@FI@N", + "What": "FieldDecl", + "defdec": "Def", + "display": "N", + "location": { + "column": "14", + "line": "331", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "N", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9::_anonymous_core_cm4_h_318_3" + } + ], + "name": "", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9" + }, + { + "ID": "c:@UA@xPSR_Type@FI@b", + "What": "FieldDecl", + "defdec": "Def", + "display": "b", + "location": { + "column": "5", + "line": "332", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "b", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9" + }, + { + "ID": "c:@UA@xPSR_Type@FI@w", + "What": "FieldDecl", + "defdec": "Def", + "display": "w", + "location": { + "column": "12", + "line": "333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "w", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_316_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@xPSR_Type", + "What": "Typedef", + "defdec": "Def", + "display": "union xPSR_Type", + "location": { + "column": "3", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13006@macro@xPSR_N_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_N_Pos", + "location": { + "column": "9", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_N_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13122@macro@xPSR_N_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_N_Msk", + "location": { + "column": "9", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_N_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13236@macro@xPSR_Z_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_Z_Pos", + "location": { + "column": "9", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_Z_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13352@macro@xPSR_Z_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_Z_Msk", + "location": { + "column": "9", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_Z_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13466@macro@xPSR_C_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_C_Pos", + "location": { + "column": "9", + "line": "343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_C_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13582@macro@xPSR_C_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_C_Msk", + "location": { + "column": "9", + "line": "344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_C_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13696@macro@xPSR_V_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_V_Pos", + "location": { + "column": "9", + "line": "346", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_V_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13812@macro@xPSR_V_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_V_Msk", + "location": { + "column": "9", + "line": "347", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_V_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@13926@macro@xPSR_Q_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_Q_Pos", + "location": { + "column": "9", + "line": "349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_Q_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14042@macro@xPSR_Q_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_Q_Msk", + "location": { + "column": "9", + "line": "350", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_Q_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14156@macro@xPSR_ICI_IT_2_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ICI_IT_2_Pos", + "location": { + "column": "9", + "line": "352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ICI_IT_2_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14284@macro@xPSR_ICI_IT_2_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ICI_IT_2_Msk", + "location": { + "column": "9", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ICI_IT_2_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14410@macro@xPSR_T_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_T_Pos", + "location": { + "column": "9", + "line": "355", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_T_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14526@macro@xPSR_T_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_T_Msk", + "location": { + "column": "9", + "line": "356", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_T_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14640@macro@xPSR_GE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_GE_Pos", + "location": { + "column": "9", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_GE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14757@macro@xPSR_GE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_GE_Msk", + "location": { + "column": "9", + "line": "359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_GE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@14872@macro@xPSR_ICI_IT_1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ICI_IT_1_Pos", + "location": { + "column": "9", + "line": "361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ICI_IT_1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@15000@macro@xPSR_ICI_IT_1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ICI_IT_1_Msk", + "location": { + "column": "9", + "line": "362", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ICI_IT_1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@15126@macro@xPSR_ISR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ISR_Pos", + "location": { + "column": "9", + "line": "364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ISR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@15244@macro@xPSR_ISR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "xPSR_ISR_Msk", + "location": { + "column": "9", + "line": "365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "xPSR_ISR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@UA@CONTROL_Type", + "What": "Union", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "371", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "3", + "line": "373", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@nPRIV", + "What": "FieldDecl", + "defdec": "Def", + "display": "nPRIV", + "location": { + "column": "14", + "line": "375", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "nPRIV", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" + }, + { + "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@SPSEL", + "What": "FieldDecl", + "defdec": "Def", + "display": "SPSEL", + "location": { + "column": "14", + "line": "376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SPSEL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" + }, + { + "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@FPCA", + "What": "FieldDecl", + "defdec": "Def", + "display": "FPCA", + "location": { + "column": "14", + "line": "377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPCA", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" + }, + { + "ID": "c:@UA@CONTROL_Type@S@core_cm4.h@15449@FI@_reserved0", + "What": "FieldDecl", + "defdec": "Def", + "display": "_reserved0", + "location": { + "column": "14", + "line": "378", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_reserved0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9::_anonymous_core_cm4_h_373_3" + } + ], + "name": "", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9" + }, + { + "ID": "c:@UA@CONTROL_Type@FI@b", + "What": "FieldDecl", + "defdec": "Def", + "display": "b", + "location": { + "column": "5", + "line": "379", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "b", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9" + }, + { + "ID": "c:@UA@CONTROL_Type@FI@w", + "What": "FieldDecl", + "defdec": "Def", + "display": "w", + "location": { + "column": "12", + "line": "380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "w", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_371_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@CONTROL_Type", + "What": "Typedef", + "defdec": "Def", + "display": "union CONTROL_Type", + "location": { + "column": "3", + "line": "381", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16025@macro@CONTROL_FPCA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_FPCA_Pos", + "location": { + "column": "9", + "line": "384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_FPCA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16147@macro@CONTROL_FPCA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_FPCA_Msk", + "location": { + "column": "9", + "line": "385", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_FPCA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16267@macro@CONTROL_SPSEL_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_SPSEL_Pos", + "location": { + "column": "9", + "line": "387", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_SPSEL_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16390@macro@CONTROL_SPSEL_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_SPSEL_Msk", + "location": { + "column": "9", + "line": "388", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_SPSEL_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16511@macro@CONTROL_nPRIV_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_nPRIV_Pos", + "location": { + "column": "9", + "line": "390", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_nPRIV_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@16634@macro@CONTROL_nPRIV_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CONTROL_nPRIV_Msk", + "location": { + "column": "9", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CONTROL_nPRIV_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@NVIC_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@NVIC_Type@FI@ISER", + "What": "FieldDecl", + "defdec": "Def", + "display": "ISER", + "location": { + "column": "18", + "line": "408", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ISER", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "409", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@ICER", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICER", + "location": { + "column": "18", + "line": "410", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICER", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED1", + "location": { + "column": "18", + "line": "411", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@ISPR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ISPR", + "location": { + "column": "18", + "line": "412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ISPR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED2", + "location": { + "column": "18", + "line": "413", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@ICPR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICPR", + "location": { + "column": "18", + "line": "414", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICPR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED3", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED3", + "location": { + "column": "18", + "line": "415", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@IABR", + "What": "FieldDecl", + "defdec": "Def", + "display": "IABR", + "location": { + "column": "18", + "line": "416", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "IABR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED4", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED4", + "location": { + "column": "18", + "line": "417", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED4", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@IP", + "What": "FieldDecl", + "defdec": "Def", + "display": "IP", + "location": { + "column": "18", + "line": "418", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "IP", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@RESERVED5", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED5", + "location": { + "column": "18", + "line": "419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED5", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + }, + { + "ID": "c:@SA@NVIC_Type@FI@STIR", + "What": "FieldDecl", + "defdec": "Def", + "display": "STIR", + "location": { + "column": "18", + "line": "420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "STIR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_406_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@NVIC_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct NVIC_Type", + "location": { + "column": "4", + "line": "421", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@18093@macro@NVIC_STIR_INTID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_STIR_INTID_Pos", + "location": { + "column": "9", + "line": "424", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_STIR_INTID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@18216@macro@NVIC_STIR_INTID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_STIR_INTID_Msk", + "location": { + "column": "9", + "line": "425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_STIR_INTID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@SCB_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "440", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@SCB_Type@FI@CPUID", + "What": "FieldDecl", + "defdec": "Def", + "display": "CPUID", + "location": { + "column": "18", + "line": "442", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CPUID", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@ICSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICSR", + "location": { + "column": "18", + "line": "443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@VTOR", + "What": "FieldDecl", + "defdec": "Def", + "display": "VTOR", + "location": { + "column": "18", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "VTOR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@AIRCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "AIRCR", + "location": { + "column": "18", + "line": "445", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "AIRCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@SCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "SCR", + "location": { + "column": "18", + "line": "446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@CCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "CCR", + "location": { + "column": "18", + "line": "447", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@SHP", + "What": "FieldDecl", + "defdec": "Def", + "display": "SHP", + "location": { + "column": "18", + "line": "448", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SHP", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@SHCSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "SHCSR", + "location": { + "column": "18", + "line": "449", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SHCSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@CFSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "CFSR", + "location": { + "column": "18", + "line": "450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CFSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@HFSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "HFSR", + "location": { + "column": "18", + "line": "451", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "HFSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@DFSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DFSR", + "location": { + "column": "18", + "line": "452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DFSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@MMFAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "MMFAR", + "location": { + "column": "18", + "line": "453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MMFAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@BFAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "BFAR", + "location": { + "column": "18", + "line": "454", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "BFAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@AFSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "AFSR", + "location": { + "column": "18", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "AFSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@PFR", + "What": "FieldDecl", + "defdec": "Def", + "display": "PFR", + "location": { + "column": "18", + "line": "456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PFR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@DFR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DFR", + "location": { + "column": "18", + "line": "457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DFR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@ADR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ADR", + "location": { + "column": "18", + "line": "458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ADR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@MMFR", + "What": "FieldDecl", + "defdec": "Def", + "display": "MMFR", + "location": { + "column": "18", + "line": "459", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MMFR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@ISAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ISAR", + "location": { + "column": "18", + "line": "460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ISAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "461", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + }, + { + "ID": "c:@SA@SCB_Type@FI@CPACR", + "What": "FieldDecl", + "defdec": "Def", + "display": "CPACR", + "location": { + "column": "18", + "line": "462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CPACR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_440_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@SCB_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct SCB_Type", + "location": { + "column": "3", + "line": "463", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@20796@macro@SCB_CPUID_IMPLEMENTER_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_IMPLEMENTER_Pos", + "location": { + "column": "9", + "line": "466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_IMPLEMENTER_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@20927@macro@SCB_CPUID_IMPLEMENTER_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_IMPLEMENTER_Msk", + "location": { + "column": "9", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_IMPLEMENTER_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21056@macro@SCB_CPUID_VARIANT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_VARIANT_Pos", + "location": { + "column": "9", + "line": "469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_VARIANT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21183@macro@SCB_CPUID_VARIANT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_VARIANT_Msk", + "location": { + "column": "9", + "line": "470", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_VARIANT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21308@macro@SCB_CPUID_ARCHITECTURE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_ARCHITECTURE_Pos", + "location": { + "column": "9", + "line": "472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_ARCHITECTURE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21440@macro@SCB_CPUID_ARCHITECTURE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_ARCHITECTURE_Msk", + "location": { + "column": "9", + "line": "473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_ARCHITECTURE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21570@macro@SCB_CPUID_PARTNO_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_PARTNO_Pos", + "location": { + "column": "9", + "line": "475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_PARTNO_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21696@macro@SCB_CPUID_PARTNO_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_PARTNO_Msk", + "location": { + "column": "9", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_PARTNO_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21820@macro@SCB_CPUID_REVISION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_REVISION_Pos", + "location": { + "column": "9", + "line": "478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_REVISION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@21948@macro@SCB_CPUID_REVISION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CPUID_REVISION_Msk", + "location": { + "column": "9", + "line": "479", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CPUID_REVISION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22130@macro@SCB_ICSR_NMIPENDSET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_NMIPENDSET_Pos", + "location": { + "column": "9", + "line": "482", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_NMIPENDSET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22259@macro@SCB_ICSR_NMIPENDSET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_NMIPENDSET_Msk", + "location": { + "column": "9", + "line": "483", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_NMIPENDSET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22386@macro@SCB_ICSR_PENDSVSET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSVSET_Pos", + "location": { + "column": "9", + "line": "485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSVSET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22514@macro@SCB_ICSR_PENDSVSET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSVSET_Msk", + "location": { + "column": "9", + "line": "486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSVSET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22640@macro@SCB_ICSR_PENDSVCLR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSVCLR_Pos", + "location": { + "column": "9", + "line": "488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSVCLR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22768@macro@SCB_ICSR_PENDSVCLR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSVCLR_Msk", + "location": { + "column": "9", + "line": "489", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSVCLR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@22894@macro@SCB_ICSR_PENDSTSET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSTSET_Pos", + "location": { + "column": "9", + "line": "491", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSTSET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23022@macro@SCB_ICSR_PENDSTSET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSTSET_Msk", + "location": { + "column": "9", + "line": "492", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSTSET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23148@macro@SCB_ICSR_PENDSTCLR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSTCLR_Pos", + "location": { + "column": "9", + "line": "494", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSTCLR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23276@macro@SCB_ICSR_PENDSTCLR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_PENDSTCLR_Msk", + "location": { + "column": "9", + "line": "495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_PENDSTCLR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23402@macro@SCB_ICSR_ISRPREEMPT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_ISRPREEMPT_Pos", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_ISRPREEMPT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23531@macro@SCB_ICSR_ISRPREEMPT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_ISRPREEMPT_Msk", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_ISRPREEMPT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23658@macro@SCB_ICSR_ISRPENDING_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_ISRPENDING_Pos", + "location": { + "column": "9", + "line": "500", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_ISRPENDING_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23787@macro@SCB_ICSR_ISRPENDING_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_ISRPENDING_Msk", + "location": { + "column": "9", + "line": "501", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_ISRPENDING_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@23914@macro@SCB_ICSR_VECTPENDING_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_VECTPENDING_Pos", + "location": { + "column": "9", + "line": "503", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_VECTPENDING_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24044@macro@SCB_ICSR_VECTPENDING_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_VECTPENDING_Msk", + "location": { + "column": "9", + "line": "504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_VECTPENDING_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24172@macro@SCB_ICSR_RETTOBASE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_RETTOBASE_Pos", + "location": { + "column": "9", + "line": "506", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_RETTOBASE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24300@macro@SCB_ICSR_RETTOBASE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_RETTOBASE_Msk", + "location": { + "column": "9", + "line": "507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_RETTOBASE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24426@macro@SCB_ICSR_VECTACTIVE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_VECTACTIVE_Pos", + "location": { + "column": "9", + "line": "509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_VECTACTIVE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24555@macro@SCB_ICSR_VECTACTIVE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_ICSR_VECTACTIVE_Msk", + "location": { + "column": "9", + "line": "510", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_ICSR_VECTACTIVE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24734@macro@SCB_VTOR_TBLOFF_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_VTOR_TBLOFF_Pos", + "location": { + "column": "9", + "line": "513", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_VTOR_TBLOFF_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@24859@macro@SCB_VTOR_TBLOFF_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_VTOR_TBLOFF_Msk", + "location": { + "column": "9", + "line": "514", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_VTOR_TBLOFF_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25054@macro@SCB_AIRCR_VECTKEY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTKEY_Pos", + "location": { + "column": "9", + "line": "517", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTKEY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25181@macro@SCB_AIRCR_VECTKEY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTKEY_Msk", + "location": { + "column": "9", + "line": "518", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTKEY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25306@macro@SCB_AIRCR_VECTKEYSTAT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTKEYSTAT_Pos", + "location": { + "column": "9", + "line": "520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTKEYSTAT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25437@macro@SCB_AIRCR_VECTKEYSTAT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTKEYSTAT_Msk", + "location": { + "column": "9", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTKEYSTAT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25566@macro@SCB_AIRCR_ENDIANESS_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_ENDIANESS_Pos", + "location": { + "column": "9", + "line": "523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_ENDIANESS_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25695@macro@SCB_AIRCR_ENDIANESS_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_ENDIANESS_Msk", + "location": { + "column": "9", + "line": "524", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_ENDIANESS_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25822@macro@SCB_AIRCR_PRIGROUP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_PRIGROUP_Pos", + "location": { + "column": "9", + "line": "526", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_PRIGROUP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@25950@macro@SCB_AIRCR_PRIGROUP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_PRIGROUP_Msk", + "location": { + "column": "9", + "line": "527", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_PRIGROUP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26076@macro@SCB_AIRCR_SYSRESETREQ_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_SYSRESETREQ_Pos", + "location": { + "column": "9", + "line": "529", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_SYSRESETREQ_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26207@macro@SCB_AIRCR_SYSRESETREQ_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_SYSRESETREQ_Msk", + "location": { + "column": "9", + "line": "530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_SYSRESETREQ_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26336@macro@SCB_AIRCR_VECTCLRACTIVE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTCLRACTIVE_Pos", + "location": { + "column": "9", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTCLRACTIVE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26469@macro@SCB_AIRCR_VECTCLRACTIVE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTCLRACTIVE_Msk", + "location": { + "column": "9", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTCLRACTIVE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26600@macro@SCB_AIRCR_VECTRESET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTRESET_Pos", + "location": { + "column": "9", + "line": "535", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTRESET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26729@macro@SCB_AIRCR_VECTRESET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_AIRCR_VECTRESET_Msk", + "location": { + "column": "9", + "line": "536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_AIRCR_VECTRESET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@26903@macro@SCB_SCR_SEVONPEND_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SEVONPEND_Pos", + "location": { + "column": "9", + "line": "539", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SEVONPEND_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27030@macro@SCB_SCR_SEVONPEND_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SEVONPEND_Msk", + "location": { + "column": "9", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SEVONPEND_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27155@macro@SCB_SCR_SLEEPDEEP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SLEEPDEEP_Pos", + "location": { + "column": "9", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SLEEPDEEP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27282@macro@SCB_SCR_SLEEPDEEP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SLEEPDEEP_Msk", + "location": { + "column": "9", + "line": "543", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SLEEPDEEP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27407@macro@SCB_SCR_SLEEPONEXIT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SLEEPONEXIT_Pos", + "location": { + "column": "9", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SLEEPONEXIT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27536@macro@SCB_SCR_SLEEPONEXIT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SCR_SLEEPONEXIT_Msk", + "location": { + "column": "9", + "line": "546", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SCR_SLEEPONEXIT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27717@macro@SCB_CCR_STKALIGN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_STKALIGN_Pos", + "location": { + "column": "9", + "line": "549", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_STKALIGN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27843@macro@SCB_CCR_STKALIGN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_STKALIGN_Msk", + "location": { + "column": "9", + "line": "550", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_STKALIGN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@27967@macro@SCB_CCR_BFHFNMIGN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_BFHFNMIGN_Pos", + "location": { + "column": "9", + "line": "552", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_BFHFNMIGN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28094@macro@SCB_CCR_BFHFNMIGN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_BFHFNMIGN_Msk", + "location": { + "column": "9", + "line": "553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_BFHFNMIGN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28219@macro@SCB_CCR_DIV_0_TRP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_DIV_0_TRP_Pos", + "location": { + "column": "9", + "line": "555", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_DIV_0_TRP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28346@macro@SCB_CCR_DIV_0_TRP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_DIV_0_TRP_Msk", + "location": { + "column": "9", + "line": "556", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_DIV_0_TRP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28471@macro@SCB_CCR_UNALIGN_TRP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_UNALIGN_TRP_Pos", + "location": { + "column": "9", + "line": "558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_UNALIGN_TRP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28600@macro@SCB_CCR_UNALIGN_TRP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_UNALIGN_TRP_Msk", + "location": { + "column": "9", + "line": "559", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_UNALIGN_TRP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28727@macro@SCB_CCR_USERSETMPEND_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_USERSETMPEND_Pos", + "location": { + "column": "9", + "line": "561", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_USERSETMPEND_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28857@macro@SCB_CCR_USERSETMPEND_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_USERSETMPEND_Msk", + "location": { + "column": "9", + "line": "562", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_USERSETMPEND_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@28985@macro@SCB_CCR_NONBASETHRDENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_NONBASETHRDENA_Pos", + "location": { + "column": "9", + "line": "564", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_NONBASETHRDENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29117@macro@SCB_CCR_NONBASETHRDENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CCR_NONBASETHRDENA_Msk", + "location": { + "column": "9", + "line": "565", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CCR_NONBASETHRDENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29312@macro@SCB_SHCSR_USGFAULTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTENA_Pos", + "location": { + "column": "9", + "line": "568", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_USGFAULTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29443@macro@SCB_SHCSR_USGFAULTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTENA_Msk", + "location": { + "column": "9", + "line": "569", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_USGFAULTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29572@macro@SCB_SHCSR_BUSFAULTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_BUSFAULTENA_Pos", + "location": { + "column": "9", + "line": "571", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_BUSFAULTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29703@macro@SCB_SHCSR_BUSFAULTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_BUSFAULTENA_Msk", + "location": { + "column": "9", + "line": "572", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_BUSFAULTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29832@macro@SCB_SHCSR_MEMFAULTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTENA_Pos", + "location": { + "column": "9", + "line": "574", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@29963@macro@SCB_SHCSR_MEMFAULTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTENA_Msk", + "location": { + "column": "9", + "line": "575", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30092@macro@SCB_SHCSR_SVCALLPENDED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SVCALLPENDED_Pos", + "location": { + "column": "9", + "line": "577", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SVCALLPENDED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30224@macro@SCB_SHCSR_SVCALLPENDED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SVCALLPENDED_Msk", + "location": { + "column": "9", + "line": "578", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SVCALLPENDED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30354@macro@SCB_SHCSR_BUSFAULTPENDED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_BUSFAULTPENDED_Pos", + "location": { + "column": "9", + "line": "580", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_BUSFAULTPENDED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30488@macro@SCB_SHCSR_BUSFAULTPENDED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_BUSFAULTPENDED_Msk", + "location": { + "column": "9", + "line": "581", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_BUSFAULTPENDED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30620@macro@SCB_SHCSR_MEMFAULTPENDED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTPENDED_Pos", + "location": { + "column": "9", + "line": "583", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTPENDED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30754@macro@SCB_SHCSR_MEMFAULTPENDED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTPENDED_Msk", + "location": { + "column": "9", + "line": "584", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTPENDED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@30886@macro@SCB_SHCSR_USGFAULTPENDED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTPENDED_Pos", + "location": { + "column": "9", + "line": "586", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_USGFAULTPENDED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31020@macro@SCB_SHCSR_USGFAULTPENDED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTPENDED_Msk", + "location": { + "column": "9", + "line": "587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_USGFAULTPENDED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31152@macro@SCB_SHCSR_SYSTICKACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SYSTICKACT_Pos", + "location": { + "column": "9", + "line": "589", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SYSTICKACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31282@macro@SCB_SHCSR_SYSTICKACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SYSTICKACT_Msk", + "location": { + "column": "9", + "line": "590", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SYSTICKACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31410@macro@SCB_SHCSR_PENDSVACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_PENDSVACT_Pos", + "location": { + "column": "9", + "line": "592", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_PENDSVACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31539@macro@SCB_SHCSR_PENDSVACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_PENDSVACT_Msk", + "location": { + "column": "9", + "line": "593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_PENDSVACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31666@macro@SCB_SHCSR_MONITORACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MONITORACT_Pos", + "location": { + "column": "9", + "line": "595", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MONITORACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31796@macro@SCB_SHCSR_MONITORACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MONITORACT_Msk", + "location": { + "column": "9", + "line": "596", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MONITORACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@31924@macro@SCB_SHCSR_SVCALLACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SVCALLACT_Pos", + "location": { + "column": "9", + "line": "598", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SVCALLACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@32053@macro@SCB_SHCSR_SVCALLACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_SVCALLACT_Msk", + "location": { + "column": "9", + "line": "599", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_SVCALLACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@32180@macro@SCB_SHCSR_USGFAULTACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTACT_Pos", + "location": { + "column": "9", + "line": "601", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_USGFAULTACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@32311@macro@SCB_SHCSR_USGFAULTACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_USGFAULTACT_Msk", "location": { "column": "9", "line": "602", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_MODE_NONE", + "name": "SCB_SHCSR_USGFAULTACT_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46415@macro@EXTI_MODE_INTERRUPT", + "ID": "c:core_cm4.h@32440@macro@SCB_SHCSR_BUSFAULTACT_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_MODE_INTERRUPT", - "location": { - "column": "9", - "line": "603", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_MODE_INTERRUPT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@46472@macro@EXTI_MODE_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_MODE_EVENT", + "display": "SCB_SHCSR_BUSFAULTACT_Pos", "location": { "column": "9", "line": "604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_MODE_EVENT", + "name": "SCB_SHCSR_BUSFAULTACT_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46606@macro@EXTI_TRIGGER_NONE", + "ID": "c:core_cm4.h@32571@macro@SCB_SHCSR_BUSFAULTACT_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_TRIGGER_NONE", + "display": "SCB_SHCSR_BUSFAULTACT_Msk", + "location": { + "column": "9", + "line": "605", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_BUSFAULTACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@32700@macro@SCB_SHCSR_MEMFAULTACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTACT_Pos", + "location": { + "column": "9", + "line": "607", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@32831@macro@SCB_SHCSR_MEMFAULTACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_SHCSR_MEMFAULTACT_Msk", + "location": { + "column": "9", + "line": "608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_SHCSR_MEMFAULTACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@33018@macro@SCB_CFSR_USGFAULTSR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_USGFAULTSR_Pos", + "location": { + "column": "9", + "line": "611", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_USGFAULTSR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@33164@macro@SCB_CFSR_USGFAULTSR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_USGFAULTSR_Msk", "location": { "column": "9", "line": "612", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_TRIGGER_NONE", + "name": "SCB_CFSR_USGFAULTSR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46663@macro@EXTI_TRIGGER_RISING", + "ID": "c:core_cm4.h@33308@macro@SCB_CFSR_BUSFAULTSR_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_TRIGGER_RISING", - "location": { - "column": "9", - "line": "613", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_TRIGGER_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@46720@macro@EXTI_TRIGGER_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_TRIGGER_FALLING", + "display": "SCB_CFSR_BUSFAULTSR_Pos", "location": { "column": "9", "line": "614", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_TRIGGER_FALLING", + "name": "SCB_CFSR_BUSFAULTSR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46777@macro@EXTI_TRIGGER_RISING_FALLING", + "ID": "c:core_cm4.h@33452@macro@SCB_CFSR_BUSFAULTSR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_TRIGGER_RISING_FALLING", + "display": "SCB_CFSR_BUSFAULTSR_Msk", "location": { "column": "9", "line": "615", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_TRIGGER_RISING_FALLING", + "name": "SCB_CFSR_BUSFAULTSR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@46956@macro@EXTI_GPIOA", + "ID": "c:core_cm4.h@33594@macro@SCB_CFSR_MEMFAULTSR_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOA", + "display": "SCB_CFSR_MEMFAULTSR_Pos", + "location": { + "column": "9", + "line": "617", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_MEMFAULTSR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@33748@macro@SCB_CFSR_MEMFAULTSR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_MEMFAULTSR_Msk", + "location": { + "column": "9", + "line": "618", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_MEMFAULTSR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@33988@macro@SCB_CFSR_MMARVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_MMARVALID_Pos", + "location": { + "column": "9", + "line": "621", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_MMARVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@34124@macro@SCB_CFSR_MMARVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_MMARVALID_Msk", + "location": { + "column": "9", + "line": "622", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_MMARVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@34258@macro@SCB_CFSR_MLSPERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_MLSPERR_Pos", "location": { "column": "9", "line": "624", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOA", + "name": "SCB_CFSR_MLSPERR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47013@macro@EXTI_GPIOB", + "ID": "c:core_cm4.h@34392@macro@SCB_CFSR_MLSPERR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOB", + "display": "SCB_CFSR_MLSPERR_Msk", "location": { "column": "9", "line": "625", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOB", + "name": "SCB_CFSR_MLSPERR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47070@macro@EXTI_GPIOC", + "ID": "c:core_cm4.h@34524@macro@SCB_CFSR_MSTKERR_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOC", - "location": { - "column": "9", - "line": "626", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_GPIOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@47127@macro@EXTI_GPIOD", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_GPIOD", + "display": "SCB_CFSR_MSTKERR_Pos", "location": { "column": "9", "line": "627", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOD", + "name": "SCB_CFSR_MSTKERR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47184@macro@EXTI_GPIOE", + "ID": "c:core_cm4.h@34658@macro@SCB_CFSR_MSTKERR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOE", + "display": "SCB_CFSR_MSTKERR_Msk", "location": { "column": "9", "line": "628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOE", + "name": "SCB_CFSR_MSTKERR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47241@macro@EXTI_GPIOF", + "ID": "c:core_cm4.h@34790@macro@SCB_CFSR_MUNSTKERR_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOF", - "location": { - "column": "9", - "line": "629", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_GPIOF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@47298@macro@EXTI_GPIOG", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_GPIOG", + "display": "SCB_CFSR_MUNSTKERR_Pos", "location": { "column": "9", "line": "630", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOG", + "name": "SCB_CFSR_MUNSTKERR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47355@macro@EXTI_GPIOH", + "ID": "c:core_cm4.h@34926@macro@SCB_CFSR_MUNSTKERR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOH", + "display": "SCB_CFSR_MUNSTKERR_Msk", "location": { "column": "9", "line": "631", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOH", + "name": "SCB_CFSR_MUNSTKERR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47412@macro@EXTI_GPIOI", + "ID": "c:core_cm4.h@35060@macro@SCB_CFSR_DACCVIOL_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIOI", + "display": "SCB_CFSR_DACCVIOL_Pos", "location": { "column": "9", - "line": "632", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "633", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_GPIOI", + "name": "SCB_CFSR_DACCVIOL_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47897@macro@EXTI_PROPERTY_SHIFT", + "ID": "c:core_cm4.h@35195@macro@SCB_CFSR_DACCVIOL_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_PROPERTY_SHIFT", + "display": "SCB_CFSR_DACCVIOL_Msk", "location": { "column": "9", - "line": "657", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "634", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_PROPERTY_SHIFT", + "name": "SCB_CFSR_DACCVIOL_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@47947@macro@EXTI_DIRECT", + "ID": "c:core_cm4.h@35328@macro@SCB_CFSR_IACCVIOL_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_DIRECT", + "display": "SCB_CFSR_IACCVIOL_Pos", + "location": { + "column": "9", + "line": "636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_IACCVIOL_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@35463@macro@SCB_CFSR_IACCVIOL_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_IACCVIOL_Msk", + "location": { + "column": "9", + "line": "637", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_IACCVIOL_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@35677@macro@SCB_CFSR_BFARVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_BFARVALID_Pos", + "location": { + "column": "9", + "line": "640", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_BFARVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@35812@macro@SCB_CFSR_BFARVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_BFARVALID_Msk", + "location": { + "column": "9", + "line": "641", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_BFARVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@35945@macro@SCB_CFSR_LSPERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_LSPERR_Pos", + "location": { + "column": "9", + "line": "643", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_LSPERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36077@macro@SCB_CFSR_LSPERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_LSPERR_Msk", + "location": { + "column": "9", + "line": "644", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_LSPERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36207@macro@SCB_CFSR_STKERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_STKERR_Pos", + "location": { + "column": "9", + "line": "646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_STKERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36339@macro@SCB_CFSR_STKERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_STKERR_Msk", + "location": { + "column": "9", + "line": "647", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_STKERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36469@macro@SCB_CFSR_UNSTKERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_UNSTKERR_Pos", + "location": { + "column": "9", + "line": "649", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_UNSTKERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36603@macro@SCB_CFSR_UNSTKERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_UNSTKERR_Msk", + "location": { + "column": "9", + "line": "650", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_UNSTKERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36735@macro@SCB_CFSR_IMPRECISERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_IMPRECISERR_Pos", + "location": { + "column": "9", + "line": "652", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_IMPRECISERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@36872@macro@SCB_CFSR_IMPRECISERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_IMPRECISERR_Msk", + "location": { + "column": "9", + "line": "653", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_IMPRECISERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@37007@macro@SCB_CFSR_PRECISERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_PRECISERR_Pos", + "location": { + "column": "9", + "line": "655", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_PRECISERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@37142@macro@SCB_CFSR_PRECISERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_PRECISERR_Msk", + "location": { + "column": "9", + "line": "656", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_PRECISERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@37275@macro@SCB_CFSR_IBUSERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_IBUSERR_Pos", "location": { "column": "9", "line": "658", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_DIRECT", + "name": "SCB_CFSR_IBUSERR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48024@macro@EXTI_CONFIG", + "ID": "c:core_cm4.h@37408@macro@SCB_CFSR_IBUSERR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_CONFIG", + "display": "SCB_CFSR_IBUSERR_Msk", "location": { "column": "9", "line": "659", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_CONFIG", + "name": "SCB_CFSR_IBUSERR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48101@macro@EXTI_GPIO", + "ID": "c:core_cm4.h@37622@macro@SCB_CFSR_DIVBYZERO_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_GPIO", - "location": { - "column": "9", - "line": "660", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@48194@macro@EXTI_RESERVED", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_RESERVED", - "location": { - "column": "9", - "line": "661", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_RESERVED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@48271@macro@EXTI_PROPERTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_PROPERTY_MASK", + "display": "SCB_CFSR_DIVBYZERO_Pos", "location": { "column": "9", "line": "662", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_PROPERTY_MASK", + "name": "SCB_CFSR_DIVBYZERO_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48413@macro@EXTI_EVENT_PRESENCE_SHIFT", + "ID": "c:core_cm4.h@37757@macro@SCB_CFSR_DIVBYZERO_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_EVENT_PRESENCE_SHIFT", + "display": "SCB_CFSR_DIVBYZERO_Msk", "location": { "column": "9", - "line": "667", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "663", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_EVENT_PRESENCE_SHIFT", + "name": "SCB_CFSR_DIVBYZERO_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48462@macro@EXTI_EVENT", + "ID": "c:core_cm4.h@37890@macro@SCB_CFSR_UNALIGNED_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_EVENT", + "display": "SCB_CFSR_UNALIGNED_Pos", + "location": { + "column": "9", + "line": "665", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_UNALIGNED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@38025@macro@SCB_CFSR_UNALIGNED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_UNALIGNED_Msk", + "location": { + "column": "9", + "line": "666", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_UNALIGNED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@38158@macro@SCB_CFSR_NOCP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_NOCP_Pos", "location": { "column": "9", "line": "668", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_EVENT", + "name": "SCB_CFSR_NOCP_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48545@macro@EXTI_EVENT_PRESENCE_MASK", + "ID": "c:core_cm4.h@38288@macro@SCB_CFSR_NOCP_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_EVENT_PRESENCE_MASK", + "display": "SCB_CFSR_NOCP_Msk", "location": { "column": "9", "line": "669", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_EVENT_PRESENCE_MASK", + "name": "SCB_CFSR_NOCP_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48657@macro@EXTI_REG_SHIFT", + "ID": "c:core_cm4.h@38416@macro@SCB_CFSR_INVPC_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_REG_SHIFT", + "display": "SCB_CFSR_INVPC_Pos", + "location": { + "column": "9", + "line": "671", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_INVPC_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@38547@macro@SCB_CFSR_INVPC_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_INVPC_Msk", + "location": { + "column": "9", + "line": "672", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_CFSR_INVPC_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@38676@macro@SCB_CFSR_INVSTATE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_CFSR_INVSTATE_Pos", "location": { "column": "9", "line": "674", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_REG_SHIFT", + "name": "SCB_CFSR_INVSTATE_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48706@macro@EXTI_REG1", + "ID": "c:core_cm4.h@38810@macro@SCB_CFSR_INVSTATE_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_REG1", + "display": "SCB_CFSR_INVSTATE_Msk", "location": { "column": "9", "line": "675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_REG1", + "name": "SCB_CFSR_INVSTATE_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48778@macro@EXTI_REG2", + "ID": "c:core_cm4.h@38942@macro@SCB_CFSR_UNDEFINSTR_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_REG2", - "location": { - "column": "9", - "line": "676", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" - }, - "name": "EXTI_REG2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_exti.h@48850@macro@EXTI_REG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTI_REG_MASK", + "display": "SCB_CFSR_UNDEFINSTR_Pos", "location": { "column": "9", "line": "677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_REG_MASK", + "name": "SCB_CFSR_UNDEFINSTR_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@48919@macro@EXTI_PIN_MASK", + "ID": "c:core_cm4.h@39078@macro@SCB_CFSR_UNDEFINSTR_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_PIN_MASK", + "display": "SCB_CFSR_UNDEFINSTR_Msk", "location": { "column": "9", "line": "678", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_PIN_MASK", + "name": "SCB_CFSR_UNDEFINSTR_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@49039@macro@EXTI_MODE_MASK", + "ID": "c:core_cm4.h@39262@macro@SCB_HFSR_DEBUGEVT_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_MODE_MASK", + "display": "SCB_HFSR_DEBUGEVT_Pos", "location": { "column": "9", - "line": "683", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "681", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_MODE_MASK", + "name": "SCB_HFSR_DEBUGEVT_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@49186@macro@EXTI_TRIGGER_MASK", + "ID": "c:core_cm4.h@39389@macro@SCB_HFSR_DEBUGEVT_Msk", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_TRIGGER_MASK", + "display": "SCB_HFSR_DEBUGEVT_Msk", + "location": { + "column": "9", + "line": "682", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_HFSR_DEBUGEVT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@39514@macro@SCB_HFSR_FORCED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_HFSR_FORCED_Pos", + "location": { + "column": "9", + "line": "684", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_HFSR_FORCED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@39639@macro@SCB_HFSR_FORCED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_HFSR_FORCED_Msk", + "location": { + "column": "9", + "line": "685", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_HFSR_FORCED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@39762@macro@SCB_HFSR_VECTTBL_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_HFSR_VECTTBL_Pos", + "location": { + "column": "9", + "line": "687", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_HFSR_VECTTBL_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@39888@macro@SCB_HFSR_VECTTBL_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_HFSR_VECTTBL_Msk", "location": { "column": "9", "line": "688", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_TRIGGER_MASK", + "name": "SCB_HFSR_VECTTBL_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@49319@macro@EXTI_LINE_NB", + "ID": "c:core_cm4.h@40063@macro@SCB_DFSR_EXTERNAL_Pos", "What": "MacroDef", "defdec": "Def", - "display": "EXTI_LINE_NB", + "display": "SCB_DFSR_EXTERNAL_Pos", "location": { "column": "9", - "line": "693", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "691", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "EXTI_LINE_NB", + "name": "SCB_DFSR_EXTERNAL_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@49542@macro@IS_EXTI_LINE", + "ID": "c:core_cm4.h@40190@macro@SCB_DFSR_EXTERNAL_Msk", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_LINE", + "display": "SCB_DFSR_EXTERNAL_Msk", + "location": { + "column": "9", + "line": "692", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_EXTERNAL_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40315@macro@SCB_DFSR_VCATCH_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_VCATCH_Pos", + "location": { + "column": "9", + "line": "694", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_VCATCH_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40440@macro@SCB_DFSR_VCATCH_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_VCATCH_Msk", + "location": { + "column": "9", + "line": "695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_VCATCH_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40563@macro@SCB_DFSR_DWTTRAP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_DWTTRAP_Pos", + "location": { + "column": "9", + "line": "697", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_DWTTRAP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40689@macro@SCB_DFSR_DWTTRAP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_DWTTRAP_Msk", + "location": { + "column": "9", + "line": "698", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_DWTTRAP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40813@macro@SCB_DFSR_BKPT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_BKPT_Pos", + "location": { + "column": "9", + "line": "700", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_BKPT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@40936@macro@SCB_DFSR_BKPT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_BKPT_Msk", + "location": { + "column": "9", + "line": "701", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_DFSR_BKPT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@41057@macro@SCB_DFSR_HALTED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_DFSR_HALTED_Pos", "location": { "column": "9", "line": "703", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_LINE", + "name": "SCB_DFSR_HALTED_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@50232@macro@IS_EXTI_MODE", + "ID": "c:core_cm4.h@41182@macro@SCB_DFSR_HALTED_Msk", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_MODE", + "display": "SCB_DFSR_HALTED_Msk", "location": { "column": "9", - "line": "710", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_MODE", + "name": "SCB_DFSR_HALTED_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@50417@macro@IS_EXTI_TRIGGER", - "What": "MacroDef", + "ID": "c:@SA@SCnSCB_Type", + "What": "Struct", "defdec": "Def", - "display": "IS_EXTI_TRIGGER", + "display": "", "location": { "column": "9", - "line": "713", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "719", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_TRIGGER", + "members": [ + { + "ID": "c:@SA@SCnSCB_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "721", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_719_9" + }, + { + "ID": "c:@SA@SCnSCB_Type@FI@ICTR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICTR", + "location": { + "column": "18", + "line": "722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ICTR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_719_9" + }, + { + "ID": "c:@SA@SCnSCB_Type@FI@ACTLR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ACTLR", + "location": { + "column": "18", + "line": "723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ACTLR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_719_9" + } + ], + "name": "", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@50514@macro@IS_EXTI_PENDING_EDGE", + "ID": "c:@T@SCnSCB_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct SCnSCB_Type", + "location": { + "column": "3", + "line": "724", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCnSCB_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@41963@macro@SCnSCB_ICTR_INTLINESNUM_Pos", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_PENDING_EDGE", + "display": "SCnSCB_ICTR_INTLINESNUM_Pos", "location": { "column": "9", - "line": "715", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "727", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_PENDING_EDGE", + "name": "SCnSCB_ICTR_INTLINESNUM_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@50611@macro@IS_EXTI_CONFIG_LINE", + "ID": "c:core_cm4.h@42086@macro@SCnSCB_ICTR_INTLINESNUM_Msk", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_CONFIG_LINE", + "display": "SCnSCB_ICTR_INTLINESNUM_Msk", "location": { "column": "9", - "line": "717", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "728", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_CONFIG_LINE", + "name": "SCnSCB_ICTR_INTLINESNUM_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@51240@macro@IS_EXTI_GPIO_PORT", + "ID": "c:core_cm4.h@42253@macro@SCnSCB_ACTLR_DISOOFP_Pos", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_GPIO_PORT", + "display": "SCnSCB_ACTLR_DISOOFP_Pos", "location": { "column": "9", "line": "731", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_GPIO_PORT", + "name": "SCnSCB_ACTLR_DISOOFP_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_exti.h@55267@macro@IS_EXTI_GPIO_PIN", + "ID": "c:core_cm4.h@42373@macro@SCnSCB_ACTLR_DISOOFP_Msk", "What": "MacroDef", "defdec": "Def", - "display": "IS_EXTI_GPIO_PIN", + "display": "SCnSCB_ACTLR_DISOOFP_Msk", "location": { "column": "9", - "line": "801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "line": "732", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "IS_EXTI_GPIO_PIN", + "name": "SCnSCB_ACTLR_DISOOFP_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_SetConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", + "ID": "c:core_cm4.h@42491@macro@SCnSCB_ACTLR_DISFPCA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISFPCA_Pos", "location": { - "column": "19", - "line": "818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "734", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_SetConfigLine", + "name": "SCnSCB_ACTLR_DISFPCA_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_SetConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", + "ID": "c:core_cm4.h@42611@macro@SCnSCB_ACTLR_DISFPCA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISFPCA_Msk", "location": { - "column": "19", - "line": "818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "735", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_SetConfigLine", + "name": "SCnSCB_ACTLR_DISFPCA_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_GetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", + "ID": "c:core_cm4.h@42729@macro@SCnSCB_ACTLR_DISFOLD_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISFOLD_Pos", "location": { - "column": "19", - "line": "819", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "737", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetConfigLine", + "name": "SCnSCB_ACTLR_DISFOLD_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_GetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", + "ID": "c:core_cm4.h@42849@macro@SCnSCB_ACTLR_DISFOLD_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISFOLD_Msk", "location": { - "column": "19", - "line": "819", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "738", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetConfigLine", + "name": "SCnSCB_ACTLR_DISFOLD_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_ClearConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@42967@macro@SCnSCB_ACTLR_DISDEFWBUF_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISDEFWBUF_Pos", "location": { - "column": "19", - "line": "820", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "740", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_ClearConfigLine", + "name": "SCnSCB_ACTLR_DISDEFWBUF_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_ClearConfigLine", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@43090@macro@SCnSCB_ACTLR_DISDEFWBUF_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISDEFWBUF_Msk", "location": { - "column": "19", - "line": "820", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "741", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_ClearConfigLine", + "name": "SCnSCB_ACTLR_DISDEFWBUF_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_RegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_RegisterCallback(EXTI_HandleTypeDef *, EXTI_CallbackIDTypeDef, void (*)(void))", + "ID": "c:core_cm4.h@43211@macro@SCnSCB_ACTLR_DISMCYCINT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISMCYCINT_Pos", "location": { - "column": "19", - "line": "821", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_RegisterCallback", + "name": "SCnSCB_ACTLR_DISMCYCINT_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_RegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_RegisterCallback(EXTI_HandleTypeDef *, EXTI_CallbackIDTypeDef, void (*)(void))", + "ID": "c:core_cm4.h@43334@macro@SCnSCB_ACTLR_DISMCYCINT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB_ACTLR_DISMCYCINT_Msk", "location": { - "column": "19", - "line": "821", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "744", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_RegisterCallback", + "name": "SCnSCB_ACTLR_DISMCYCINT_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetHandle", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_GetHandle(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:@SA@SysTick_Type", + "What": "Struct", + "defdec": "Def", + "display": "", "location": { - "column": "19", - "line": "822", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "759", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetHandle", + "members": [ + { + "ID": "c:@SA@SysTick_Type@FI@CTRL", + "What": "FieldDecl", + "defdec": "Def", + "display": "CTRL", + "location": { + "column": "18", + "line": "761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CTRL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_759_9" + }, + { + "ID": "c:@SA@SysTick_Type@FI@LOAD", + "What": "FieldDecl", + "defdec": "Def", + "display": "LOAD", + "location": { + "column": "18", + "line": "762", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "LOAD", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_759_9" + }, + { + "ID": "c:@SA@SysTick_Type@FI@VAL", + "What": "FieldDecl", + "defdec": "Def", + "display": "VAL", + "location": { + "column": "18", + "line": "763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "VAL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_759_9" + }, + { + "ID": "c:@SA@SysTick_Type@FI@CALIB", + "What": "FieldDecl", + "defdec": "Def", + "display": "CALIB", + "location": { + "column": "18", + "line": "764", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CALIB", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_759_9" + } + ], + "name": "", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetHandle", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_EXTI_GetHandle(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:@T@SysTick_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct SysTick_Type", "location": { - "column": "19", - "line": "822", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "3", + "line": "765", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetHandle", + "name": "SysTick_Type", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_IRQHandler(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@44243@macro@SysTick_CTRL_COUNTFLAG_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_COUNTFLAG_Pos", "location": { - "column": "19", - "line": "832", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_IRQHandler", + "name": "SysTick_CTRL_COUNTFLAG_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_IRQHandler(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@44375@macro@SysTick_CTRL_COUNTFLAG_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_COUNTFLAG_Msk", "location": { - "column": "19", - "line": "832", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "769", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_IRQHandler", + "name": "SysTick_CTRL_COUNTFLAG_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetPending", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:core_cm4.h@44505@macro@SysTick_CTRL_CLKSOURCE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_CLKSOURCE_Pos", "location": { - "column": "19", - "line": "833", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "771", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetPending", + "name": "SysTick_CTRL_CLKSOURCE_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GetPending", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:core_cm4.h@44637@macro@SysTick_CTRL_CLKSOURCE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_CLKSOURCE_Msk", "location": { - "column": "19", - "line": "833", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GetPending", + "name": "SysTick_CTRL_CLKSOURCE_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_ClearPending", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_ClearPending(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:core_cm4.h@44767@macro@SysTick_CTRL_TICKINT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_TICKINT_Pos", "location": { - "column": "19", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_ClearPending", + "name": "SysTick_CTRL_TICKINT_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_ClearPending", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_ClearPending(EXTI_HandleTypeDef *, uint32_t)", + "ID": "c:core_cm4.h@44897@macro@SysTick_CTRL_TICKINT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_TICKINT_Msk", "location": { - "column": "19", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "775", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_ClearPending", + "name": "SysTick_CTRL_TICKINT_Msk", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GenerateSWI", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_GenerateSWI(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@45025@macro@SysTick_CTRL_ENABLE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_ENABLE_Pos", "location": { - "column": "19", - "line": "835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "777", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GenerateSWI", + "name": "SysTick_CTRL_ENABLE_Pos", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_EXTI_GenerateSWI", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_EXTI_GenerateSWI(EXTI_HandleTypeDef *)", + "ID": "c:core_cm4.h@45154@macro@SysTick_CTRL_ENABLE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CTRL_ENABLE_Msk", "location": { - "column": "19", - "line": "835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + "column": "9", + "line": "778", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" }, - "name": "HAL_EXTI_GenerateSWI", + "name": "SysTick_CTRL_ENABLE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@45324@macro@SysTick_LOAD_RELOAD_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_LOAD_RELOAD_Pos", + "location": { + "column": "9", + "line": "781", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_LOAD_RELOAD_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@45453@macro@SysTick_LOAD_RELOAD_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_LOAD_RELOAD_Msk", + "location": { + "column": "9", + "line": "782", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_LOAD_RELOAD_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@45624@macro@SysTick_VAL_CURRENT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_VAL_CURRENT_Pos", + "location": { + "column": "9", + "line": "785", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_VAL_CURRENT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@45753@macro@SysTick_VAL_CURRENT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_VAL_CURRENT_Msk", + "location": { + "column": "9", + "line": "786", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_VAL_CURRENT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@45928@macro@SysTick_CALIB_NOREF_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_NOREF_Pos", + "location": { + "column": "9", + "line": "789", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_NOREF_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@46057@macro@SysTick_CALIB_NOREF_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_NOREF_Msk", + "location": { + "column": "9", + "line": "790", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_NOREF_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@46184@macro@SysTick_CALIB_SKEW_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_SKEW_Pos", + "location": { + "column": "9", + "line": "792", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_SKEW_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@46312@macro@SysTick_CALIB_SKEW_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_SKEW_Msk", + "location": { + "column": "9", + "line": "793", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_SKEW_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@46438@macro@SysTick_CALIB_TENMS_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_TENMS_Pos", + "location": { + "column": "9", + "line": "795", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_TENMS_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@46567@macro@SysTick_CALIB_TENMS_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_CALIB_TENMS_Msk", + "location": { + "column": "9", + "line": "796", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_CALIB_TENMS_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ITM_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "811", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043", + "What": "Union", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "813", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u8", + "What": "FieldDecl", + "defdec": "Def", + "display": "u8", + "location": { + "column": "22", + "line": "815", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "u8", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" + }, + { + "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u16", + "What": "FieldDecl", + "defdec": "Def", + "display": "u16", + "location": { + "column": "22", + "line": "816", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "u16", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" + }, + { + "ID": "c:@SA@ITM_Type@U@core_cm4.h@47043@FI@u32", + "What": "FieldDecl", + "defdec": "Def", + "display": "u32", + "location": { + "column": "22", + "line": "817", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "u32", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9::_anonymous_core_cm4_h_813_9" + } + ], + "name": "", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PORT", + "What": "FieldDecl", + "defdec": "Def", + "display": "PORT", + "location": { + "column": "6", + "line": "818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PORT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "819", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@TER", + "What": "FieldDecl", + "defdec": "Def", + "display": "TER", + "location": { + "column": "18", + "line": "820", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TER", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED1", + "location": { + "column": "18", + "line": "821", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@TPR", + "What": "FieldDecl", + "defdec": "Def", + "display": "TPR", + "location": { + "column": "18", + "line": "822", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED2", + "location": { + "column": "18", + "line": "823", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@TCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "TCR", + "location": { + "column": "18", + "line": "824", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED3", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED3", + "location": { + "column": "18", + "line": "825", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED4", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED4", + "location": { + "column": "18", + "line": "826", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED4", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@LAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "LAR", + "location": { + "column": "18", + "line": "827", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "LAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@LSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "LSR", + "location": { + "column": "18", + "line": "828", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "LSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@RESERVED5", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED5", + "location": { + "column": "18", + "line": "829", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED5", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID4", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID4", + "location": { + "column": "18", + "line": "830", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID4", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID5", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID5", + "location": { + "column": "18", + "line": "831", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID5", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID6", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID6", + "location": { + "column": "18", + "line": "832", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID6", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID7", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID7", + "location": { + "column": "18", + "line": "833", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID7", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID0", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID0", + "location": { + "column": "18", + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID1", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID1", + "location": { + "column": "18", + "line": "835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID2", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID2", + "location": { + "column": "18", + "line": "836", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@PID3", + "What": "FieldDecl", + "defdec": "Def", + "display": "PID3", + "location": { + "column": "18", + "line": "837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PID3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@CID0", + "What": "FieldDecl", + "defdec": "Def", + "display": "CID0", + "location": { + "column": "18", + "line": "838", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CID0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@CID1", + "What": "FieldDecl", + "defdec": "Def", + "display": "CID1", + "location": { + "column": "18", + "line": "839", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CID1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@CID2", + "What": "FieldDecl", + "defdec": "Def", + "display": "CID2", + "location": { + "column": "18", + "line": "840", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CID2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + }, + { + "ID": "c:@SA@ITM_Type@FI@CID3", + "What": "FieldDecl", + "defdec": "Def", + "display": "CID3", + "location": { + "column": "18", + "line": "841", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CID3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_811_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ITM_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct ITM_Type", + "location": { + "column": "3", + "line": "842", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@49559@macro@ITM_TPR_PRIVMASK_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TPR_PRIVMASK_Pos", + "location": { + "column": "9", + "line": "845", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TPR_PRIVMASK_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@49685@macro@ITM_TPR_PRIVMASK_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TPR_PRIVMASK_Msk", + "location": { + "column": "9", + "line": "846", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TPR_PRIVMASK_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@49855@macro@ITM_TCR_BUSY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_BUSY_Pos", + "location": { + "column": "9", + "line": "849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_BUSY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@49977@macro@ITM_TCR_BUSY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_BUSY_Msk", + "location": { + "column": "9", + "line": "850", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_BUSY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50097@macro@ITM_TCR_TraceBusID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TraceBusID_Pos", + "location": { + "column": "9", + "line": "852", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TraceBusID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50220@macro@ITM_TCR_TraceBusID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TraceBusID_Msk", + "location": { + "column": "9", + "line": "853", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TraceBusID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50341@macro@ITM_TCR_GTSFREQ_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_GTSFREQ_Pos", + "location": { + "column": "9", + "line": "855", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_GTSFREQ_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50485@macro@ITM_TCR_GTSFREQ_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_GTSFREQ_Msk", + "location": { + "column": "9", + "line": "856", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_GTSFREQ_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50627@macro@ITM_TCR_TSPrescale_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TSPrescale_Pos", + "location": { + "column": "9", + "line": "858", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TSPrescale_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50755@macro@ITM_TCR_TSPrescale_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TSPrescale_Msk", + "location": { + "column": "9", + "line": "859", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TSPrescale_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@50881@macro@ITM_TCR_SWOENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_SWOENA_Pos", + "location": { + "column": "9", + "line": "861", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_SWOENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51005@macro@ITM_TCR_SWOENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_SWOENA_Msk", + "location": { + "column": "9", + "line": "862", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_SWOENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51127@macro@ITM_TCR_DWTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_DWTENA_Pos", + "location": { + "column": "9", + "line": "864", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_DWTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51251@macro@ITM_TCR_DWTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_DWTENA_Msk", + "location": { + "column": "9", + "line": "865", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_DWTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51373@macro@ITM_TCR_SYNCENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_SYNCENA_Pos", + "location": { + "column": "9", + "line": "867", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_SYNCENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51498@macro@ITM_TCR_SYNCENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_SYNCENA_Msk", + "location": { + "column": "9", + "line": "868", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_SYNCENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51621@macro@ITM_TCR_TSENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TSENA_Pos", + "location": { + "column": "9", + "line": "870", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TSENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51744@macro@ITM_TCR_TSENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_TSENA_Msk", + "location": { + "column": "9", + "line": "871", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_TSENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51865@macro@ITM_TCR_ITMENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_ITMENA_Pos", + "location": { + "column": "9", + "line": "873", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_ITMENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@51997@macro@ITM_TCR_ITMENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_TCR_ITMENA_Msk", + "location": { + "column": "9", + "line": "874", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_TCR_ITMENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52171@macro@ITM_LSR_ByteAcc_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_ByteAcc_Pos", + "location": { + "column": "9", + "line": "877", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_ByteAcc_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52296@macro@ITM_LSR_ByteAcc_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_ByteAcc_Msk", + "location": { + "column": "9", + "line": "878", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_ByteAcc_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52419@macro@ITM_LSR_Access_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_Access_Pos", + "location": { + "column": "9", + "line": "880", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_Access_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52543@macro@ITM_LSR_Access_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_Access_Msk", + "location": { + "column": "9", + "line": "881", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_Access_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52665@macro@ITM_LSR_Present_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_Present_Pos", + "location": { + "column": "9", + "line": "883", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_Present_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@52790@macro@ITM_LSR_Present_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_LSR_Present_Msk", + "location": { + "column": "9", + "line": "884", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_LSR_Present_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@DWT_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "899", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@DWT_Type@FI@CTRL", + "What": "FieldDecl", + "defdec": "Def", + "display": "CTRL", + "location": { + "column": "18", + "line": "901", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CTRL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@CYCCNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "CYCCNT", + "location": { + "column": "18", + "line": "902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CYCCNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@CPICNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "CPICNT", + "location": { + "column": "18", + "line": "903", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CPICNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@EXCCNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "EXCCNT", + "location": { + "column": "18", + "line": "904", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXCCNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@SLEEPCNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "SLEEPCNT", + "location": { + "column": "18", + "line": "905", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SLEEPCNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@LSUCNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "LSUCNT", + "location": { + "column": "18", + "line": "906", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "LSUCNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@FOLDCNT", + "What": "FieldDecl", + "defdec": "Def", + "display": "FOLDCNT", + "location": { + "column": "18", + "line": "907", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FOLDCNT", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@PCSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "PCSR", + "location": { + "column": "18", + "line": "908", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PCSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@COMP0", + "What": "FieldDecl", + "defdec": "Def", + "display": "COMP0", + "location": { + "column": "18", + "line": "909", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "COMP0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@MASK0", + "What": "FieldDecl", + "defdec": "Def", + "display": "MASK0", + "location": { + "column": "18", + "line": "910", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MASK0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@FUNCTION0", + "What": "FieldDecl", + "defdec": "Def", + "display": "FUNCTION0", + "location": { + "column": "18", + "line": "911", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FUNCTION0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "912", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@COMP1", + "What": "FieldDecl", + "defdec": "Def", + "display": "COMP1", + "location": { + "column": "18", + "line": "913", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "COMP1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@MASK1", + "What": "FieldDecl", + "defdec": "Def", + "display": "MASK1", + "location": { + "column": "18", + "line": "914", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MASK1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@FUNCTION1", + "What": "FieldDecl", + "defdec": "Def", + "display": "FUNCTION1", + "location": { + "column": "18", + "line": "915", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FUNCTION1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@RESERVED1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED1", + "location": { + "column": "18", + "line": "916", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@COMP2", + "What": "FieldDecl", + "defdec": "Def", + "display": "COMP2", + "location": { + "column": "18", + "line": "917", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "COMP2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@MASK2", + "What": "FieldDecl", + "defdec": "Def", + "display": "MASK2", + "location": { + "column": "18", + "line": "918", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MASK2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@FUNCTION2", + "What": "FieldDecl", + "defdec": "Def", + "display": "FUNCTION2", + "location": { + "column": "18", + "line": "919", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FUNCTION2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@RESERVED2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED2", + "location": { + "column": "18", + "line": "920", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@COMP3", + "What": "FieldDecl", + "defdec": "Def", + "display": "COMP3", + "location": { + "column": "18", + "line": "921", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "COMP3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@MASK3", + "What": "FieldDecl", + "defdec": "Def", + "display": "MASK3", + "location": { + "column": "18", + "line": "922", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MASK3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + }, + { + "ID": "c:@SA@DWT_Type@FI@FUNCTION3", + "What": "FieldDecl", + "defdec": "Def", + "display": "FUNCTION3", + "location": { + "column": "18", + "line": "923", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FUNCTION3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_899_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@DWT_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct DWT_Type", + "location": { + "column": "3", + "line": "924", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55248@macro@DWT_CTRL_NUMCOMP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NUMCOMP_Pos", + "location": { + "column": "9", + "line": "927", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NUMCOMP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55371@macro@DWT_CTRL_NUMCOMP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NUMCOMP_Msk", + "location": { + "column": "9", + "line": "928", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NUMCOMP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55492@macro@DWT_CTRL_NOTRCPKT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOTRCPKT_Pos", + "location": { + "column": "9", + "line": "930", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOTRCPKT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55616@macro@DWT_CTRL_NOTRCPKT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOTRCPKT_Msk", + "location": { + "column": "9", + "line": "931", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOTRCPKT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55738@macro@DWT_CTRL_NOEXTTRIG_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOEXTTRIG_Pos", + "location": { + "column": "9", + "line": "933", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOEXTTRIG_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55863@macro@DWT_CTRL_NOEXTTRIG_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOEXTTRIG_Msk", + "location": { + "column": "9", + "line": "934", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOEXTTRIG_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@55986@macro@DWT_CTRL_NOCYCCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOCYCCNT_Pos", + "location": { + "column": "9", + "line": "936", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOCYCCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56110@macro@DWT_CTRL_NOCYCCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOCYCCNT_Msk", + "location": { + "column": "9", + "line": "937", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOCYCCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56232@macro@DWT_CTRL_NOPRFCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOPRFCNT_Pos", + "location": { + "column": "9", + "line": "939", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOPRFCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56356@macro@DWT_CTRL_NOPRFCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_NOPRFCNT_Msk", + "location": { + "column": "9", + "line": "940", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_NOPRFCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56478@macro@DWT_CTRL_CYCEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCEVTENA_Pos", + "location": { + "column": "9", + "line": "942", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56603@macro@DWT_CTRL_CYCEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCEVTENA_Msk", + "location": { + "column": "9", + "line": "943", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56726@macro@DWT_CTRL_FOLDEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_FOLDEVTENA_Pos", + "location": { + "column": "9", + "line": "945", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_FOLDEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56852@macro@DWT_CTRL_FOLDEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_FOLDEVTENA_Msk", + "location": { + "column": "9", + "line": "946", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_FOLDEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@56976@macro@DWT_CTRL_LSUEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_LSUEVTENA_Pos", + "location": { + "column": "9", + "line": "948", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_LSUEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57101@macro@DWT_CTRL_LSUEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_LSUEVTENA_Msk", + "location": { + "column": "9", + "line": "949", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_LSUEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57224@macro@DWT_CTRL_SLEEPEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_SLEEPEVTENA_Pos", + "location": { + "column": "9", + "line": "951", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_SLEEPEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57351@macro@DWT_CTRL_SLEEPEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_SLEEPEVTENA_Msk", + "location": { + "column": "9", + "line": "952", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_SLEEPEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57476@macro@DWT_CTRL_EXCEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_EXCEVTENA_Pos", + "location": { + "column": "9", + "line": "954", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_EXCEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57601@macro@DWT_CTRL_EXCEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_EXCEVTENA_Msk", + "location": { + "column": "9", + "line": "955", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_EXCEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57724@macro@DWT_CTRL_CPIEVTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CPIEVTENA_Pos", + "location": { + "column": "9", + "line": "957", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CPIEVTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57849@macro@DWT_CTRL_CPIEVTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CPIEVTENA_Msk", + "location": { + "column": "9", + "line": "958", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CPIEVTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@57972@macro@DWT_CTRL_EXCTRCENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_EXCTRCENA_Pos", + "location": { + "column": "9", + "line": "960", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_EXCTRCENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58097@macro@DWT_CTRL_EXCTRCENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_EXCTRCENA_Msk", + "location": { + "column": "9", + "line": "961", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_EXCTRCENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58220@macro@DWT_CTRL_PCSAMPLENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_PCSAMPLENA_Pos", + "location": { + "column": "9", + "line": "963", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_PCSAMPLENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58346@macro@DWT_CTRL_PCSAMPLENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_PCSAMPLENA_Msk", + "location": { + "column": "9", + "line": "964", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_PCSAMPLENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58470@macro@DWT_CTRL_SYNCTAP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_SYNCTAP_Pos", + "location": { + "column": "9", + "line": "966", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_SYNCTAP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58593@macro@DWT_CTRL_SYNCTAP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_SYNCTAP_Msk", + "location": { + "column": "9", + "line": "967", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_SYNCTAP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58714@macro@DWT_CTRL_CYCTAP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCTAP_Pos", + "location": { + "column": "9", + "line": "969", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCTAP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58836@macro@DWT_CTRL_CYCTAP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCTAP_Msk", + "location": { + "column": "9", + "line": "970", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCTAP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@58956@macro@DWT_CTRL_POSTINIT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_POSTINIT_Pos", + "location": { + "column": "9", + "line": "972", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_POSTINIT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59080@macro@DWT_CTRL_POSTINIT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_POSTINIT_Msk", + "location": { + "column": "9", + "line": "973", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_POSTINIT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59202@macro@DWT_CTRL_POSTPRESET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_POSTPRESET_Pos", + "location": { + "column": "9", + "line": "975", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_POSTPRESET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59328@macro@DWT_CTRL_POSTPRESET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_POSTPRESET_Msk", + "location": { + "column": "9", + "line": "976", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_POSTPRESET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59452@macro@DWT_CTRL_CYCCNTENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCCNTENA_Pos", + "location": { + "column": "9", + "line": "978", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCCNTENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59577@macro@DWT_CTRL_CYCCNTENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CTRL_CYCCNTENA_Msk", + "location": { + "column": "9", + "line": "979", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CTRL_CYCCNTENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59742@macro@DWT_CPICNT_CPICNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CPICNT_CPICNT_Pos", + "location": { + "column": "9", + "line": "982", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CPICNT_CPICNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@59866@macro@DWT_CPICNT_CPICNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_CPICNT_CPICNT_Msk", + "location": { + "column": "9", + "line": "983", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_CPICNT_CPICNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60045@macro@DWT_EXCCNT_EXCCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_EXCCNT_EXCCNT_Pos", + "location": { + "column": "9", + "line": "986", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_EXCCNT_EXCCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60169@macro@DWT_EXCCNT_EXCCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_EXCCNT_EXCCNT_Msk", + "location": { + "column": "9", + "line": "987", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_EXCCNT_EXCCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60335@macro@DWT_SLEEPCNT_SLEEPCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_SLEEPCNT_SLEEPCNT_Pos", + "location": { + "column": "9", + "line": "990", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_SLEEPCNT_SLEEPCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60463@macro@DWT_SLEEPCNT_SLEEPCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_SLEEPCNT_SLEEPCNT_Msk", + "location": { + "column": "9", + "line": "991", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_SLEEPCNT_SLEEPCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60631@macro@DWT_LSUCNT_LSUCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_LSUCNT_LSUCNT_Pos", + "location": { + "column": "9", + "line": "994", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_LSUCNT_LSUCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60755@macro@DWT_LSUCNT_LSUCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_LSUCNT_LSUCNT_Msk", + "location": { + "column": "9", + "line": "995", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_LSUCNT_LSUCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@60934@macro@DWT_FOLDCNT_FOLDCNT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FOLDCNT_FOLDCNT_Pos", + "location": { + "column": "9", + "line": "998", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FOLDCNT_FOLDCNT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61060@macro@DWT_FOLDCNT_FOLDCNT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FOLDCNT_FOLDCNT_Msk", + "location": { + "column": "9", + "line": "999", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FOLDCNT_FOLDCNT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61232@macro@DWT_MASK_MASK_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_MASK_MASK_Pos", + "location": { + "column": "9", + "line": "1002", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_MASK_MASK_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61352@macro@DWT_MASK_MASK_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_MASK_MASK_Msk", + "location": { + "column": "9", + "line": "1003", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_MASK_MASK_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61522@macro@DWT_FUNCTION_MATCHED_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_MATCHED_Pos", + "location": { + "column": "9", + "line": "1006", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_MATCHED_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61649@macro@DWT_FUNCTION_MATCHED_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_MATCHED_Msk", + "location": { + "column": "9", + "line": "1007", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_MATCHED_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61774@macro@DWT_FUNCTION_DATAVADDR1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVADDR1_Pos", + "location": { + "column": "9", + "line": "1009", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVADDR1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@61904@macro@DWT_FUNCTION_DATAVADDR1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVADDR1_Msk", + "location": { + "column": "9", + "line": "1010", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVADDR1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62032@macro@DWT_FUNCTION_DATAVADDR0_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVADDR0_Pos", + "location": { + "column": "9", + "line": "1012", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVADDR0_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62162@macro@DWT_FUNCTION_DATAVADDR0_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVADDR0_Msk", + "location": { + "column": "9", + "line": "1013", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVADDR0_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62290@macro@DWT_FUNCTION_DATAVSIZE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVSIZE_Pos", + "location": { + "column": "9", + "line": "1015", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVSIZE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62419@macro@DWT_FUNCTION_DATAVSIZE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVSIZE_Msk", + "location": { + "column": "9", + "line": "1016", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVSIZE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62546@macro@DWT_FUNCTION_LNK1ENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_LNK1ENA_Pos", + "location": { + "column": "9", + "line": "1018", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_LNK1ENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62673@macro@DWT_FUNCTION_LNK1ENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_LNK1ENA_Msk", + "location": { + "column": "9", + "line": "1019", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_LNK1ENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62798@macro@DWT_FUNCTION_DATAVMATCH_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVMATCH_Pos", + "location": { + "column": "9", + "line": "1021", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVMATCH_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@62928@macro@DWT_FUNCTION_DATAVMATCH_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_DATAVMATCH_Msk", + "location": { + "column": "9", + "line": "1022", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_DATAVMATCH_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63056@macro@DWT_FUNCTION_CYCMATCH_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_CYCMATCH_Pos", + "location": { + "column": "9", + "line": "1024", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_CYCMATCH_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63184@macro@DWT_FUNCTION_CYCMATCH_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_CYCMATCH_Msk", + "location": { + "column": "9", + "line": "1025", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_CYCMATCH_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63310@macro@DWT_FUNCTION_EMITRANGE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_EMITRANGE_Pos", + "location": { + "column": "9", + "line": "1027", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_EMITRANGE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63439@macro@DWT_FUNCTION_EMITRANGE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_EMITRANGE_Msk", + "location": { + "column": "9", + "line": "1028", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_EMITRANGE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63566@macro@DWT_FUNCTION_FUNCTION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_FUNCTION_Pos", + "location": { + "column": "9", + "line": "1030", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_FUNCTION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@63694@macro@DWT_FUNCTION_FUNCTION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_FUNCTION_FUNCTION_Msk", + "location": { + "column": "9", + "line": "1031", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_FUNCTION_FUNCTION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TPI_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "1046", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@TPI_Type@FI@SSPSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "SSPSR", + "location": { + "column": "18", + "line": "1048", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SSPSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@CSPSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "CSPSR", + "location": { + "column": "18", + "line": "1049", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CSPSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "1050", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@ACPR", + "What": "FieldDecl", + "defdec": "Def", + "display": "ACPR", + "location": { + "column": "18", + "line": "1051", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ACPR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED1", + "location": { + "column": "18", + "line": "1052", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@SPPR", + "What": "FieldDecl", + "defdec": "Def", + "display": "SPPR", + "location": { + "column": "18", + "line": "1053", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SPPR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED2", + "location": { + "column": "18", + "line": "1054", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@FFSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FFSR", + "location": { + "column": "18", + "line": "1055", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FFSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@FFCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FFCR", + "location": { + "column": "18", + "line": "1056", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FFCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@FSCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FSCR", + "location": { + "column": "18", + "line": "1057", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FSCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED3", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED3", + "location": { + "column": "18", + "line": "1058", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@TRIGGER", + "What": "FieldDecl", + "defdec": "Def", + "display": "TRIGGER", + "location": { + "column": "18", + "line": "1059", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TRIGGER", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@FIFO0", + "What": "FieldDecl", + "defdec": "Def", + "display": "FIFO0", + "location": { + "column": "18", + "line": "1060", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FIFO0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@ITATBCTR2", + "What": "FieldDecl", + "defdec": "Def", + "display": "ITATBCTR2", + "location": { + "column": "18", + "line": "1061", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITATBCTR2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED4", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED4", + "location": { + "column": "18", + "line": "1062", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED4", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@ITATBCTR0", + "What": "FieldDecl", + "defdec": "Def", + "display": "ITATBCTR0", + "location": { + "column": "18", + "line": "1063", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITATBCTR0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@FIFO1", + "What": "FieldDecl", + "defdec": "Def", + "display": "FIFO1", + "location": { + "column": "18", + "line": "1064", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FIFO1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@ITCTRL", + "What": "FieldDecl", + "defdec": "Def", + "display": "ITCTRL", + "location": { + "column": "18", + "line": "1065", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITCTRL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED5", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED5", + "location": { + "column": "18", + "line": "1066", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED5", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@CLAIMSET", + "What": "FieldDecl", + "defdec": "Def", + "display": "CLAIMSET", + "location": { + "column": "18", + "line": "1067", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CLAIMSET", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@CLAIMCLR", + "What": "FieldDecl", + "defdec": "Def", + "display": "CLAIMCLR", + "location": { + "column": "18", + "line": "1068", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CLAIMCLR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@RESERVED7", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED7", + "location": { + "column": "18", + "line": "1069", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED7", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@DEVID", + "What": "FieldDecl", + "defdec": "Def", + "display": "DEVID", + "location": { + "column": "18", + "line": "1070", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DEVID", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + }, + { + "ID": "c:@SA@TPI_Type@FI@DEVTYPE", + "What": "FieldDecl", + "defdec": "Def", + "display": "DEVTYPE", + "location": { + "column": "18", + "line": "1071", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DEVTYPE", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1046_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TPI_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct TPI_Type", + "location": { + "column": "3", + "line": "1072", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66074@macro@TPI_ACPR_PRESCALER_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ACPR_PRESCALER_Pos", + "location": { + "column": "9", + "line": "1075", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ACPR_PRESCALER_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66199@macro@TPI_ACPR_PRESCALER_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ACPR_PRESCALER_Msk", + "location": { + "column": "9", + "line": "1076", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ACPR_PRESCALER_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66376@macro@TPI_SPPR_TXMODE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_SPPR_TXMODE_Pos", + "location": { + "column": "9", + "line": "1079", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_SPPR_TXMODE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66498@macro@TPI_SPPR_TXMODE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_SPPR_TXMODE_Msk", + "location": { + "column": "9", + "line": "1080", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_SPPR_TXMODE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66677@macro@TPI_FFSR_FtNonStop_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FtNonStop_Pos", + "location": { + "column": "9", + "line": "1083", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FtNonStop_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66802@macro@TPI_FFSR_FtNonStop_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FtNonStop_Msk", + "location": { + "column": "9", + "line": "1084", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FtNonStop_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@66925@macro@TPI_FFSR_TCPresent_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_TCPresent_Pos", + "location": { + "column": "9", + "line": "1086", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_TCPresent_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67050@macro@TPI_FFSR_TCPresent_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_TCPresent_Msk", + "location": { + "column": "9", + "line": "1087", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_TCPresent_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67173@macro@TPI_FFSR_FtStopped_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FtStopped_Pos", + "location": { + "column": "9", + "line": "1089", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FtStopped_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67298@macro@TPI_FFSR_FtStopped_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FtStopped_Msk", + "location": { + "column": "9", + "line": "1090", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FtStopped_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67421@macro@TPI_FFSR_FlInProg_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FlInProg_Pos", + "location": { + "column": "9", + "line": "1092", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FlInProg_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67545@macro@TPI_FFSR_FlInProg_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFSR_FlInProg_Msk", + "location": { + "column": "9", + "line": "1093", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFSR_FlInProg_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67727@macro@TPI_FFCR_TrigIn_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFCR_TrigIn_Pos", + "location": { + "column": "9", + "line": "1096", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFCR_TrigIn_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67849@macro@TPI_FFCR_TrigIn_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFCR_TrigIn_Msk", + "location": { + "column": "9", + "line": "1097", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFCR_TrigIn_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@67969@macro@TPI_FFCR_EnFCont_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFCR_EnFCont_Pos", + "location": { + "column": "9", + "line": "1099", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFCR_EnFCont_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68092@macro@TPI_FFCR_EnFCont_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FFCR_EnFCont_Msk", + "location": { + "column": "9", + "line": "1100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FFCR_EnFCont_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68253@macro@TPI_TRIGGER_TRIGGER_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_TRIGGER_TRIGGER_Pos", + "location": { + "column": "9", + "line": "1103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_TRIGGER_TRIGGER_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68379@macro@TPI_TRIGGER_TRIGGER_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_TRIGGER_TRIGGER_Msk", + "location": { + "column": "9", + "line": "1104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_TRIGGER_TRIGGER_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68564@macro@TPI_FIFO0_ITM_ATVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ITM_ATVALID_Pos", + "location": { + "column": "9", + "line": "1107", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ITM_ATVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68692@macro@TPI_FIFO0_ITM_ATVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ITM_ATVALID_Msk", + "location": { + "column": "9", + "line": "1108", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ITM_ATVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68818@macro@TPI_FIFO0_ITM_bytecount_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ITM_bytecount_Pos", + "location": { + "column": "9", + "line": "1110", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ITM_bytecount_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@68948@macro@TPI_FIFO0_ITM_bytecount_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ITM_bytecount_Msk", + "location": { + "column": "9", + "line": "1111", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ITM_bytecount_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69076@macro@TPI_FIFO0_ETM_ATVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM_ATVALID_Pos", + "location": { + "column": "9", + "line": "1113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM_ATVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69204@macro@TPI_FIFO0_ETM_ATVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM_ATVALID_Msk", + "location": { + "column": "9", + "line": "1114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM_ATVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69330@macro@TPI_FIFO0_ETM_bytecount_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM_bytecount_Pos", + "location": { + "column": "9", + "line": "1116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM_bytecount_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69460@macro@TPI_FIFO0_ETM_bytecount_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM_bytecount_Msk", + "location": { + "column": "9", + "line": "1117", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM_bytecount_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69588@macro@TPI_FIFO0_ETM2_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM2_Pos", + "location": { + "column": "9", + "line": "1119", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM2_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69709@macro@TPI_FIFO0_ETM2_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM2_Msk", + "location": { + "column": "9", + "line": "1120", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM2_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69828@macro@TPI_FIFO0_ETM1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM1_Pos", + "location": { + "column": "9", + "line": "1122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@69949@macro@TPI_FIFO0_ETM1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM1_Msk", + "location": { + "column": "9", + "line": "1123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70068@macro@TPI_FIFO0_ETM0_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM0_Pos", + "location": { + "column": "9", + "line": "1125", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM0_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70189@macro@TPI_FIFO0_ETM0_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO0_ETM0_Msk", + "location": { + "column": "9", + "line": "1126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO0_ETM0_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70350@macro@TPI_ITATBCTR2_ATREADY2_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR2_ATREADY2_Pos", + "location": { + "column": "9", + "line": "1129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR2_ATREADY2_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70479@macro@TPI_ITATBCTR2_ATREADY2_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR2_ATREADY2_Msk", + "location": { + "column": "9", + "line": "1130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR2_ATREADY2_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70606@macro@TPI_ITATBCTR2_ATREADY1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR2_ATREADY1_Pos", + "location": { + "column": "9", + "line": "1132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR2_ATREADY1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70735@macro@TPI_ITATBCTR2_ATREADY1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR2_ATREADY1_Msk", + "location": { + "column": "9", + "line": "1133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR2_ATREADY1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@70923@macro@TPI_FIFO1_ITM_ATVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM_ATVALID_Pos", + "location": { + "column": "9", + "line": "1136", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM_ATVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71051@macro@TPI_FIFO1_ITM_ATVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM_ATVALID_Msk", + "location": { + "column": "9", + "line": "1137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM_ATVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71177@macro@TPI_FIFO1_ITM_bytecount_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM_bytecount_Pos", + "location": { + "column": "9", + "line": "1139", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM_bytecount_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71307@macro@TPI_FIFO1_ITM_bytecount_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM_bytecount_Msk", + "location": { + "column": "9", + "line": "1140", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM_bytecount_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71435@macro@TPI_FIFO1_ETM_ATVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ETM_ATVALID_Pos", + "location": { + "column": "9", + "line": "1142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ETM_ATVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71563@macro@TPI_FIFO1_ETM_ATVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ETM_ATVALID_Msk", + "location": { + "column": "9", + "line": "1143", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ETM_ATVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71689@macro@TPI_FIFO1_ETM_bytecount_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ETM_bytecount_Pos", + "location": { + "column": "9", + "line": "1145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ETM_bytecount_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71819@macro@TPI_FIFO1_ETM_bytecount_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ETM_bytecount_Msk", + "location": { + "column": "9", + "line": "1146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ETM_bytecount_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@71947@macro@TPI_FIFO1_ITM2_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM2_Pos", + "location": { + "column": "9", + "line": "1148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM2_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72068@macro@TPI_FIFO1_ITM2_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM2_Msk", + "location": { + "column": "9", + "line": "1149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM2_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72187@macro@TPI_FIFO1_ITM1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM1_Pos", + "location": { + "column": "9", + "line": "1151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72308@macro@TPI_FIFO1_ITM1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM1_Msk", + "location": { + "column": "9", + "line": "1152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72427@macro@TPI_FIFO1_ITM0_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM0_Pos", + "location": { + "column": "9", + "line": "1154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM0_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72548@macro@TPI_FIFO1_ITM0_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_FIFO1_ITM0_Msk", + "location": { + "column": "9", + "line": "1155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_FIFO1_ITM0_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72709@macro@TPI_ITATBCTR0_ATREADY2_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR0_ATREADY2_Pos", + "location": { + "column": "9", + "line": "1158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR0_ATREADY2_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72838@macro@TPI_ITATBCTR0_ATREADY2_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR0_ATREADY2_Msk", + "location": { + "column": "9", + "line": "1159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR0_ATREADY2_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@72965@macro@TPI_ITATBCTR0_ATREADY1_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR0_ATREADY1_Pos", + "location": { + "column": "9", + "line": "1161", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR0_ATREADY1_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73094@macro@TPI_ITATBCTR0_ATREADY1_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITATBCTR0_ATREADY1_Msk", + "location": { + "column": "9", + "line": "1162", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITATBCTR0_ATREADY1_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73278@macro@TPI_ITCTRL_Mode_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITCTRL_Mode_Pos", + "location": { + "column": "9", + "line": "1165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITCTRL_Mode_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73400@macro@TPI_ITCTRL_Mode_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_ITCTRL_Mode_Msk", + "location": { + "column": "9", + "line": "1166", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_ITCTRL_Mode_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73558@macro@TPI_DEVID_NRZVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_NRZVALID_Pos", + "location": { + "column": "9", + "line": "1169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_NRZVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73683@macro@TPI_DEVID_NRZVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_NRZVALID_Msk", + "location": { + "column": "9", + "line": "1170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_NRZVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73806@macro@TPI_DEVID_MANCVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_MANCVALID_Pos", + "location": { + "column": "9", + "line": "1172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_MANCVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@73932@macro@TPI_DEVID_MANCVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_MANCVALID_Msk", + "location": { + "column": "9", + "line": "1173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_MANCVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74056@macro@TPI_DEVID_PTINVALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_PTINVALID_Pos", + "location": { + "column": "9", + "line": "1175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_PTINVALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74182@macro@TPI_DEVID_PTINVALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_PTINVALID_Msk", + "location": { + "column": "9", + "line": "1176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_PTINVALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74306@macro@TPI_DEVID_MinBufSz_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_MinBufSz_Pos", + "location": { + "column": "9", + "line": "1178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_MinBufSz_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74431@macro@TPI_DEVID_MinBufSz_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_MinBufSz_Msk", + "location": { + "column": "9", + "line": "1179", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_MinBufSz_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74554@macro@TPI_DEVID_AsynClkIn_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_AsynClkIn_Pos", + "location": { + "column": "9", + "line": "1181", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_AsynClkIn_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74680@macro@TPI_DEVID_AsynClkIn_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_AsynClkIn_Msk", + "location": { + "column": "9", + "line": "1182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_AsynClkIn_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74804@macro@TPI_DEVID_NrTraceInput_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_NrTraceInput_Pos", + "location": { + "column": "9", + "line": "1184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_NrTraceInput_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@74933@macro@TPI_DEVID_NrTraceInput_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVID_NrTraceInput_Msk", + "location": { + "column": "9", + "line": "1185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVID_NrTraceInput_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@75100@macro@TPI_DEVTYPE_SubType_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVTYPE_SubType_Pos", + "location": { + "column": "9", + "line": "1188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVTYPE_SubType_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@75226@macro@TPI_DEVTYPE_SubType_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVTYPE_SubType_Msk", + "location": { + "column": "9", + "line": "1189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVTYPE_SubType_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@75350@macro@TPI_DEVTYPE_MajorType_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVTYPE_MajorType_Pos", + "location": { + "column": "9", + "line": "1191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVTYPE_MajorType_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@75478@macro@TPI_DEVTYPE_MajorType_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_DEVTYPE_MajorType_Msk", + "location": { + "column": "9", + "line": "1192", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_DEVTYPE_MajorType_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@MPU_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "1208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@MPU_Type@FI@TYPE", + "What": "FieldDecl", + "defdec": "Def", + "display": "TYPE", + "location": { + "column": "18", + "line": "1210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TYPE", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@CTRL", + "What": "FieldDecl", + "defdec": "Def", + "display": "CTRL", + "location": { + "column": "18", + "line": "1211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CTRL", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RNR", + "What": "FieldDecl", + "defdec": "Def", + "display": "RNR", + "location": { + "column": "18", + "line": "1212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RNR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RBAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "RBAR", + "location": { + "column": "18", + "line": "1213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RBAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RASR", + "What": "FieldDecl", + "defdec": "Def", + "display": "RASR", + "location": { + "column": "18", + "line": "1214", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RASR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RBAR_A1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RBAR_A1", + "location": { + "column": "18", + "line": "1215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RBAR_A1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RASR_A1", + "What": "FieldDecl", + "defdec": "Def", + "display": "RASR_A1", + "location": { + "column": "18", + "line": "1216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RASR_A1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RBAR_A2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RBAR_A2", + "location": { + "column": "18", + "line": "1217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RBAR_A2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RASR_A2", + "What": "FieldDecl", + "defdec": "Def", + "display": "RASR_A2", + "location": { + "column": "18", + "line": "1218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RASR_A2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RBAR_A3", + "What": "FieldDecl", + "defdec": "Def", + "display": "RBAR_A3", + "location": { + "column": "18", + "line": "1219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RBAR_A3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + }, + { + "ID": "c:@SA@MPU_Type@FI@RASR_A3", + "What": "FieldDecl", + "defdec": "Def", + "display": "RASR_A3", + "location": { + "column": "18", + "line": "1220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RASR_A3", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1208_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@MPU_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct MPU_Type", + "location": { + "column": "3", + "line": "1221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77170@macro@MPU_TYPE_RALIASES", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_RALIASES", + "location": { + "column": "9", + "line": "1223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_RALIASES", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77256@macro@MPU_TYPE_IREGION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_IREGION_Pos", + "location": { + "column": "9", + "line": "1226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_IREGION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77382@macro@MPU_TYPE_IREGION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_IREGION_Msk", + "location": { + "column": "9", + "line": "1227", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_IREGION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77506@macro@MPU_TYPE_DREGION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_DREGION_Pos", + "location": { + "column": "9", + "line": "1229", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_DREGION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77632@macro@MPU_TYPE_DREGION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_DREGION_Msk", + "location": { + "column": "9", + "line": "1230", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_DREGION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77756@macro@MPU_TYPE_SEPARATE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_SEPARATE_Pos", + "location": { + "column": "9", + "line": "1232", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_SEPARATE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@77883@macro@MPU_TYPE_SEPARATE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TYPE_SEPARATE_Msk", + "location": { + "column": "9", + "line": "1233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_TYPE_SEPARATE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78048@macro@MPU_CTRL_PRIVDEFENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_PRIVDEFENA_Pos", + "location": { + "column": "9", + "line": "1236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_PRIVDEFENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78177@macro@MPU_CTRL_PRIVDEFENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_PRIVDEFENA_Msk", + "location": { + "column": "9", + "line": "1237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_PRIVDEFENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78304@macro@MPU_CTRL_HFNMIENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_HFNMIENA_Pos", + "location": { + "column": "9", + "line": "1239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_HFNMIENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78431@macro@MPU_CTRL_HFNMIENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_HFNMIENA_Msk", + "location": { + "column": "9", + "line": "1240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_HFNMIENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78556@macro@MPU_CTRL_ENABLE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_ENABLE_Pos", + "location": { + "column": "9", + "line": "1242", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_ENABLE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78681@macro@MPU_CTRL_ENABLE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_CTRL_ENABLE_Msk", + "location": { + "column": "9", + "line": "1243", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_CTRL_ENABLE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78850@macro@MPU_RNR_REGION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RNR_REGION_Pos", + "location": { + "column": "9", + "line": "1246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RNR_REGION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@78974@macro@MPU_RNR_REGION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RNR_REGION_Msk", + "location": { + "column": "9", + "line": "1247", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RNR_REGION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79148@macro@MPU_RBAR_ADDR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_ADDR_Pos", + "location": { + "column": "9", + "line": "1250", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_ADDR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79271@macro@MPU_RBAR_ADDR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_ADDR_Msk", + "location": { + "column": "9", + "line": "1251", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_ADDR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79392@macro@MPU_RBAR_VALID_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_VALID_Pos", + "location": { + "column": "9", + "line": "1253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_VALID_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79516@macro@MPU_RBAR_VALID_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_VALID_Msk", + "location": { + "column": "9", + "line": "1254", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_VALID_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79638@macro@MPU_RBAR_REGION_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_REGION_Pos", + "location": { + "column": "9", + "line": "1256", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_REGION_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79763@macro@MPU_RBAR_REGION_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RBAR_REGION_Msk", + "location": { + "column": "9", + "line": "1257", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RBAR_REGION_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@79944@macro@MPU_RASR_ATTRS_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_ATTRS_Pos", + "location": { + "column": "9", + "line": "1260", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_ATTRS_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80089@macro@MPU_RASR_ATTRS_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_ATTRS_Msk", + "location": { + "column": "9", + "line": "1261", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_ATTRS_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80232@macro@MPU_RASR_XN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_XN_Pos", + "location": { + "column": "9", + "line": "1263", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_XN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80359@macro@MPU_RASR_XN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_XN_Msk", + "location": { + "column": "9", + "line": "1264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_XN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80484@macro@MPU_RASR_AP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_AP_Pos", + "location": { + "column": "9", + "line": "1266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_AP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80611@macro@MPU_RASR_AP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_AP_Msk", + "location": { + "column": "9", + "line": "1267", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_AP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80736@macro@MPU_RASR_TEX_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_TEX_Pos", + "location": { + "column": "9", + "line": "1269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_TEX_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80864@macro@MPU_RASR_TEX_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_TEX_Msk", + "location": { + "column": "9", + "line": "1270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_TEX_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@80990@macro@MPU_RASR_S_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_S_Pos", + "location": { + "column": "9", + "line": "1272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_S_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81116@macro@MPU_RASR_S_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_S_Msk", + "location": { + "column": "9", + "line": "1273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_S_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81240@macro@MPU_RASR_C_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_C_Pos", + "location": { + "column": "9", + "line": "1275", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_C_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81366@macro@MPU_RASR_C_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_C_Msk", + "location": { + "column": "9", + "line": "1276", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_C_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81490@macro@MPU_RASR_B_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_B_Pos", + "location": { + "column": "9", + "line": "1278", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_B_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81616@macro@MPU_RASR_B_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_B_Msk", + "location": { + "column": "9", + "line": "1279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_B_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81740@macro@MPU_RASR_SRD_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_SRD_Pos", + "location": { + "column": "9", + "line": "1281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_SRD_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@81877@macro@MPU_RASR_SRD_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_SRD_Msk", + "location": { + "column": "9", + "line": "1282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_SRD_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@82012@macro@MPU_RASR_SIZE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_SIZE_Pos", + "location": { + "column": "9", + "line": "1284", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_SIZE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@82148@macro@MPU_RASR_SIZE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_SIZE_Msk", + "location": { + "column": "9", + "line": "1285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_SIZE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@82282@macro@MPU_RASR_ENABLE_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_ENABLE_Pos", + "location": { + "column": "9", + "line": "1287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_ENABLE_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@82418@macro@MPU_RASR_ENABLE_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_RASR_ENABLE_Msk", + "location": { + "column": "9", + "line": "1288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_RASR_ENABLE_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@FPU_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "1304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@FPU_Type@FI@RESERVED0", + "What": "FieldDecl", + "defdec": "Def", + "display": "RESERVED0", + "location": { + "column": "18", + "line": "1306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "RESERVED0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@FPCCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FPCCR", + "location": { + "column": "18", + "line": "1307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPCCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@FPCAR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FPCAR", + "location": { + "column": "18", + "line": "1308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPCAR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@FPDSCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "FPDSCR", + "location": { + "column": "18", + "line": "1309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPDSCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@MVFR0", + "What": "FieldDecl", + "defdec": "Def", + "display": "MVFR0", + "location": { + "column": "18", + "line": "1310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MVFR0", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@MVFR1", + "What": "FieldDecl", + "defdec": "Def", + "display": "MVFR1", + "location": { + "column": "18", + "line": "1311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MVFR1", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + }, + { + "ID": "c:@SA@FPU_Type@FI@MVFR2", + "What": "FieldDecl", + "defdec": "Def", + "display": "MVFR2", + "location": { + "column": "18", + "line": "1312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MVFR2", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1304_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FPU_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct FPU_Type", + "location": { + "column": "3", + "line": "1313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@83679@macro@FPU_FPCCR_ASPEN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_ASPEN_Pos", + "location": { + "column": "9", + "line": "1316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_ASPEN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@83804@macro@FPU_FPCCR_ASPEN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_ASPEN_Msk", + "location": { + "column": "9", + "line": "1317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_ASPEN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@83927@macro@FPU_FPCCR_LSPEN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_LSPEN_Pos", + "location": { + "column": "9", + "line": "1319", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_LSPEN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84048@macro@FPU_FPCCR_LSPEN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_LSPEN_Msk", + "location": { + "column": "9", + "line": "1320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_LSPEN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84171@macro@FPU_FPCCR_MONRDY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_MONRDY_Pos", + "location": { + "column": "9", + "line": "1322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_MONRDY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84293@macro@FPU_FPCCR_MONRDY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_MONRDY_Msk", + "location": { + "column": "9", + "line": "1323", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_MONRDY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84417@macro@FPU_FPCCR_BFRDY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_BFRDY_Pos", + "location": { + "column": "9", + "line": "1325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_BFRDY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84538@macro@FPU_FPCCR_BFRDY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_BFRDY_Msk", + "location": { + "column": "9", + "line": "1326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_BFRDY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84661@macro@FPU_FPCCR_MMRDY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_MMRDY_Pos", + "location": { + "column": "9", + "line": "1328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_MMRDY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84782@macro@FPU_FPCCR_MMRDY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_MMRDY_Msk", + "location": { + "column": "9", + "line": "1329", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_MMRDY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@84905@macro@FPU_FPCCR_HFRDY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_HFRDY_Pos", + "location": { + "column": "9", + "line": "1331", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_HFRDY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85026@macro@FPU_FPCCR_HFRDY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_HFRDY_Msk", + "location": { + "column": "9", + "line": "1332", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_HFRDY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85149@macro@FPU_FPCCR_THREAD_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_THREAD_Pos", + "location": { + "column": "9", + "line": "1334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_THREAD_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85283@macro@FPU_FPCCR_THREAD_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_THREAD_Msk", + "location": { + "column": "9", + "line": "1335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_THREAD_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85422@macro@FPU_FPCCR_USER_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_USER_Pos", + "location": { + "column": "9", + "line": "1337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_USER_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85557@macro@FPU_FPCCR_USER_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_USER_Msk", + "location": { + "column": "9", + "line": "1338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_USER_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85690@macro@FPU_FPCCR_LSPACT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_LSPACT_Pos", + "location": { + "column": "9", + "line": "1340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_LSPACT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@85840@macro@FPU_FPCCR_LSPACT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCCR_LSPACT_Msk", + "location": { + "column": "9", + "line": "1341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCCR_LSPACT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86047@macro@FPU_FPCAR_ADDRESS_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCAR_ADDRESS_Pos", + "location": { + "column": "9", + "line": "1344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCAR_ADDRESS_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86174@macro@FPU_FPCAR_ADDRESS_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPCAR_ADDRESS_Msk", + "location": { + "column": "9", + "line": "1345", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPCAR_ADDRESS_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86365@macro@FPU_FPDSCR_AHP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_AHP_Pos", + "location": { + "column": "9", + "line": "1348", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_AHP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86489@macro@FPU_FPDSCR_AHP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_AHP_Msk", + "location": { + "column": "9", + "line": "1349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_AHP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86611@macro@FPU_FPDSCR_DN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_DN_Pos", + "location": { + "column": "9", + "line": "1351", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_DN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86734@macro@FPU_FPDSCR_DN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_DN_Msk", + "location": { + "column": "9", + "line": "1352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_DN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86855@macro@FPU_FPDSCR_FZ_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_FZ_Pos", + "location": { + "column": "9", + "line": "1354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_FZ_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@86978@macro@FPU_FPDSCR_FZ_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_FZ_Msk", + "location": { + "column": "9", + "line": "1355", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_FZ_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87099@macro@FPU_FPDSCR_RMode_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_RMode_Pos", + "location": { + "column": "9", + "line": "1357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_RMode_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87225@macro@FPU_FPDSCR_RMode_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_FPDSCR_RMode_Msk", + "location": { + "column": "9", + "line": "1358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_FPDSCR_RMode_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87400@macro@FPU_MVFR0_FP_rounding_modes_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_FP_rounding_modes_Pos", + "location": { + "column": "9", + "line": "1361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_FP_rounding_modes_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87538@macro@FPU_MVFR0_FP_rounding_modes_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_FP_rounding_modes_Msk", + "location": { + "column": "9", + "line": "1362", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_FP_rounding_modes_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87674@macro@FPU_MVFR0_Short_vectors_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Short_vectors_Pos", + "location": { + "column": "9", + "line": "1364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Short_vectors_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87808@macro@FPU_MVFR0_Short_vectors_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Short_vectors_Msk", + "location": { + "column": "9", + "line": "1365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Short_vectors_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@87940@macro@FPU_MVFR0_Square_root_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Square_root_Pos", + "location": { + "column": "9", + "line": "1367", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Square_root_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88072@macro@FPU_MVFR0_Square_root_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Square_root_Msk", + "location": { + "column": "9", + "line": "1368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Square_root_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88202@macro@FPU_MVFR0_Divide_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Divide_Pos", + "location": { + "column": "9", + "line": "1370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Divide_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88329@macro@FPU_MVFR0_Divide_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Divide_Msk", + "location": { + "column": "9", + "line": "1371", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Divide_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88454@macro@FPU_MVFR0_FP_excep_trapping_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_FP_excep_trapping_Pos", + "location": { + "column": "9", + "line": "1373", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_FP_excep_trapping_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88596@macro@FPU_MVFR0_FP_excep_trapping_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_FP_excep_trapping_Msk", + "location": { + "column": "9", + "line": "1374", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_FP_excep_trapping_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88736@macro@FPU_MVFR0_Double_precision_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Double_precision_Pos", + "location": { + "column": "9", + "line": "1376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Double_precision_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@88873@macro@FPU_MVFR0_Double_precision_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Double_precision_Msk", + "location": { + "column": "9", + "line": "1377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Double_precision_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89008@macro@FPU_MVFR0_Single_precision_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Single_precision_Pos", + "location": { + "column": "9", + "line": "1379", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Single_precision_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89145@macro@FPU_MVFR0_Single_precision_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_Single_precision_Msk", + "location": { + "column": "9", + "line": "1380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_Single_precision_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89280@macro@FPU_MVFR0_A_SIMD_registers_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_A_SIMD_registers_Pos", + "location": { + "column": "9", + "line": "1382", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_A_SIMD_registers_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89417@macro@FPU_MVFR0_A_SIMD_registers_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR0_A_SIMD_registers_Msk", + "location": { + "column": "9", + "line": "1383", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR0_A_SIMD_registers_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89603@macro@FPU_MVFR1_FP_fused_MAC_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FP_fused_MAC_Pos", + "location": { + "column": "9", + "line": "1386", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FP_fused_MAC_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89736@macro@FPU_MVFR1_FP_fused_MAC_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FP_fused_MAC_Msk", + "location": { + "column": "9", + "line": "1387", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FP_fused_MAC_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89867@macro@FPU_MVFR1_FP_HPFP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FP_HPFP_Pos", + "location": { + "column": "9", + "line": "1389", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FP_HPFP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@89995@macro@FPU_MVFR1_FP_HPFP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FP_HPFP_Msk", + "location": { + "column": "9", + "line": "1390", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FP_HPFP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90121@macro@FPU_MVFR1_D_NaN_mode_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_D_NaN_mode_Pos", + "location": { + "column": "9", + "line": "1392", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_D_NaN_mode_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90252@macro@FPU_MVFR1_D_NaN_mode_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_D_NaN_mode_Msk", + "location": { + "column": "9", + "line": "1393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_D_NaN_mode_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90381@macro@FPU_MVFR1_FtZ_mode_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FtZ_mode_Pos", + "location": { + "column": "9", + "line": "1395", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FtZ_mode_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90510@macro@FPU_MVFR1_FtZ_mode_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR1_FtZ_mode_Msk", + "location": { + "column": "9", + "line": "1396", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR1_FtZ_mode_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90690@macro@FPU_MVFR2_VFP_Misc_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR2_VFP_Misc_Pos", + "location": { + "column": "9", + "line": "1400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR2_VFP_Misc_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@90819@macro@FPU_MVFR2_VFP_Misc_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_MVFR2_VFP_Misc_Msk", + "location": { + "column": "9", + "line": "1401", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_MVFR2_VFP_Misc_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@CoreDebug_Type", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "1416", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "members": [ + { + "ID": "c:@SA@CoreDebug_Type@FI@DHCSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DHCSR", + "location": { + "column": "18", + "line": "1418", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DHCSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1416_9" + }, + { + "ID": "c:@SA@CoreDebug_Type@FI@DCRSR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DCRSR", + "location": { + "column": "18", + "line": "1419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DCRSR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1416_9" + }, + { + "ID": "c:@SA@CoreDebug_Type@FI@DCRDR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DCRDR", + "location": { + "column": "18", + "line": "1420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DCRDR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1416_9" + }, + { + "ID": "c:@SA@CoreDebug_Type@FI@DEMCR", + "What": "FieldDecl", + "defdec": "Def", + "display": "DEMCR", + "location": { + "column": "18", + "line": "1421", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DEMCR", + "origin": "user_include", + "scope": "_anonymous_core_cm4_h_1416_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@CoreDebug_Type", + "What": "Typedef", + "defdec": "Def", + "display": "struct CoreDebug_Type", + "location": { + "column": "3", + "line": "1422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_Type", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@91787@macro@CoreDebug_DHCSR_DBGKEY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_DBGKEY_Pos", + "location": { + "column": "9", + "line": "1425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_DBGKEY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@91919@macro@CoreDebug_DHCSR_DBGKEY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_DBGKEY_Msk", + "location": { + "column": "9", + "line": "1426", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_DBGKEY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92049@macro@CoreDebug_DHCSR_S_RESET_ST_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_RESET_ST_Pos", + "location": { + "column": "9", + "line": "1428", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_RESET_ST_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92185@macro@CoreDebug_DHCSR_S_RESET_ST_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_RESET_ST_Msk", + "location": { + "column": "9", + "line": "1429", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_RESET_ST_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92319@macro@CoreDebug_DHCSR_S_RETIRE_ST_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_RETIRE_ST_Pos", + "location": { + "column": "9", + "line": "1431", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_RETIRE_ST_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92456@macro@CoreDebug_DHCSR_S_RETIRE_ST_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_RETIRE_ST_Msk", + "location": { + "column": "9", + "line": "1432", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_RETIRE_ST_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92591@macro@CoreDebug_DHCSR_S_LOCKUP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_LOCKUP_Pos", + "location": { + "column": "9", + "line": "1434", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_LOCKUP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92725@macro@CoreDebug_DHCSR_S_LOCKUP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_LOCKUP_Msk", + "location": { + "column": "9", + "line": "1435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_LOCKUP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92857@macro@CoreDebug_DHCSR_S_SLEEP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_SLEEP_Pos", + "location": { + "column": "9", + "line": "1437", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_SLEEP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@92990@macro@CoreDebug_DHCSR_S_SLEEP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_SLEEP_Msk", + "location": { + "column": "9", + "line": "1438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_SLEEP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93121@macro@CoreDebug_DHCSR_S_HALT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_HALT_Pos", + "location": { + "column": "9", + "line": "1440", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_HALT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93253@macro@CoreDebug_DHCSR_S_HALT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_HALT_Msk", + "location": { + "column": "9", + "line": "1441", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_HALT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93383@macro@CoreDebug_DHCSR_S_REGRDY_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_REGRDY_Pos", + "location": { + "column": "9", + "line": "1443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_REGRDY_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93517@macro@CoreDebug_DHCSR_S_REGRDY_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_S_REGRDY_Msk", + "location": { + "column": "9", + "line": "1444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_S_REGRDY_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93649@macro@CoreDebug_DHCSR_C_SNAPSTALL_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_SNAPSTALL_Pos", + "location": { + "column": "9", + "line": "1446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_SNAPSTALL_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93786@macro@CoreDebug_DHCSR_C_SNAPSTALL_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_SNAPSTALL_Msk", + "location": { + "column": "9", + "line": "1447", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_SNAPSTALL_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@93921@macro@CoreDebug_DHCSR_C_MASKINTS_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_MASKINTS_Pos", + "location": { + "column": "9", + "line": "1449", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_MASKINTS_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94057@macro@CoreDebug_DHCSR_C_MASKINTS_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_MASKINTS_Msk", + "location": { + "column": "9", + "line": "1450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_MASKINTS_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94191@macro@CoreDebug_DHCSR_C_STEP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_STEP_Pos", + "location": { + "column": "9", + "line": "1452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_STEP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94323@macro@CoreDebug_DHCSR_C_STEP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_STEP_Msk", + "location": { + "column": "9", + "line": "1453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_STEP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94453@macro@CoreDebug_DHCSR_C_HALT_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_HALT_Pos", + "location": { + "column": "9", + "line": "1455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_HALT_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94585@macro@CoreDebug_DHCSR_C_HALT_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_HALT_Msk", + "location": { + "column": "9", + "line": "1456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_HALT_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94715@macro@CoreDebug_DHCSR_C_DEBUGEN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_DEBUGEN_Pos", + "location": { + "column": "9", + "line": "1458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_DEBUGEN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@94850@macro@CoreDebug_DHCSR_C_DEBUGEN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DHCSR_C_DEBUGEN_Msk", + "location": { + "column": "9", + "line": "1459", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DHCSR_C_DEBUGEN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95040@macro@CoreDebug_DCRSR_REGWnR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DCRSR_REGWnR_Pos", + "location": { + "column": "9", + "line": "1462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DCRSR_REGWnR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95172@macro@CoreDebug_DCRSR_REGWnR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DCRSR_REGWnR_Msk", + "location": { + "column": "9", + "line": "1463", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DCRSR_REGWnR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95302@macro@CoreDebug_DCRSR_REGSEL_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DCRSR_REGSEL_Pos", + "location": { + "column": "9", + "line": "1465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DCRSR_REGSEL_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95434@macro@CoreDebug_DCRSR_REGSEL_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DCRSR_REGSEL_Msk", + "location": { + "column": "9", + "line": "1466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DCRSR_REGSEL_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95628@macro@CoreDebug_DEMCR_TRCENA_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_TRCENA_Pos", + "location": { + "column": "9", + "line": "1469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_TRCENA_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95760@macro@CoreDebug_DEMCR_TRCENA_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_TRCENA_Msk", + "location": { + "column": "9", + "line": "1470", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_TRCENA_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@95890@macro@CoreDebug_DEMCR_MON_REQ_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_REQ_Pos", + "location": { + "column": "9", + "line": "1472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_REQ_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96023@macro@CoreDebug_DEMCR_MON_REQ_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_REQ_Msk", + "location": { + "column": "9", + "line": "1473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_REQ_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96154@macro@CoreDebug_DEMCR_MON_STEP_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_STEP_Pos", + "location": { + "column": "9", + "line": "1475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_STEP_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96288@macro@CoreDebug_DEMCR_MON_STEP_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_STEP_Msk", + "location": { + "column": "9", + "line": "1476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_STEP_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96420@macro@CoreDebug_DEMCR_MON_PEND_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_PEND_Pos", + "location": { + "column": "9", + "line": "1478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_PEND_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96554@macro@CoreDebug_DEMCR_MON_PEND_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_PEND_Msk", + "location": { + "column": "9", + "line": "1479", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_PEND_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96686@macro@CoreDebug_DEMCR_MON_EN_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_EN_Pos", + "location": { + "column": "9", + "line": "1481", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_EN_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96818@macro@CoreDebug_DEMCR_MON_EN_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_MON_EN_Msk", + "location": { + "column": "9", + "line": "1482", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_MON_EN_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@96948@macro@CoreDebug_DEMCR_VC_HARDERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_HARDERR_Pos", + "location": { + "column": "9", + "line": "1484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_HARDERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97084@macro@CoreDebug_DEMCR_VC_HARDERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_HARDERR_Msk", + "location": { + "column": "9", + "line": "1485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_HARDERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97218@macro@CoreDebug_DEMCR_VC_INTERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_INTERR_Pos", + "location": { + "column": "9", + "line": "1487", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_INTERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97353@macro@CoreDebug_DEMCR_VC_INTERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_INTERR_Msk", + "location": { + "column": "9", + "line": "1488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_INTERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97486@macro@CoreDebug_DEMCR_VC_BUSERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_BUSERR_Pos", + "location": { + "column": "9", + "line": "1490", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_BUSERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97621@macro@CoreDebug_DEMCR_VC_BUSERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_BUSERR_Msk", + "location": { + "column": "9", + "line": "1491", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_BUSERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97754@macro@CoreDebug_DEMCR_VC_STATERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_STATERR_Pos", + "location": { + "column": "9", + "line": "1493", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_STATERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@97890@macro@CoreDebug_DEMCR_VC_STATERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_STATERR_Msk", + "location": { + "column": "9", + "line": "1494", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_STATERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98024@macro@CoreDebug_DEMCR_VC_CHKERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_CHKERR_Pos", + "location": { + "column": "9", + "line": "1496", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_CHKERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98159@macro@CoreDebug_DEMCR_VC_CHKERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_CHKERR_Msk", + "location": { + "column": "9", + "line": "1497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_CHKERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98292@macro@CoreDebug_DEMCR_VC_NOCPERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_NOCPERR_Pos", + "location": { + "column": "9", + "line": "1499", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_NOCPERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98428@macro@CoreDebug_DEMCR_VC_NOCPERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_NOCPERR_Msk", + "location": { + "column": "9", + "line": "1500", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_NOCPERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98562@macro@CoreDebug_DEMCR_VC_MMERR_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_MMERR_Pos", + "location": { + "column": "9", + "line": "1502", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_MMERR_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98696@macro@CoreDebug_DEMCR_VC_MMERR_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_MMERR_Msk", + "location": { + "column": "9", + "line": "1503", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_MMERR_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98828@macro@CoreDebug_DEMCR_VC_CORERESET_Pos", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_CORERESET_Pos", + "location": { + "column": "9", + "line": "1505", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_CORERESET_Pos", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@98966@macro@CoreDebug_DEMCR_VC_CORERESET_Msk", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_DEMCR_VC_CORERESET_Msk", + "location": { + "column": "9", + "line": "1506", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_DEMCR_VC_CORERESET_Msk", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@99627@macro@_VAL2FLD", + "What": "MacroDef", + "defdec": "Def", + "display": "_VAL2FLD", + "location": { + "column": "9", + "line": "1524", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_VAL2FLD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100005@macro@_FLD2VAL", + "What": "MacroDef", + "defdec": "Def", + "display": "_FLD2VAL", + "location": { + "column": "9", + "line": "1532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "_FLD2VAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100358@macro@SCS_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "SCS_BASE", + "location": { + "column": "9", + "line": "1545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCS_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100471@macro@ITM_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_BASE", + "location": { + "column": "9", + "line": "1546", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100567@macro@DWT_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT_BASE", + "location": { + "column": "9", + "line": "1547", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100663@macro@TPI_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI_BASE", + "location": { + "column": "9", + "line": "1548", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100759@macro@CoreDebug_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug_BASE", + "location": { + "column": "9", + "line": "1549", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100862@macro@SysTick_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick_BASE", + "location": { + "column": "9", + "line": "1550", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@100962@macro@NVIC_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_BASE", + "location": { + "column": "9", + "line": "1551", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101059@macro@SCB_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB_BASE", + "location": { + "column": "9", + "line": "1552", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101174@macro@SCnSCB", + "What": "MacroDef", + "defdec": "Def", + "display": "SCnSCB", + "location": { + "column": "9", + "line": "1554", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCnSCB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101288@macro@SCB", + "What": "MacroDef", + "defdec": "Def", + "display": "SCB", + "location": { + "column": "9", + "line": "1555", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101392@macro@SysTick", + "What": "MacroDef", + "defdec": "Def", + "display": "SysTick", + "location": { + "column": "9", + "line": "1556", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101500@macro@NVIC", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC", + "location": { + "column": "9", + "line": "1557", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101605@macro@ITM", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM", + "location": { + "column": "9", + "line": "1558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101709@macro@DWT", + "What": "MacroDef", + "defdec": "Def", + "display": "DWT", + "location": { + "column": "9", + "line": "1559", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "DWT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101813@macro@TPI", + "What": "MacroDef", + "defdec": "Def", + "display": "TPI", + "location": { + "column": "9", + "line": "1560", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "TPI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@101917@macro@CoreDebug", + "What": "MacroDef", + "defdec": "Def", + "display": "CoreDebug", + "location": { + "column": "9", + "line": "1561", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "CoreDebug", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@102086@macro@MPU_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_BASE", + "location": { + "column": "11", + "line": "1564", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@102188@macro@MPU", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU", + "location": { + "column": "11", + "line": "1565", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "MPU", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@102298@macro@FPU_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU_BASE", + "location": { + "column": "9", + "line": "1568", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@102397@macro@FPU", + "What": "MacroDef", + "defdec": "Def", + "display": "FPU", + "location": { + "column": "9", + "line": "1569", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "FPU", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103444@macro@NVIC_SetPriorityGrouping", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_SetPriorityGrouping", + "location": { + "column": "11", + "line": "1603", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_SetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103510@macro@NVIC_GetPriorityGrouping", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetPriorityGrouping", + "location": { + "column": "11", + "line": "1604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103576@macro@NVIC_EnableIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_EnableIRQ", + "location": { + "column": "11", + "line": "1605", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_EnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103632@macro@NVIC_GetEnableIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetEnableIRQ", + "location": { + "column": "11", + "line": "1606", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetEnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103691@macro@NVIC_DisableIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_DisableIRQ", + "location": { + "column": "11", + "line": "1607", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_DisableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103748@macro@NVIC_GetPendingIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetPendingIRQ", + "location": { + "column": "11", + "line": "1608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103808@macro@NVIC_SetPendingIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_SetPendingIRQ", + "location": { + "column": "11", + "line": "1609", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_SetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103868@macro@NVIC_ClearPendingIRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_ClearPendingIRQ", + "location": { + "column": "11", + "line": "1610", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_ClearPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103930@macro@NVIC_GetActive", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetActive", + "location": { + "column": "11", + "line": "1611", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetActive", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@103986@macro@NVIC_SetPriority", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_SetPriority", + "location": { + "column": "11", + "line": "1612", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_SetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104044@macro@NVIC_GetPriority", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetPriority", + "location": { + "column": "11", + "line": "1613", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104102@macro@NVIC_SystemReset", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_SystemReset", + "location": { + "column": "11", + "line": "1614", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_SystemReset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104401@macro@NVIC_SetVector", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_SetVector", + "location": { + "column": "11", + "line": "1623", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_SetVector", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104457@macro@NVIC_GetVector", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_GetVector", + "location": { + "column": "11", + "line": "1624", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_GetVector", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104551@macro@NVIC_USER_IRQ_OFFSET", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_USER_IRQ_OFFSET", + "location": { + "column": "9", + "line": "1627", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_USER_IRQ_OFFSET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104672@macro@EXC_RETURN_HANDLER", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_HANDLER", + "location": { + "column": "9", + "line": "1631", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_HANDLER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104809@macro@EXC_RETURN_THREAD_MSP", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_THREAD_MSP", + "location": { + "column": "9", + "line": "1632", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_THREAD_MSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@104946@macro@EXC_RETURN_THREAD_PSP", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_THREAD_PSP", + "location": { + "column": "9", + "line": "1633", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_THREAD_PSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@105083@macro@EXC_RETURN_HANDLER_FPU", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_HANDLER_FPU", + "location": { + "column": "9", + "line": "1634", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_HANDLER_FPU", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@105220@macro@EXC_RETURN_THREAD_MSP_FPU", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_THREAD_MSP_FPU", + "location": { + "column": "9", + "line": "1635", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_THREAD_MSP_FPU", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@105357@macro@EXC_RETURN_THREAD_PSP_FPU", + "What": "MacroDef", + "defdec": "Def", + "display": "EXC_RETURN_THREAD_PSP_FPU", + "location": { + "column": "9", + "line": "1636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "EXC_RETURN_THREAD_PSP_FPU", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_SetPriorityGrouping", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_SetPriorityGrouping(uint32_t)", + "location": { + "column": "22", + "line": "1648", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_SetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@106061@F@__NVIC_SetPriorityGrouping@reg_value", + "What": "Variable", + "defdec": "Def", + "display": "reg_value", + "location": { + "column": "12", + "line": "1650", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "reg_value", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@106084@F@__NVIC_SetPriorityGrouping@PriorityGroupTmp", + "What": "Variable", + "defdec": "Def", + "display": "PriorityGroupTmp", + "location": { + "column": "12", + "line": "1651", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PriorityGroupTmp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetPriorityGrouping", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetPriorityGrouping(void)", + "location": { + "column": "26", + "line": "1667", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_EnableIRQ", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_EnableIRQ(IRQn_Type)", + "location": { + "column": "22", + "line": "1679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_EnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetEnableIRQ", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetEnableIRQ(IRQn_Type)", + "location": { + "column": "26", + "line": "1698", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetEnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_DisableIRQ", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_DisableIRQ(IRQn_Type)", + "location": { + "column": "22", + "line": "1717", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_DisableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetPendingIRQ(IRQn_Type)", + "location": { + "column": "26", + "line": "1736", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_SetPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_SetPendingIRQ(IRQn_Type)", + "location": { + "column": "22", + "line": "1755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_SetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_ClearPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_ClearPendingIRQ(IRQn_Type)", + "location": { + "column": "22", + "line": "1770", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_ClearPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetActive", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetActive(IRQn_Type)", + "location": { + "column": "26", + "line": "1787", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetActive", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_SetPriority", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_SetPriority(IRQn_Type, uint32_t)", + "location": { + "column": "22", + "line": "1809", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_SetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetPriority", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetPriority(IRQn_Type)", + "location": { + "column": "26", + "line": "1831", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@NVIC_EncodePriority", + "What": "Function", + "defdec": "Def", + "display": "uint32_t NVIC_EncodePriority(uint32_t, uint32_t, uint32_t)", + "location": { + "column": "26", + "line": "1856", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_EncodePriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@113192@F@NVIC_EncodePriority@PriorityGroupTmp", + "What": "Variable", + "defdec": "Def", + "display": "PriorityGroupTmp", + "location": { + "column": "12", + "line": "1858", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PriorityGroupTmp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@113302@F@NVIC_EncodePriority@PreemptPriorityBits", + "What": "Variable", + "defdec": "Def", + "display": "PreemptPriorityBits", + "location": { + "column": "12", + "line": "1859", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PreemptPriorityBits", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@113335@F@NVIC_EncodePriority@SubPriorityBits", + "What": "Variable", + "defdec": "Def", + "display": "SubPriorityBits", + "location": { + "column": "12", + "line": "1860", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SubPriorityBits", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@NVIC_DecodePriority", + "What": "Function", + "defdec": "Def", + "display": "void NVIC_DecodePriority(uint32_t, uint32_t, uint32_t *const, uint32_t *const)", + "location": { + "column": "22", + "line": "1883", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "NVIC_DecodePriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@114735@F@NVIC_DecodePriority@PriorityGroupTmp", + "What": "Variable", + "defdec": "Def", + "display": "PriorityGroupTmp", + "location": { + "column": "12", + "line": "1885", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PriorityGroupTmp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@114845@F@NVIC_DecodePriority@PreemptPriorityBits", + "What": "Variable", + "defdec": "Def", + "display": "PreemptPriorityBits", + "location": { + "column": "12", + "line": "1886", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "PreemptPriorityBits", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@114878@F@NVIC_DecodePriority@SubPriorityBits", + "What": "Variable", + "defdec": "Def", + "display": "SubPriorityBits", + "location": { + "column": "12", + "line": "1887", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SubPriorityBits", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_SetVector", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_SetVector(IRQn_Type, uint32_t)", + "location": { + "column": "22", + "line": "1906", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_SetVector", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@115962@F@__NVIC_SetVector@vectors", + "What": "Variable", + "defdec": "Def", + "display": "vectors", + "location": { + "column": "12", + "line": "1908", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "vectors", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_GetVector", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __NVIC_GetVector(IRQn_Type)", + "location": { + "column": "26", + "line": "1922", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_GetVector", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@116618@F@__NVIC_GetVector@vectors", + "What": "Variable", + "defdec": "Def", + "display": "vectors", + "location": { + "column": "12", + "line": "1924", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "vectors", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@__NVIC_SystemReset", + "What": "Function", + "defdec": "Def", + "display": "void __NVIC_SystemReset(void)", + "location": { + "column": "34", + "line": "1933", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "__NVIC_SystemReset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@SCB_GetFPUType", + "What": "Function", + "defdec": "Def", + "display": "uint32_t SCB_GetFPUType(void)", + "location": { + "column": "26", + "line": "1976", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SCB_GetFPUType", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@118327@F@SCB_GetFPUType@mvfr0", + "What": "Variable", + "defdec": "Def", + "display": "mvfr0", + "location": { + "column": "12", + "line": "1978", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "mvfr0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@SysTick_Config", + "What": "Function", + "defdec": "Def", + "display": "uint32_t SysTick_Config(uint32_t)", + "location": { + "column": "26", + "line": "2017", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "SysTick_Config", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@ITM_RxBuffer", + "What": "Variable", + "defdec": "Dec", + "display": "ITM_RxBuffer", + "location": { + "column": "25", + "line": "2047", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_RxBuffer", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@120949@macro@ITM_RXBUFFER_EMPTY", + "What": "MacroDef", + "defdec": "Def", + "display": "ITM_RXBUFFER_EMPTY", + "location": { + "column": "25", + "line": "2048", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_RXBUFFER_EMPTY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@ITM_SendChar", + "What": "Function", + "defdec": "Def", + "display": "uint32_t ITM_SendChar(uint32_t)", + "location": { + "column": "26", + "line": "2059", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_SendChar", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@ITM_ReceiveChar", + "What": "Function", + "defdec": "Def", + "display": "int32_t ITM_ReceiveChar(void)", + "location": { + "column": "25", + "line": "2080", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_ReceiveChar", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@122078@F@ITM_ReceiveChar@ch", + "What": "Variable", + "defdec": "Def", + "display": "ch", + "location": { + "column": "11", + "line": "2082", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ch", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:core_cm4.h@F@ITM_CheckChar", + "What": "Function", + "defdec": "Def", + "display": "int32_t ITM_CheckChar(void)", + "location": { + "column": "25", + "line": "2100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\core_cm4.h" + }, + "name": "ITM_CheckChar", "origin": "user_include", "scope": null }, @@ -263036,141 +264012,113 @@ "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.h@796@macro@STM32L4xx_HAL_RCC_H", + "ID": "c:stm32l4xx_hal_tim.h@801@macro@STM32L4xx_HAL_TIM_H", "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_RCC_H", + "display": "STM32L4xx_HAL_TIM_H", "location": { "column": "9", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "STM32L4xx_HAL_RCC_H", + "name": "STM32L4xx_HAL_TIM_H", "origin": "user_include", "scope": null }, { - "ID": "c:@SA@RCC_PLLInitTypeDef", + "ID": "c:@SA@TIM_Base_InitTypeDef", "What": "Struct", "defdec": "Def", "display": "", "location": { "column": "9", - "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, "members": [ { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLState", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@Prescaler", "What": "FieldDecl", "defdec": "Def", - "display": "PLLState", + "display": "Prescaler", "location": { "column": "12", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLState", + "name": "Prescaler", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" }, { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLSource", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@CounterMode", "What": "FieldDecl", "defdec": "Def", - "display": "PLLSource", + "display": "CounterMode", "location": { "column": "12", - "line": "50", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLSource", + "name": "CounterMode", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" }, { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLM", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@Period", "What": "FieldDecl", "defdec": "Def", - "display": "PLLM", + "display": "Period", "location": { "column": "12", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "54", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLM", + "name": "Period", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" }, { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLN", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@ClockDivision", "What": "FieldDecl", "defdec": "Def", - "display": "PLLN", + "display": "ClockDivision", "location": { "column": "12", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLN", + "name": "ClockDivision", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" }, { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLP", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@RepetitionCounter", "What": "FieldDecl", "defdec": "Def", - "display": "PLLP", + "display": "RepetitionCounter", "location": { "column": "12", "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLP", + "name": "RepetitionCounter", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" }, { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLQ", + "ID": "c:@SA@TIM_Base_InitTypeDef@FI@AutoReloadPreload", "What": "FieldDecl", "defdec": "Def", - "display": "PLLQ", + "display": "AutoReloadPreload", "location": { "column": "12", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "PLLQ", + "name": "AutoReloadPreload", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" - }, - { - "ID": "c:@SA@RCC_PLLInitTypeDef@FI@PLLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PLLR", - "location": { - "column": "12", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "PLLR", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" - }, - { - "ID": "c:@T@RCC_PLLInitTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct RCC_PLLInitTypeDef", - "location": { - "column": "2", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLInitTypeDef", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_45_9" + "scope": "_anonymous_stm32l4xx_hal_tim_h_46_9" } ], "name": "", @@ -263178,15511 +264126,9957 @@ "scope": null }, { - "ID": "c:@SA@RCC_OscInitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "members": [ - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@OscillatorType", - "What": "FieldDecl", - "defdec": "Def", - "display": "OscillatorType", - "location": { - "column": "12", - "line": "80", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "OscillatorType", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSEState", - "What": "FieldDecl", - "defdec": "Def", - "display": "HSEState", - "location": { - "column": "12", - "line": "83", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HSEState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@LSEState", - "What": "FieldDecl", - "defdec": "Def", - "display": "LSEState", - "location": { - "column": "12", - "line": "86", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "LSEState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSIState", - "What": "FieldDecl", - "defdec": "Def", - "display": "HSIState", - "location": { - "column": "12", - "line": "89", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HSIState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSICalibrationValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "HSICalibrationValue", - "location": { - "column": "12", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HSICalibrationValue", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@LSIState", - "What": "FieldDecl", - "defdec": "Def", - "display": "LSIState", - "location": { - "column": "12", - "line": "98", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "LSIState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSIState", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSIState", - "location": { - "column": "12", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "MSIState", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSICalibrationValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSICalibrationValue", - "location": { - "column": "12", - "line": "109", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "MSICalibrationValue", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@MSIClockRange", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSIClockRange", - "location": { - "column": "12", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "MSIClockRange", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@HSI48State", - "What": "FieldDecl", - "defdec": "Def", - "display": "HSI48State", - "location": { - "column": "12", - "line": "115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HSI48State", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@SA@RCC_OscInitTypeDef@FI@PLL", - "What": "FieldDecl", - "defdec": "Def", - "display": "PLL", - "location": { - "column": "22", - "line": "118", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "PLL", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - }, - { - "ID": "c:@T@RCC_OscInitTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct RCC_OscInitTypeDef", - "location": { - "column": "2", - "line": "120", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OscInitTypeDef", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_78_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@RCC_ClkInitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "125", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "members": [ - { - "ID": "c:@SA@RCC_ClkInitTypeDef@FI@ClockType", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockType", - "location": { - "column": "12", - "line": "127", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "ClockType", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - }, - { - "ID": "c:@SA@RCC_ClkInitTypeDef@FI@SYSCLKSource", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSCLKSource", - "location": { - "column": "12", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "SYSCLKSource", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - }, - { - "ID": "c:@SA@RCC_ClkInitTypeDef@FI@AHBCLKDivider", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBCLKDivider", - "location": { - "column": "12", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "AHBCLKDivider", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - }, - { - "ID": "c:@SA@RCC_ClkInitTypeDef@FI@APB1CLKDivider", - "What": "FieldDecl", - "defdec": "Def", - "display": "APB1CLKDivider", - "location": { - "column": "12", - "line": "136", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "APB1CLKDivider", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - }, - { - "ID": "c:@SA@RCC_ClkInitTypeDef@FI@APB2CLKDivider", - "What": "FieldDecl", - "defdec": "Def", - "display": "APB2CLKDivider", - "location": { - "column": "12", - "line": "139", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "APB2CLKDivider", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - }, - { - "ID": "c:@T@RCC_ClkInitTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct RCC_ClkInitTypeDef", - "location": { - "column": "2", - "line": "142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_ClkInitTypeDef", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_rcc_h_125_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7224@macro@RCC_DBP_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_DBP_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_DBP_TIMEOUT_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7308@macro@RCC_LSE_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSE_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSE_TIMEOUT_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7454@macro@RCC_OSCILLATORTYPE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_NONE", - "location": { - "column": "9", - "line": "165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7551@macro@RCC_OSCILLATORTYPE_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_HSE", - "location": { - "column": "9", - "line": "166", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7630@macro@RCC_OSCILLATORTYPE_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_HSI", - "location": { - "column": "9", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7709@macro@RCC_OSCILLATORTYPE_LSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_LSE", - "location": { - "column": "9", - "line": "168", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_LSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7788@macro@RCC_OSCILLATORTYPE_LSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_LSI", - "location": { - "column": "9", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_LSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7867@macro@RCC_OSCILLATORTYPE_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_MSI", - "location": { - "column": "9", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@7978@macro@RCC_OSCILLATORTYPE_HSI48", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_HSI48", - "location": { - "column": "9", - "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_HSI48", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8167@macro@RCC_HSE_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSE_OFF", - "location": { - "column": "9", - "line": "181", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSE_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8269@macro@RCC_HSE_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSE_ON", - "location": { - "column": "9", - "line": "182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSE_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8369@macro@RCC_HSE_BYPASS", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSE_BYPASS", - "location": { - "column": "9", - "line": "183", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSE_BYPASS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8560@macro@RCC_LSE_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSE_OFF", - "location": { - "column": "9", - "line": "191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSE_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8669@macro@RCC_LSE_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSE_ON", - "location": { - "column": "9", - "line": "192", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSE_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@8776@macro@RCC_LSE_BYPASS", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSE_BYPASS", - "location": { - "column": "9", - "line": "193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSE_BYPASS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@9347@macro@RCC_HSI_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSI_OFF", - "location": { - "column": "9", - "line": "205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSI_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@9432@macro@RCC_HSI_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSI_ON", - "location": { - "column": "9", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSI_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@9724@macro@RCC_HSICALIBRATION_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSICALIBRATION_DEFAULT", - "location": { - "column": "9", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSICALIBRATION_DEFAULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@9989@macro@RCC_LSI_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSI_OFF", - "location": { - "column": "9", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSI_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@10074@macro@RCC_LSI_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSI_ON", - "location": { - "column": "9", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSI_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@10549@macro@RCC_MSI_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSI_OFF", - "location": { - "column": "9", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSI_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@10634@macro@RCC_MSI_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSI_ON", - "location": { - "column": "9", - "line": "241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSI_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@10719@macro@RCC_MSICALIBRATION_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSICALIBRATION_DEFAULT", - "location": { - "column": "9", - "line": "243", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSICALIBRATION_DEFAULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@10932@macro@RCC_HSI48_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSI48_OFF", - "location": { - "column": "9", - "line": "252", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSI48_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11023@macro@RCC_HSI48_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HSI48_ON", - "location": { - "column": "9", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HSI48_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11392@macro@RCC_PLL_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_NONE", - "location": { - "column": "9", - "line": "270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11482@macro@RCC_PLL_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_OFF", - "location": { - "column": "9", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11561@macro@RCC_PLL_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_ON", - "location": { - "column": "9", - "line": "272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11801@macro@RCC_PLLP_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV2", - "location": { - "column": "9", - "line": "282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11889@macro@RCC_PLLP_DIV3", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV3", - "location": { - "column": "9", - "line": "283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@11977@macro@RCC_PLLP_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV4", - "location": { - "column": "9", - "line": "284", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12065@macro@RCC_PLLP_DIV5", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV5", - "location": { - "column": "9", - "line": "285", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12153@macro@RCC_PLLP_DIV6", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV6", - "location": { - "column": "9", - "line": "286", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12241@macro@RCC_PLLP_DIV7", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV7", - "location": { - "column": "9", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12329@macro@RCC_PLLP_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV8", - "location": { - "column": "9", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12417@macro@RCC_PLLP_DIV9", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV9", - "location": { - "column": "9", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12505@macro@RCC_PLLP_DIV10", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV10", - "location": { - "column": "9", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12593@macro@RCC_PLLP_DIV11", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV11", - "location": { - "column": "9", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12681@macro@RCC_PLLP_DIV12", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV12", - "location": { - "column": "9", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12769@macro@RCC_PLLP_DIV13", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV13", - "location": { - "column": "9", - "line": "293", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12857@macro@RCC_PLLP_DIV14", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV14", - "location": { - "column": "9", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@12945@macro@RCC_PLLP_DIV15", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV15", - "location": { - "column": "9", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13033@macro@RCC_PLLP_DIV16", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV16", - "location": { - "column": "9", - "line": "296", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13121@macro@RCC_PLLP_DIV17", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV17", - "location": { - "column": "9", - "line": "297", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV17", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13209@macro@RCC_PLLP_DIV18", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV18", - "location": { - "column": "9", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV18", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13297@macro@RCC_PLLP_DIV19", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV19", - "location": { - "column": "9", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV19", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13385@macro@RCC_PLLP_DIV20", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV20", - "location": { - "column": "9", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV20", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13473@macro@RCC_PLLP_DIV21", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV21", - "location": { - "column": "9", - "line": "301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV21", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13561@macro@RCC_PLLP_DIV22", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV22", - "location": { - "column": "9", - "line": "302", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV22", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13649@macro@RCC_PLLP_DIV23", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV23", - "location": { - "column": "9", - "line": "303", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV23", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13737@macro@RCC_PLLP_DIV24", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV24", - "location": { - "column": "9", - "line": "304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV24", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13825@macro@RCC_PLLP_DIV25", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV25", - "location": { - "column": "9", - "line": "305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV25", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@13913@macro@RCC_PLLP_DIV26", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV26", - "location": { - "column": "9", - "line": "306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV26", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14001@macro@RCC_PLLP_DIV27", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV27", - "location": { - "column": "9", - "line": "307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV27", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14089@macro@RCC_PLLP_DIV28", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV28", - "location": { - "column": "9", - "line": "308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV28", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14177@macro@RCC_PLLP_DIV29", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV29", - "location": { - "column": "9", - "line": "309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV29", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14265@macro@RCC_PLLP_DIV30", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV30", - "location": { - "column": "9", - "line": "310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV30", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14353@macro@RCC_PLLP_DIV31", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLP_DIV31", - "location": { - "column": "9", - "line": "311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLP_DIV31", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14787@macro@RCC_PLLQ_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLQ_DIV2", - "location": { - "column": "9", - "line": "324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLQ_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14874@macro@RCC_PLLQ_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLQ_DIV4", - "location": { - "column": "9", - "line": "325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLQ_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@14961@macro@RCC_PLLQ_DIV6", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLQ_DIV6", - "location": { - "column": "9", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLQ_DIV6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15048@macro@RCC_PLLQ_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLQ_DIV8", - "location": { - "column": "9", - "line": "327", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLQ_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15227@macro@RCC_PLLR_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLR_DIV2", - "location": { - "column": "9", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLR_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15314@macro@RCC_PLLR_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLR_DIV4", - "location": { - "column": "9", - "line": "336", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLR_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15401@macro@RCC_PLLR_DIV6", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLR_DIV6", - "location": { - "column": "9", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLR_DIV6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15488@macro@RCC_PLLR_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLR_DIV8", - "location": { - "column": "9", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLR_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15663@macro@RCC_PLLSOURCE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSOURCE_NONE", - "location": { - "column": "9", - "line": "346", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSOURCE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15780@macro@RCC_PLLSOURCE_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSOURCE_MSI", - "location": { - "column": "9", - "line": "347", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSOURCE_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@15897@macro@RCC_PLLSOURCE_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSOURCE_HSI", - "location": { - "column": "9", - "line": "348", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSOURCE_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@16014@macro@RCC_PLLSOURCE_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSOURCE_HSE", - "location": { - "column": "9", - "line": "349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSOURCE_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@16423@macro@RCC_PLL_SAI2CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_SAI2CLK", - "location": { - "column": "9", - "line": "360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_SAI2CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@16594@macro@RCC_PLL_48M1CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_48M1CLK", - "location": { - "column": "9", - "line": "362", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_48M1CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@16701@macro@RCC_PLL_SYSCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLL_SYSCLK", - "location": { - "column": "9", - "line": "363", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLL_SYSCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@16934@macro@RCC_PLLSAI1_SAI1CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSAI1_SAI1CLK", - "location": { - "column": "9", - "line": "372", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSAI1_SAI1CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@17043@macro@RCC_PLLSAI1_48M2CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSAI1_48M2CLK", - "location": { - "column": "9", - "line": "373", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSAI1_48M2CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@17152@macro@RCC_PLLSAI1_ADC1CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_PLLSAI1_ADC1CLK", - "location": { - "column": "9", - "line": "374", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_PLLSAI1_ADC1CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18356@macro@RCC_MSIRANGE_0", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_0", - "location": { - "column": "9", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18438@macro@RCC_MSIRANGE_1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_1", - "location": { - "column": "9", - "line": "404", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18520@macro@RCC_MSIRANGE_2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_2", - "location": { - "column": "9", - "line": "405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18602@macro@RCC_MSIRANGE_3", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_3", - "location": { - "column": "9", - "line": "406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18684@macro@RCC_MSIRANGE_4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_4", - "location": { - "column": "9", - "line": "407", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18766@macro@RCC_MSIRANGE_5", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_5", - "location": { - "column": "9", - "line": "408", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18848@macro@RCC_MSIRANGE_6", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_6", - "location": { - "column": "9", - "line": "409", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@18930@macro@RCC_MSIRANGE_7", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_7", - "location": { - "column": "9", - "line": "410", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19012@macro@RCC_MSIRANGE_8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_8", - "location": { - "column": "9", - "line": "411", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19094@macro@RCC_MSIRANGE_9", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_9", - "location": { - "column": "9", - "line": "412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19176@macro@RCC_MSIRANGE_10", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_10", - "location": { - "column": "9", - "line": "413", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19258@macro@RCC_MSIRANGE_11", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MSIRANGE_11", - "location": { - "column": "9", - "line": "414", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MSIRANGE_11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19430@macro@RCC_CLOCKTYPE_SYSCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_CLOCKTYPE_SYSCLK", - "location": { - "column": "9", - "line": "422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_CLOCKTYPE_SYSCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19512@macro@RCC_CLOCKTYPE_HCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_CLOCKTYPE_HCLK", - "location": { - "column": "9", - "line": "423", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_CLOCKTYPE_HCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19592@macro@RCC_CLOCKTYPE_PCLK1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_CLOCKTYPE_PCLK1", - "location": { - "column": "9", - "line": "424", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_CLOCKTYPE_PCLK1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19673@macro@RCC_CLOCKTYPE_PCLK2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_CLOCKTYPE_PCLK2", - "location": { - "column": "9", - "line": "425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_CLOCKTYPE_PCLK2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19848@macro@RCC_SYSCLKSOURCE_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_MSI", - "location": { - "column": "9", - "line": "433", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@19945@macro@RCC_SYSCLKSOURCE_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_HSI", - "location": { - "column": "9", - "line": "434", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20042@macro@RCC_SYSCLKSOURCE_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_HSE", - "location": { - "column": "9", - "line": "435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20139@macro@RCC_SYSCLKSOURCE_PLLCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_PLLCLK", - "location": { - "column": "9", - "line": "436", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_PLLCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20344@macro@RCC_SYSCLKSOURCE_STATUS_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_STATUS_MSI", - "location": { - "column": "9", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_STATUS_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20436@macro@RCC_SYSCLKSOURCE_STATUS_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_STATUS_HSI", - "location": { - "column": "9", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_STATUS_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20528@macro@RCC_SYSCLKSOURCE_STATUS_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_STATUS_HSE", - "location": { - "column": "9", - "line": "446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_STATUS_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20620@macro@RCC_SYSCLKSOURCE_STATUS_PLLCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLKSOURCE_STATUS_PLLCLK", - "location": { - "column": "9", - "line": "447", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLKSOURCE_STATUS_PLLCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20800@macro@RCC_SYSCLK_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV1", - "location": { - "column": "9", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20888@macro@RCC_SYSCLK_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV2", - "location": { - "column": "9", - "line": "456", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@20977@macro@RCC_SYSCLK_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV4", - "location": { - "column": "9", - "line": "457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21066@macro@RCC_SYSCLK_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV8", - "location": { - "column": "9", - "line": "458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21155@macro@RCC_SYSCLK_DIV16", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV16", - "location": { - "column": "9", - "line": "459", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21245@macro@RCC_SYSCLK_DIV64", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV64", - "location": { - "column": "9", - "line": "460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV64", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21335@macro@RCC_SYSCLK_DIV128", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV128", - "location": { - "column": "9", - "line": "461", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV128", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21426@macro@RCC_SYSCLK_DIV256", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV256", - "location": { - "column": "9", - "line": "462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV256", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21517@macro@RCC_SYSCLK_DIV512", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_SYSCLK_DIV512", - "location": { - "column": "9", - "line": "463", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_SYSCLK_DIV512", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21708@macro@RCC_HCLK_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HCLK_DIV1", - "location": { - "column": "9", - "line": "471", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HCLK_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21794@macro@RCC_HCLK_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HCLK_DIV2", - "location": { - "column": "9", - "line": "472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HCLK_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21881@macro@RCC_HCLK_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HCLK_DIV4", - "location": { - "column": "9", - "line": "473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HCLK_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@21968@macro@RCC_HCLK_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HCLK_DIV8", - "location": { - "column": "9", - "line": "474", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HCLK_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22055@macro@RCC_HCLK_DIV16", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_HCLK_DIV16", - "location": { - "column": "9", - "line": "475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_HCLK_DIV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22231@macro@RCC_RTCCLKSOURCE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RTCCLKSOURCE_NONE", - "location": { - "column": "9", - "line": "483", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RTCCLKSOURCE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22327@macro@RCC_RTCCLKSOURCE_LSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RTCCLKSOURCE_LSE", - "location": { - "column": "9", - "line": "484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RTCCLKSOURCE_LSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22435@macro@RCC_RTCCLKSOURCE_LSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RTCCLKSOURCE_LSI", - "location": { - "column": "9", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RTCCLKSOURCE_LSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22543@macro@RCC_RTCCLKSOURCE_HSE_DIV32", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RTCCLKSOURCE_HSE_DIV32", - "location": { - "column": "9", - "line": "486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RTCCLKSOURCE_HSE_DIV32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22739@macro@RCC_MCO1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1", - "location": { - "column": "9", - "line": "494", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22791@macro@RCC_MCO", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO", - "location": { - "column": "9", - "line": "495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@22995@macro@RCC_MCO1SOURCE_NOCLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_NOCLOCK", - "location": { - "column": "9", - "line": "503", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_NOCLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23121@macro@RCC_MCO1SOURCE_SYSCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_SYSCLK", - "location": { - "column": "9", - "line": "504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_SYSCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23240@macro@RCC_MCO1SOURCE_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_MSI", - "location": { - "column": "9", - "line": "505", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23356@macro@RCC_MCO1SOURCE_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_HSI", - "location": { - "column": "9", - "line": "506", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23472@macro@RCC_MCO1SOURCE_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_HSE", - "location": { - "column": "9", - "line": "507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23588@macro@RCC_MCO1SOURCE_PLLCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_PLLCLK", - "location": { - "column": "9", - "line": "508", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_PLLCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23707@macro@RCC_MCO1SOURCE_LSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_LSI", - "location": { - "column": "9", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_LSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23823@macro@RCC_MCO1SOURCE_LSE", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_LSE", - "location": { - "column": "9", - "line": "510", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_LSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@23988@macro@RCC_MCO1SOURCE_HSI48", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCO1SOURCE_HSI48", - "location": { - "column": "9", - "line": "512", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCO1SOURCE_HSI48", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24264@macro@RCC_MCODIV_1", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCODIV_1", - "location": { - "column": "9", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCODIV_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24354@macro@RCC_MCODIV_2", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCODIV_2", - "location": { - "column": "9", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCODIV_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24444@macro@RCC_MCODIV_4", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCODIV_4", - "location": { - "column": "9", - "line": "523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCODIV_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24534@macro@RCC_MCODIV_8", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCODIV_8", - "location": { - "column": "9", - "line": "524", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCODIV_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24624@macro@RCC_MCODIV_16", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_MCODIV_16", - "location": { - "column": "9", - "line": "525", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_MCODIV_16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24790@macro@RCC_IT_LSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_LSIRDY", - "location": { - "column": "9", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_LSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24885@macro@RCC_IT_LSERDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_LSERDY", - "location": { - "column": "9", - "line": "534", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_LSERDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@24980@macro@RCC_IT_MSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_MSIRDY", - "location": { - "column": "9", - "line": "535", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_MSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25075@macro@RCC_IT_HSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_HSIRDY", - "location": { - "column": "9", - "line": "536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_HSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25172@macro@RCC_IT_HSERDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_HSERDY", - "location": { - "column": "9", - "line": "537", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_HSERDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25267@macro@RCC_IT_PLLRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_PLLRDY", - "location": { - "column": "9", - "line": "538", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_PLLRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25396@macro@RCC_IT_PLLSAI1RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_PLLSAI1RDY", - "location": { - "column": "9", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_PLLSAI1RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25696@macro@RCC_IT_CSS", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_CSS", - "location": { - "column": "9", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_CSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25802@macro@RCC_IT_LSECSS", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_LSECSS", - "location": { - "column": "9", - "line": "546", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_LSECSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@25944@macro@RCC_IT_HSI48RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_IT_HSI48RDY", - "location": { - "column": "9", - "line": "548", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_IT_HSI48RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@26480@macro@RCC_FLAG_MSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_MSIRDY", - "location": { - "column": "9", - "line": "565", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_MSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@26586@macro@RCC_FLAG_HSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_HSIRDY", - "location": { - "column": "9", - "line": "566", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_HSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@26692@macro@RCC_FLAG_HSERDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_HSERDY", - "location": { - "column": "9", - "line": "567", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_HSERDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@26798@macro@RCC_FLAG_PLLRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_PLLRDY", - "location": { - "column": "9", - "line": "568", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_PLLRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@26938@macro@RCC_FLAG_PLLSAI1RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_PLLSAI1RDY", - "location": { - "column": "9", - "line": "570", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_PLLSAI1RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27304@macro@RCC_FLAG_LSERDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_LSERDY", - "location": { - "column": "9", - "line": "577", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_LSERDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27415@macro@RCC_FLAG_LSECSSD", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_LSECSSD", - "location": { - "column": "9", - "line": "578", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_LSECSSD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27587@macro@RCC_FLAG_LSIRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_LSIRDY", - "location": { - "column": "9", - "line": "581", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_LSIRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27698@macro@RCC_FLAG_FWRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_FWRST", - "location": { - "column": "9", - "line": "582", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_FWRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27814@macro@RCC_FLAG_OBLRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_OBLRST", - "location": { - "column": "9", - "line": "583", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_OBLRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@27940@macro@RCC_FLAG_PINRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_PINRST", - "location": { - "column": "9", - "line": "584", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_PINRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28051@macro@RCC_FLAG_BORRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_BORRST", - "location": { - "column": "9", - "line": "585", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_BORRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28162@macro@RCC_FLAG_SFTRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_SFTRST", - "location": { - "column": "9", - "line": "586", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_SFTRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28278@macro@RCC_FLAG_IWDGRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_IWDGRST", - "location": { - "column": "9", - "line": "587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_IWDGRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28406@macro@RCC_FLAG_WWDGRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_WWDGRST", - "location": { - "column": "9", - "line": "588", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_WWDGRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28529@macro@RCC_FLAG_LPWRRST", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_LPWRRST", - "location": { - "column": "9", - "line": "589", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_LPWRRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28715@macro@RCC_FLAG_HSI48RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_HSI48RDY", - "location": { - "column": "9", - "line": "593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_HSI48RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@28950@macro@RCC_LSEDRIVE_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSEDRIVE_LOW", - "location": { - "column": "9", - "line": "602", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSEDRIVE_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@29045@macro@RCC_LSEDRIVE_MEDIUMLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSEDRIVE_MEDIUMLOW", - "location": { - "column": "9", - "line": "603", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSEDRIVE_MEDIUMLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@29147@macro@RCC_LSEDRIVE_MEDIUMHIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSEDRIVE_MEDIUMHIGH", - "location": { - "column": "9", - "line": "604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSEDRIVE_MEDIUMHIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@29250@macro@RCC_LSEDRIVE_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_LSEDRIVE_HIGH", - "location": { - "column": "9", - "line": "605", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_LSEDRIVE_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@29441@macro@RCC_STOP_WAKEUPCLOCK_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_STOP_WAKEUPCLOCK_MSI", - "location": { - "column": "9", - "line": "613", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_STOP_WAKEUPCLOCK_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@29549@macro@RCC_STOP_WAKEUPCLOCK_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_STOP_WAKEUPCLOCK_HSI", - "location": { - "column": "9", - "line": "614", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_STOP_WAKEUPCLOCK_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@30216@macro@__HAL_RCC_DMA1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_CLK_ENABLE", - "location": { - "column": "9", - "line": "637", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@30777@macro@__HAL_RCC_DMA2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_CLK_ENABLE", - "location": { - "column": "9", - "line": "645", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@31949@macro@__HAL_RCC_FLASH_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_CLK_ENABLE", - "location": { - "column": "9", - "line": "663", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@32512@macro@__HAL_RCC_CRC_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_CLK_ENABLE", - "location": { - "column": "9", - "line": "671", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@33071@macro@__HAL_RCC_TSC_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_CLK_ENABLE", - "location": { - "column": "9", - "line": "679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@34842@macro@__HAL_RCC_DMA1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_CLK_DISABLE", - "location": { - "column": "9", - "line": "708", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@34936@macro@__HAL_RCC_DMA2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_CLK_DISABLE", - "location": { - "column": "9", - "line": "710", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@35171@macro@__HAL_RCC_FLASH_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_CLK_DISABLE", - "location": { - "column": "9", - "line": "716", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@35266@macro@__HAL_RCC_CRC_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_CLK_DISABLE", - "location": { - "column": "9", - "line": "718", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@35359@macro@__HAL_RCC_TSC_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_CLK_DISABLE", - "location": { - "column": "9", - "line": "720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@36108@macro@__HAL_RCC_GPIOA_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_CLK_ENABLE", - "location": { - "column": "9", - "line": "742", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@36671@macro@__HAL_RCC_GPIOB_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_CLK_ENABLE", - "location": { - "column": "9", - "line": "750", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@37234@macro@__HAL_RCC_GPIOC_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_CLK_ENABLE", - "location": { - "column": "9", - "line": "758", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@37817@macro@__HAL_RCC_GPIOD_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_CLK_ENABLE", - "location": { - "column": "9", - "line": "767", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@38420@macro@__HAL_RCC_GPIOE_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_CLK_ENABLE", - "location": { - "column": "9", - "line": "777", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@40209@macro@__HAL_RCC_GPIOH_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_CLK_ENABLE", - "location": { - "column": "9", - "line": "806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@41988@macro@__HAL_RCC_ADC_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_CLK_ENABLE", - "location": { - "column": "9", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@44936@macro@__HAL_RCC_RNG_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_CLK_ENABLE", - "location": { - "column": "9", - "line": "882", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@47377@macro@__HAL_RCC_GPIOA_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_CLK_DISABLE", - "location": { - "column": "9", - "line": "921", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@47472@macro@__HAL_RCC_GPIOB_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_CLK_DISABLE", - "location": { - "column": "9", - "line": "923", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@47567@macro@__HAL_RCC_GPIOC_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_CLK_DISABLE", - "location": { - "column": "9", - "line": "925", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@47682@macro@__HAL_RCC_GPIOD_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_CLK_DISABLE", - "location": { - "column": "9", - "line": "928", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@47817@macro@__HAL_RCC_GPIOE_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_CLK_DISABLE", - "location": { - "column": "9", - "line": "932", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@48202@macro@__HAL_RCC_GPIOH_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_CLK_DISABLE", - "location": { - "column": "9", - "line": "943", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@48578@macro@__HAL_RCC_ADC_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_CLK_DISABLE", - "location": { - "column": "9", - "line": "953", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@49194@macro@__HAL_RCC_RNG_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_CLK_DISABLE", - "location": { - "column": "9", - "line": "971", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@50762@macro@__HAL_RCC_QSPI_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_CLK_ENABLE", - "location": { - "column": "9", - "line": "1008", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@52726@macro@__HAL_RCC_QSPI_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_CLK_DISABLE", - "location": { - "column": "9", - "line": "1042", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@53496@macro@__HAL_RCC_TIM2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_CLK_ENABLE", - "location": { - "column": "9", - "line": "1065", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@55870@macro@__HAL_RCC_TIM6_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_CLK_ENABLE", - "location": { - "column": "9", - "line": "1103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@56454@macro@__HAL_RCC_TIM7_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_CLK_ENABLE", - "location": { - "column": "9", - "line": "1112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@57673@macro@__HAL_RCC_RTCAPB_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_CLK_ENABLE", - "location": { - "column": "9", - "line": "1132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@58278@macro@__HAL_RCC_WWDG_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_CLK_ENABLE", - "location": { - "column": "9", - "line": "1141", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@58862@macro@__HAL_RCC_SPI2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_CLK_ENABLE", - "location": { - "column": "9", - "line": "1150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@59465@macro@__HAL_RCC_SPI3_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_CLK_ENABLE", - "location": { - "column": "9", - "line": "1160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@60049@macro@__HAL_RCC_USART2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_CLK_ENABLE", - "location": { - "column": "9", - "line": "1169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@60639@macro@__HAL_RCC_USART3_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_CLK_ENABLE", - "location": { - "column": "9", - "line": "1178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@62443@macro@__HAL_RCC_I2C1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1207", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@63027@macro@__HAL_RCC_I2C2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_CLK_ENABLE", - "location": { - "column": "9", - "line": "1216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@63611@macro@__HAL_RCC_I2C3_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_CLK_ENABLE", - "location": { - "column": "9", - "line": "1225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@64797@macro@__HAL_RCC_CRS_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_CLK_ENABLE", - "location": { - "column": "9", - "line": "1244", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@65397@macro@__HAL_RCC_CAN1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1254", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@67187@macro@__HAL_RCC_PWR_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_CLK_ENABLE", - "location": { - "column": "9", - "line": "1283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@67769@macro@__HAL_RCC_DAC1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@68353@macro@__HAL_RCC_OPAMP_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_CLK_ENABLE", - "location": { - "column": "9", - "line": "1301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@68920@macro@__HAL_RCC_LPTIM1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@69489@macro@__HAL_RCC_LPUART1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@70081@macro@__HAL_RCC_SWPMI1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@70671@macro@__HAL_RCC_LPTIM2_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_CLK_ENABLE", - "location": { - "column": "9", - "line": "1335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@71242@macro@__HAL_RCC_TIM2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_CLK_DISABLE", - "location": { - "column": "9", - "line": "1344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@71740@macro@__HAL_RCC_TIM6_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_CLK_DISABLE", - "location": { - "column": "9", - "line": "1358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@71855@macro@__HAL_RCC_TIM7_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_CLK_DISABLE", - "location": { - "column": "9", - "line": "1361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@72138@macro@__HAL_RCC_RTCAPB_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_CLK_DISABLE", - "location": { - "column": "9", - "line": "1369", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@72292@macro@__HAL_RCC_SPI2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_CLK_DISABLE", - "location": { - "column": "9", - "line": "1373", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@72426@macro@__HAL_RCC_SPI3_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_CLK_DISABLE", - "location": { - "column": "9", - "line": "1377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@72541@macro@__HAL_RCC_USART2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_CLK_DISABLE", - "location": { - "column": "9", - "line": "1380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@72660@macro@__HAL_RCC_USART3_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_CLK_DISABLE", - "location": { - "column": "9", - "line": "1383", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@73053@macro@__HAL_RCC_I2C1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1394", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@73168@macro@__HAL_RCC_I2C2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_CLK_DISABLE", - "location": { - "column": "9", - "line": "1397", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@73283@macro@__HAL_RCC_I2C3_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_CLK_DISABLE", - "location": { - "column": "9", - "line": "1400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@73531@macro@__HAL_RCC_CRS_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_CLK_DISABLE", - "location": { - "column": "9", - "line": "1407", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@73664@macro@__HAL_RCC_CAN1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1411", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74047@macro@__HAL_RCC_PWR_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_CLK_DISABLE", - "location": { - "column": "9", - "line": "1422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74161@macro@__HAL_RCC_DAC1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74276@macro@__HAL_RCC_OPAMP_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_CLK_DISABLE", - "location": { - "column": "9", - "line": "1428", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74373@macro@__HAL_RCC_LPTIM1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1430", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74471@macro@__HAL_RCC_LPUART1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1432", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74591@macro@__HAL_RCC_SWPMI1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@74710@macro@__HAL_RCC_LPTIM2_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_CLK_DISABLE", - "location": { - "column": "9", - "line": "1438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@75180@macro@__HAL_RCC_SYSCFG_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_CLK_ENABLE", - "location": { - "column": "9", - "line": "1452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@75745@macro@__HAL_RCC_FIREWALL_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FIREWALL_CLK_ENABLE", - "location": { - "column": "9", - "line": "1460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FIREWALL_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@76356@macro@__HAL_RCC_SDMMC1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@76966@macro@__HAL_RCC_TIM1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@77527@macro@__HAL_RCC_SPI1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@78687@macro@__HAL_RCC_USART1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@79254@macro@__HAL_RCC_TIM15_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_CLK_ENABLE", - "location": { - "column": "9", - "line": "1513", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@79817@macro@__HAL_RCC_TIM16_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_CLK_ENABLE", - "location": { - "column": "9", - "line": "1521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@81002@macro@__HAL_RCC_SAI1_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_CLK_ENABLE", - "location": { - "column": "9", - "line": "1540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_CLK_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84000@macro@__HAL_RCC_SYSCFG_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_CLK_DISABLE", - "location": { - "column": "9", - "line": "1590", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84150@macro@__HAL_RCC_SDMMC1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84291@macro@__HAL_RCC_TIM1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1596", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84385@macro@__HAL_RCC_SPI1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1598", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84611@macro@__HAL_RCC_USART1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84707@macro@__HAL_RCC_TIM15_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_CLK_DISABLE", - "location": { - "column": "9", - "line": "1606", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@84802@macro@__HAL_RCC_TIM16_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_CLK_DISABLE", - "location": { - "column": "9", - "line": "1608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@85051@macro@__HAL_RCC_SAI1_CLK_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_CLK_DISABLE", - "location": { - "column": "9", - "line": "1615", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_CLK_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@86127@macro@__HAL_RCC_DMA1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@86228@macro@__HAL_RCC_DMA2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1648", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@86477@macro@__HAL_RCC_FLASH_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1654", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@86579@macro@__HAL_RCC_CRC_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1656", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@86679@macro@__HAL_RCC_TSC_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1658", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@87068@macro@__HAL_RCC_DMA1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1669", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@87169@macro@__HAL_RCC_DMA2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1671", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@87418@macro@__HAL_RCC_FLASH_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@87520@macro@__HAL_RCC_CRC_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@87620@macro@__HAL_RCC_TSC_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1681", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@88412@macro@__HAL_RCC_GPIOA_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1703", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@88514@macro@__HAL_RCC_GPIOB_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1705", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@88616@macro@__HAL_RCC_GPIOC_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1707", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@88738@macro@__HAL_RCC_GPIOD_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1710", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@88880@macro@__HAL_RCC_GPIOE_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1714", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@89286@macro@__HAL_RCC_GPIOH_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1725", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@89682@macro@__HAL_RCC_ADC_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1735", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@90332@macro@__HAL_RCC_RNG_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1753", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@90929@macro@__HAL_RCC_GPIOA_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@91031@macro@__HAL_RCC_GPIOB_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1770", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@91133@macro@__HAL_RCC_GPIOC_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@91255@macro@__HAL_RCC_GPIOD_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1775", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@91397@macro@__HAL_RCC_GPIOE_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1779", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@91803@macro@__HAL_RCC_GPIOH_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1790", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@92199@macro@__HAL_RCC_ADC_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1800", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@92849@macro@__HAL_RCC_RNG_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@94019@macro@__HAL_RCC_QSPI_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@94608@macro@__HAL_RCC_QSPI_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1865", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@95432@macro@__HAL_RCC_TIM2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1888", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@95958@macro@__HAL_RCC_TIM6_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96080@macro@__HAL_RCC_TIM7_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1905", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96376@macro@__HAL_RCC_RTCAPB_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1913", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96517@macro@__HAL_RCC_WWDG_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1916", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96639@macro@__HAL_RCC_SPI2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1919", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96780@macro@__HAL_RCC_SPI3_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1923", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@96902@macro@__HAL_RCC_USART2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1926", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@97028@macro@__HAL_RCC_USART3_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1929", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@97442@macro@__HAL_RCC_I2C1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1940", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@97564@macro@__HAL_RCC_I2C2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1943", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@97686@macro@__HAL_RCC_I2C3_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1946", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@97948@macro@__HAL_RCC_CRS_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1953", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98087@macro@__HAL_RCC_CAN1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1957", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98490@macro@__HAL_RCC_PWR_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1968", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98611@macro@__HAL_RCC_DAC1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1971", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98733@macro@__HAL_RCC_OPAMP_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1974", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98837@macro@__HAL_RCC_LPTIM1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1976", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@98942@macro@__HAL_RCC_LPUART1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1978", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@99069@macro@__HAL_RCC_SWPMI1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1981", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@99195@macro@__HAL_RCC_LPTIM2_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "1984", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@99302@macro@__HAL_RCC_TIM2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "1987", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@99828@macro@__HAL_RCC_TIM6_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2001", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@99950@macro@__HAL_RCC_TIM7_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2004", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100246@macro@__HAL_RCC_RTCAPB_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2012", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100387@macro@__HAL_RCC_WWDG_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2015", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100509@macro@__HAL_RCC_SPI2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2018", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100650@macro@__HAL_RCC_SPI3_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2022", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100772@macro@__HAL_RCC_USART2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2025", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@100898@macro@__HAL_RCC_USART3_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2028", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@101312@macro@__HAL_RCC_I2C1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2039", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@101434@macro@__HAL_RCC_I2C2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2042", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@101556@macro@__HAL_RCC_I2C3_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2045", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@101818@macro@__HAL_RCC_CRS_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2052", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@101957@macro@__HAL_RCC_CAN1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2056", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102360@macro@__HAL_RCC_PWR_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2067", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102481@macro@__HAL_RCC_DAC1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2070", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102603@macro@__HAL_RCC_OPAMP_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2073", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102707@macro@__HAL_RCC_LPTIM1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2075", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102812@macro@__HAL_RCC_LPUART1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2077", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@102939@macro@__HAL_RCC_SWPMI1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2080", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@103065@macro@__HAL_RCC_LPTIM2_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2083", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@103575@macro@__HAL_RCC_SYSCFG_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2097", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@103678@macro@__HAL_RCC_FIREWALL_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FIREWALL_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2099", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FIREWALL_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@103831@macro@__HAL_RCC_SDMMC1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@103979@macro@__HAL_RCC_TIM1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@104080@macro@__HAL_RCC_SPI1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2107", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@104320@macro@__HAL_RCC_USART1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@104423@macro@__HAL_RCC_TIM15_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@104525@macro@__HAL_RCC_TIM16_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2117", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@104788@macro@__HAL_RCC_SAI1_IS_CLK_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_IS_CLK_ENABLED", - "location": { - "column": "9", - "line": "2124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_IS_CLK_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@105485@macro@__HAL_RCC_SYSCFG_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2144", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@105642@macro@__HAL_RCC_SDMMC1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2147", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@105790@macro@__HAL_RCC_TIM1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@105891@macro@__HAL_RCC_SPI1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@106131@macro@__HAL_RCC_USART1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@106234@macro@__HAL_RCC_TIM15_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@106336@macro@__HAL_RCC_TIM16_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2162", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@106599@macro@__HAL_RCC_SAI1_IS_CLK_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_IS_CLK_DISABLED", - "location": { - "column": "9", - "line": "2169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_IS_CLK_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@107462@macro@__HAL_RCC_AHB1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB1_FORCE_RESET", - "location": { - "column": "9", - "line": "2196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@107551@macro@__HAL_RCC_DMA1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_FORCE_RESET", - "location": { - "column": "9", - "line": "2198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@107646@macro@__HAL_RCC_DMA2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_FORCE_RESET", - "location": { - "column": "9", - "line": "2200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@107883@macro@__HAL_RCC_FLASH_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_FORCE_RESET", - "location": { - "column": "9", - "line": "2206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@107979@macro@__HAL_RCC_CRC_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_FORCE_RESET", - "location": { - "column": "9", - "line": "2208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108073@macro@__HAL_RCC_TSC_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_FORCE_RESET", - "location": { - "column": "9", - "line": "2210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108444@macro@__HAL_RCC_AHB1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108533@macro@__HAL_RCC_DMA1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108630@macro@__HAL_RCC_DMA2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108871@macro@__HAL_RCC_FLASH_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_RELEASE_RESET", - "location": { - "column": "9", - "line": "2231", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@108969@macro@__HAL_RCC_CRC_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_RELEASE_RESET", - "location": { - "column": "9", - "line": "2233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@109065@macro@__HAL_RCC_TSC_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_RELEASE_RESET", - "location": { - "column": "9", - "line": "2235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@109608@macro@__HAL_RCC_AHB2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB2_FORCE_RESET", - "location": { - "column": "9", - "line": "2253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@109697@macro@__HAL_RCC_GPIOA_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_FORCE_RESET", - "location": { - "column": "9", - "line": "2255", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@109793@macro@__HAL_RCC_GPIOB_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_FORCE_RESET", - "location": { - "column": "9", - "line": "2257", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@109889@macro@__HAL_RCC_GPIOC_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_FORCE_RESET", - "location": { - "column": "9", - "line": "2259", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@110005@macro@__HAL_RCC_GPIOD_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_FORCE_RESET", - "location": { - "column": "9", - "line": "2262", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@110141@macro@__HAL_RCC_GPIOE_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_FORCE_RESET", - "location": { - "column": "9", - "line": "2266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@110529@macro@__HAL_RCC_GPIOH_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_FORCE_RESET", - "location": { - "column": "9", - "line": "2277", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@110907@macro@__HAL_RCC_ADC_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_FORCE_RESET", - "location": { - "column": "9", - "line": "2287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@111527@macro@__HAL_RCC_RNG_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_FORCE_RESET", - "location": { - "column": "9", - "line": "2305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112104@macro@__HAL_RCC_AHB2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112193@macro@__HAL_RCC_GPIOA_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_RELEASE_RESET", - "location": { - "column": "9", - "line": "2322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112291@macro@__HAL_RCC_GPIOB_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_RELEASE_RESET", - "location": { - "column": "9", - "line": "2324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112389@macro@__HAL_RCC_GPIOC_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_RELEASE_RESET", - "location": { - "column": "9", - "line": "2326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112507@macro@__HAL_RCC_GPIOD_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_RELEASE_RESET", - "location": { - "column": "9", - "line": "2329", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@112645@macro@__HAL_RCC_GPIOE_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_RELEASE_RESET", - "location": { - "column": "9", - "line": "2333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@113039@macro@__HAL_RCC_GPIOH_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_RELEASE_RESET", - "location": { - "column": "9", - "line": "2344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@113423@macro@__HAL_RCC_ADC_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_RELEASE_RESET", - "location": { - "column": "9", - "line": "2354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@114053@macro@__HAL_RCC_RNG_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_RELEASE_RESET", - "location": { - "column": "9", - "line": "2372", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@114804@macro@__HAL_RCC_AHB3_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB3_FORCE_RESET", - "location": { - "column": "9", - "line": "2394", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB3_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@115057@macro@__HAL_RCC_QSPI_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_FORCE_RESET", - "location": { - "column": "9", - "line": "2401", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@115458@macro@__HAL_RCC_AHB3_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_AHB3_RELEASE_RESET", - "location": { - "column": "9", - "line": "2412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_AHB3_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@115713@macro@__HAL_RCC_QSPI_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_RELEASE_RESET", - "location": { - "column": "9", - "line": "2419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@116288@macro@__HAL_RCC_APB1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_APB1_FORCE_RESET", - "location": { - "column": "9", - "line": "2438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_APB1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@116590@macro@__HAL_RCC_TIM2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_FORCE_RESET", - "location": { - "column": "9", - "line": "2443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117092@macro@__HAL_RCC_TIM6_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_FORCE_RESET", - "location": { - "column": "9", - "line": "2457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117208@macro@__HAL_RCC_TIM7_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_FORCE_RESET", - "location": { - "column": "9", - "line": "2460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117475@macro@__HAL_RCC_SPI2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_FORCE_RESET", - "location": { - "column": "9", - "line": "2468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117610@macro@__HAL_RCC_SPI3_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_FORCE_RESET", - "location": { - "column": "9", - "line": "2472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117726@macro@__HAL_RCC_USART2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_FORCE_RESET", - "location": { - "column": "9", - "line": "2475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@117846@macro@__HAL_RCC_USART3_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_FORCE_RESET", - "location": { - "column": "9", - "line": "2478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@118242@macro@__HAL_RCC_I2C1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_FORCE_RESET", - "location": { - "column": "9", - "line": "2489", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@118358@macro@__HAL_RCC_I2C2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_FORCE_RESET", - "location": { - "column": "9", - "line": "2492", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@118474@macro@__HAL_RCC_I2C3_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_FORCE_RESET", - "location": { - "column": "9", - "line": "2495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@118724@macro@__HAL_RCC_CRS_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_FORCE_RESET", - "location": { - "column": "9", - "line": "2502", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@118857@macro@__HAL_RCC_CAN1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_FORCE_RESET", - "location": { - "column": "9", - "line": "2506", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119242@macro@__HAL_RCC_PWR_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_FORCE_RESET", - "location": { - "column": "9", - "line": "2517", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119357@macro@__HAL_RCC_DAC1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_FORCE_RESET", - "location": { - "column": "9", - "line": "2520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119473@macro@__HAL_RCC_OPAMP_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_FORCE_RESET", - "location": { - "column": "9", - "line": "2523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119571@macro@__HAL_RCC_LPTIM1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_FORCE_RESET", - "location": { - "column": "9", - "line": "2525", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119670@macro@__HAL_RCC_LPUART1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_FORCE_RESET", - "location": { - "column": "9", - "line": "2527", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119791@macro@__HAL_RCC_SWPMI1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_FORCE_RESET", - "location": { - "column": "9", - "line": "2530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@119911@macro@__HAL_RCC_LPTIM2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_FORCE_RESET", - "location": { - "column": "9", - "line": "2533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@120012@macro@__HAL_RCC_APB1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_APB1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_APB1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@120314@macro@__HAL_RCC_TIM2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2541", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@120824@macro@__HAL_RCC_TIM6_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_RELEASE_RESET", - "location": { - "column": "9", - "line": "2555", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@120942@macro@__HAL_RCC_TIM7_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_RELEASE_RESET", - "location": { - "column": "9", - "line": "2558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@121213@macro@__HAL_RCC_SPI2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2566", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@121350@macro@__HAL_RCC_SPI3_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_RELEASE_RESET", - "location": { - "column": "9", - "line": "2570", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@121468@macro@__HAL_RCC_USART2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@121590@macro@__HAL_RCC_USART3_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_RELEASE_RESET", - "location": { - "column": "9", - "line": "2576", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@121992@macro@__HAL_RCC_I2C1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@122110@macro@__HAL_RCC_I2C2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2590", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@122228@macro@__HAL_RCC_I2C3_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_RELEASE_RESET", - "location": { - "column": "9", - "line": "2593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@122482@macro@__HAL_RCC_CRS_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_RELEASE_RESET", - "location": { - "column": "9", - "line": "2600", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@122617@macro@__HAL_RCC_CAN1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123008@macro@__HAL_RCC_PWR_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_RELEASE_RESET", - "location": { - "column": "9", - "line": "2615", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123125@macro@__HAL_RCC_DAC1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2618", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123243@macro@__HAL_RCC_OPAMP_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_RELEASE_RESET", - "location": { - "column": "9", - "line": "2621", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123343@macro@__HAL_RCC_LPTIM1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2623", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123444@macro@__HAL_RCC_LPUART1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2625", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123567@macro@__HAL_RCC_SWPMI1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123689@macro@__HAL_RCC_LPTIM2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2631", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@123958@macro@__HAL_RCC_APB2_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_APB2_FORCE_RESET", - "location": { - "column": "9", - "line": "2641", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_APB2_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124047@macro@__HAL_RCC_SYSCFG_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_FORCE_RESET", - "location": { - "column": "9", - "line": "2643", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124200@macro@__HAL_RCC_SDMMC1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_FORCE_RESET", - "location": { - "column": "9", - "line": "2646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124344@macro@__HAL_RCC_TIM1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_FORCE_RESET", - "location": { - "column": "9", - "line": "2649", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124439@macro@__HAL_RCC_SPI1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_FORCE_RESET", - "location": { - "column": "9", - "line": "2651", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124667@macro@__HAL_RCC_USART1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_FORCE_RESET", - "location": { - "column": "9", - "line": "2657", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124764@macro@__HAL_RCC_TIM15_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_FORCE_RESET", - "location": { - "column": "9", - "line": "2659", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@124860@macro@__HAL_RCC_TIM16_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_FORCE_RESET", - "location": { - "column": "9", - "line": "2661", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@125111@macro@__HAL_RCC_SAI1_FORCE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_FORCE_RESET", - "location": { - "column": "9", - "line": "2668", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_FORCE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@125778@macro@__HAL_RCC_APB2_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_APB2_RELEASE_RESET", - "location": { - "column": "9", - "line": "2688", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_APB2_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@125867@macro@__HAL_RCC_SYSCFG_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_RELEASE_RESET", - "location": { - "column": "9", - "line": "2690", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126022@macro@__HAL_RCC_SDMMC1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2693", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126168@macro@__HAL_RCC_TIM1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2696", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126265@macro@__HAL_RCC_SPI1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2698", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126497@macro@__HAL_RCC_USART1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126596@macro@__HAL_RCC_TIM15_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_RELEASE_RESET", - "location": { - "column": "9", - "line": "2706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126694@macro@__HAL_RCC_TIM16_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_RELEASE_RESET", - "location": { - "column": "9", - "line": "2708", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@126949@macro@__HAL_RCC_SAI1_RELEASE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_RELEASE_RESET", - "location": { - "column": "9", - "line": "2715", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_RELEASE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128116@macro@__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2747", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128214@macro@__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2749", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128457@macro@__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128556@macro@__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2757", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128655@macro@__HAL_RCC_CRC_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2759", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@128752@macro@__HAL_RCC_TSC_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129132@macro@__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129232@macro@__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129479@macro@__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2780", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129580@macro@__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2782", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129681@macro@__HAL_RCC_CRC_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2784", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@129780@macro@__HAL_RCC_TSC_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2786", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@130656@macro@__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2809", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@130755@macro@__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2811", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@130854@macro@__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2813", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@130973@macro@__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2816", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@131112@macro@__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2820", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@131509@macro@__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2831", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@131747@macro@__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@132136@macro@__HAL_RCC_ADC_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2847", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@132771@macro@__HAL_RCC_RNG_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2865", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@133364@macro@__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2880", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@133465@macro@__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2882", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@133566@macro@__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2884", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@133687@macro@__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2887", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@133828@macro@__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2891", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@134231@macro@__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@134473@macro@__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2908", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@134871@macro@__HAL_RCC_ADC_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2918", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@135516@macro@__HAL_RCC_RNG_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2936", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@136629@macro@__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "2964", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@137206@macro@__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "2980", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@138261@macro@__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3008", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@138775@macro@__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3022", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@138894@macro@__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3025", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139188@macro@__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3033", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139330@macro@__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3036", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139449@macro@__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3039", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139587@macro@__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3043", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139706@macro@__HAL_RCC_USART2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3046", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@139829@macro@__HAL_RCC_USART3_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3049", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@140234@macro@__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3060", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@140353@macro@__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3063", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@140472@macro@__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3066", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@140728@macro@__HAL_RCC_CRS_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3073", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@140864@macro@__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3077", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141258@macro@__HAL_RCC_PWR_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3088", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141376@macro@__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3091", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141495@macro@__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3094", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141596@macro@__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3096", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141698@macro@__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3098", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141822@macro@__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3101", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@141945@macro@__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@142049@macro@__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3107", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@142571@macro@__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3121", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@142692@macro@__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@142990@macro@__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@143134@macro@__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3135", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@143255@macro@__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3138", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@143395@macro@__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@143516@macro@__HAL_RCC_USART2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@143641@macro@__HAL_RCC_USART3_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@144052@macro@__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@144173@macro@__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3162", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@144294@macro@__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@144554@macro@__HAL_RCC_CRS_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@144692@macro@__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145092@macro@__HAL_RCC_PWR_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145212@macro@__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145333@macro@__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145436@macro@__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145540@macro@__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145666@macro@__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@145791@macro@__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@146387@macro@__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@146545@macro@__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@146694@macro@__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@146792@macro@__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@147026@macro@__HAL_RCC_USART1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3232", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@147126@macro@__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@147225@macro@__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@147482@macro@__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", - "location": { - "column": "9", - "line": "3243", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_CLK_SLEEP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148164@macro@__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3263", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148324@macro@__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148475@macro@__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148575@macro@__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148813@macro@__HAL_RCC_USART1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3277", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@148915@macro@__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3279", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@149016@macro@__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@149277@macro@__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", - "location": { - "column": "9", - "line": "3288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_CLK_SLEEP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@150492@macro@__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@150601@macro@__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@150866@macro@__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@150976@macro@__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3330", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@151086@macro@__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3332", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@151194@macro@__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@151607@macro@__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3345", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@151716@macro@__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3347", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DMA2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@151982@macro@__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_FLASH_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@152092@macro@__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3355", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@152202@macro@__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@152310@macro@__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@153246@macro@__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3382", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@153356@macro@__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@153466@macro@__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3386", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@153596@macro@__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3389", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@153746@macro@__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@154176@macro@__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3404", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@154436@macro@__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3410", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@154860@macro@__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@155550@macro@__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@156187@macro@__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@156297@macro@__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@156407@macro@__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@156537@macro@__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@156687@macro@__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3464", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@157117@macro@__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@157377@macro@__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3481", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SRAM2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@157801@macro@__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3491", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ADC_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@158491@macro@__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@159673@macro@__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3537", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@160296@macro@__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3554", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_QSPI_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@161420@macro@__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3582", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@161986@macro@__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3596", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@162118@macro@__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3599", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@162438@macro@__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3607", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@162593@macro@__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3610", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@162725@macro@__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3613", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@162876@macro@__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3617", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@163008@macro@__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3620", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@163144@macro@__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3623", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@163588@macro@__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3634", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@163720@macro@__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3637", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@163852@macro@__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3640", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@164134@macro@__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3647", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@164283@macro@__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3651", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@164716@macro@__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3662", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@164847@macro@__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3665", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@164979@macro@__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3668", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@165093@macro@__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3670", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@165208@macro@__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3672", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@165345@macro@__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@165481@macro@__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3678", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@165598@macro@__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3681", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@166164@macro@__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@166296@macro@__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3698", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@166616@macro@__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTCAPB_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@166771@macro@__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3709", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@166903@macro@__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3712", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@167054@macro@__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3716", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI3_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@167186@macro@__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3719", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@167322@macro@__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART3_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@167766@macro@__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3733", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@167898@macro@__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3736", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@168030@macro@__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3739", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@168312@macro@__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3746", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@168461@macro@__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3750", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CAN1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@168894@macro@__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169025@macro@__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3764", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DAC1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169157@macro@__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3767", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_OPAMP_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169271@macro@__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3769", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169386@macro@__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3771", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169523@macro@__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SWPMI1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@169659@macro@__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3777", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LPTIM2_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@170299@macro@__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3792", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@170470@macro@__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3795", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@170632@macro@__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3798", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@170743@macro@__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3800", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@171003@macro@__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@171116@macro@__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3808", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@171228@macro@__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3810", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@171511@macro@__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", - "location": { - "column": "9", - "line": "3817", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_IS_CLK_SLEEP_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@172258@macro@__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@172429@macro@__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3840", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SDMMC1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@172591@macro@__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3843", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@172702@macro@__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3845", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@172962@macro@__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3851", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@173075@macro@__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3853", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM15_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@173187@macro@__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3855", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_TIM16_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@173470@macro@__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", - "location": { - "column": "9", - "line": "3862", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SAI1_IS_CLK_SLEEP_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@174615@macro@__HAL_RCC_BACKUPRESET_FORCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_BACKUPRESET_FORCE", - "location": { - "column": "9", - "line": "3895", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_BACKUPRESET_FORCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@174693@macro@__HAL_RCC_BACKUPRESET_RELEASE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_BACKUPRESET_RELEASE", - "location": { - "column": "9", - "line": "3897", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_BACKUPRESET_RELEASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@175316@macro@__HAL_RCC_RTC_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTC_ENABLE", - "location": { - "column": "9", - "line": "3915", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTC_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@175393@macro@__HAL_RCC_RTC_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTC_DISABLE", - "location": { - "column": "9", - "line": "3917", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTC_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@176520@macro@__HAL_RCC_HSI_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSI_ENABLE", - "location": { - "column": "9", - "line": "3939", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSI_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@176586@macro@__HAL_RCC_HSI_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSI_DISABLE", - "location": { - "column": "9", - "line": "3941", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSI_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@177225@macro@__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", - "location": { - "column": "9", - "line": "3952", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@177766@macro@__HAL_RCC_HSIAUTOMATIC_START_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSIAUTOMATIC_START_ENABLE", - "location": { - "column": "9", - "line": "3962", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSIAUTOMATIC_START_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@177850@macro@__HAL_RCC_HSIAUTOMATIC_START_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSIAUTOMATIC_START_DISABLE", - "location": { - "column": "9", - "line": "3964", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSIAUTOMATIC_START_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@178432@macro@__HAL_RCC_HSISTOP_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSISTOP_ENABLE", - "location": { - "column": "9", - "line": "3975", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSISTOP_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@178508@macro@__HAL_RCC_HSISTOP_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSISTOP_DISABLE", - "location": { - "column": "9", - "line": "3977", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSISTOP_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@179593@macro@__HAL_RCC_MSI_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MSI_ENABLE", - "location": { - "column": "9", - "line": "3996", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MSI_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@179659@macro@__HAL_RCC_MSI_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MSI_DISABLE", - "location": { - "column": "9", - "line": "3998", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MSI_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@180307@macro@__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", - "location": { - "column": "9", - "line": "4010", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@182142@macro@__HAL_RCC_MSI_RANGE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MSI_RANGE_CONFIG", - "location": { - "column": "9", - "line": "4039", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MSI_RANGE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@183133@macro@__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", - "location": { - "column": "9", - "line": "4056", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MSI_STANDBY_RANGE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@184331@macro@__HAL_RCC_GET_MSI_RANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_MSI_RANGE", - "location": { - "column": "9", - "line": "4075", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_MSI_RANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@185130@macro@__HAL_RCC_LSI_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LSI_ENABLE", - "location": { - "column": "9", - "line": "4089", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LSI_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@185205@macro@__HAL_RCC_LSI_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LSI_DISABLE", - "location": { - "column": "9", - "line": "4091", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LSI_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@186789@macro@__HAL_RCC_HSE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSE_CONFIG", - "location": { - "column": "9", - "line": "4116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@189097@macro@__HAL_RCC_LSE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LSE_CONFIG", - "location": { - "column": "9", - "line": "4154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LSE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@190630@macro@__HAL_RCC_HSI48_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSI48_ENABLE", - "location": { - "column": "9", - "line": "4181", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSI48_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@190706@macro@__HAL_RCC_HSI48_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_HSI48_DISABLE", - "location": { - "column": "9", - "line": "4183", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_HSI48_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@192269@macro@__HAL_RCC_RTC_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_RTC_CONFIG", - "location": { - "column": "9", - "line": "4211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_RTC_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@192839@macro@__HAL_RCC_GET_RTC_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_RTC_SOURCE", - "location": { - "column": "10", - "line": "4222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_RTC_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@193372@macro@__HAL_RCC_PLL_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLL_ENABLE", - "location": { - "column": "9", - "line": "4232", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLL_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@193445@macro@__HAL_RCC_PLL_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLL_DISABLE", - "location": { - "column": "9", - "line": "4234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLL_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@194268@macro@__HAL_RCC_PLL_PLLSOURCE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLL_PLLSOURCE_CONFIG", - "location": { - "column": "9", - "line": "4248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLL_PLLSOURCE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@195091@macro@__HAL_RCC_PLL_PLLM_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLL_PLLM_CONFIG", - "location": { - "column": "9", - "line": "4262", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLL_PLLM_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@197753@macro@__HAL_RCC_PLL_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLL_CONFIG", - "location": { - "column": "9", - "line": "4306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLL_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@200620@macro@__HAL_RCC_GET_PLL_OSCSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_PLL_OSCSOURCE", - "location": { - "column": "9", - "line": "4352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_PLL_OSCSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@201767@macro@__HAL_RCC_PLLCLKOUT_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLLCLKOUT_ENABLE", - "location": { - "column": "9", - "line": "4368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLLCLKOUT_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@201865@macro@__HAL_RCC_PLLCLKOUT_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_PLLCLKOUT_DISABLE", - "location": { - "column": "9", - "line": "4370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_PLLCLKOUT_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@202769@macro@__HAL_RCC_GET_PLLCLKOUT_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_PLLCLKOUT_CONFIG", - "location": { - "column": "9", - "line": "4383", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_PLLCLKOUT_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@203442@macro@__HAL_RCC_SYSCLK_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_SYSCLK_CONFIG", - "location": { - "column": "9", - "line": "4395", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_SYSCLK_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@204058@macro@__HAL_RCC_GET_SYSCLK_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_SYSCLK_SOURCE", - "location": { - "column": "9", - "line": "4406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_SYSCLK_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@205027@macro@__HAL_RCC_LSEDRIVE_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_LSEDRIVE_CONFIG", - "location": { - "column": "9", - "line": "4422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_LSEDRIVE_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@205568@macro@__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", - "location": { - "column": "9", - "line": "4433", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_WAKEUPSTOP_CLK_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@207291@macro@__HAL_RCC_MCO1_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_MCO1_CONFIG", - "location": { - "column": "9", - "line": "4462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_MCO1_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@208718@macro@__HAL_RCC_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_ENABLE_IT", - "location": { - "column": "9", - "line": "4490", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@209889@macro@__HAL_RCC_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_DISABLE_IT", - "location": { - "column": "9", - "line": "4512", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@211144@macro@__HAL_RCC_CLEAR_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CLEAR_IT", - "location": { - "column": "9", - "line": "4535", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CLEAR_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@212438@macro@__HAL_RCC_GET_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_IT", - "location": { - "column": "9", - "line": "4558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@212800@macro@__HAL_RCC_CLEAR_RESET_FLAGS", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_CLEAR_RESET_FLAGS", - "location": { - "column": "9", - "line": "4565", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_CLEAR_RESET_FLAGS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@214550@macro@__HAL_RCC_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RCC_GET_FLAG", - "location": { - "column": "9", - "line": "4596", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "__HAL_RCC_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@215730@macro@CR_REG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "CR_REG_INDEX", - "location": { - "column": "9", - "line": "4621", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "CR_REG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@215768@macro@BDCR_REG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "BDCR_REG_INDEX", - "location": { - "column": "9", - "line": "4622", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "BDCR_REG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@215806@macro@CSR_REG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "CSR_REG_INDEX", - "location": { - "column": "9", - "line": "4623", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "CSR_REG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@215876@macro@CRRCR_REG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "CRRCR_REG_INDEX", - "location": { - "column": "9", - "line": "4625", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "CRRCR_REG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@215948@macro@RCC_FLAG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_FLAG_MASK", - "location": { - "column": "9", - "line": "4628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_FLAG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216055@macro@RCC_OSCILLATORTYPE_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_OSCILLATORTYPE_ALL", - "location": { - "column": "9", - "line": "4632", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_OSCILLATORTYPE_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216584@macro@RCC_RESET_FLAG_OBL", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_OBL", - "location": { - "column": "9", - "line": "4640", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_OBL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216681@macro@RCC_RESET_FLAG_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_PIN", - "location": { - "column": "9", - "line": "4641", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216763@macro@RCC_RESET_FLAG_PWR", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_PWR", - "location": { - "column": "9", - "line": "4642", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_PWR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216856@macro@RCC_RESET_FLAG_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_SW", - "location": { - "column": "9", - "line": "4643", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@216943@macro@RCC_RESET_FLAG_IWDG", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_IWDG", - "location": { - "column": "9", - "line": "4644", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_IWDG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@217042@macro@RCC_RESET_FLAG_WWDG", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_WWDG", - "location": { - "column": "9", - "line": "4645", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_WWDG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@217136@macro@RCC_RESET_FLAG_LPWR", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_LPWR", - "location": { - "column": "9", - "line": "4646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_LPWR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@217224@macro@RCC_RESET_FLAG_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "RCC_RESET_FLAG_ALL", - "location": { - "column": "9", - "line": "4647", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "RCC_RESET_FLAG_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@217675@macro@IS_RCC_OSCILLATORTYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_OSCILLATORTYPE", - "location": { - "column": "9", - "line": "4663", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_OSCILLATORTYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@217883@macro@IS_RCC_HSE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_HSE", - "location": { - "column": "9", - "line": "4666", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_HSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@218313@macro@IS_RCC_LSE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_LSE", - "location": { - "column": "9", - "line": "4673", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_LSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@218502@macro@IS_RCC_HSI", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_HSI", - "location": { - "column": "9", - "line": "4677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_HSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@218592@macro@IS_RCC_HSI_CALIBRATION_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_HSI_CALIBRATION_VALUE", - "location": { - "column": "9", - "line": "4679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_HSI_CALIBRATION_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@218705@macro@IS_RCC_LSI", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_LSI", - "location": { - "column": "9", - "line": "4681", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_LSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@218966@macro@IS_RCC_MSI", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MSI", - "location": { - "column": "9", - "line": "4687", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@219056@macro@IS_RCC_MSICALIBRATION_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MSICALIBRATION_VALUE", - "location": { - "column": "9", - "line": "4689", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MSICALIBRATION_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@219160@macro@IS_RCC_HSI48", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_HSI48", - "location": { - "column": "9", - "line": "4692", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_HSI48", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@219294@macro@IS_RCC_PLL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLL", - "location": { - "column": "9", - "line": "4695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@219445@macro@IS_RCC_PLLSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLSOURCE", - "location": { - "column": "9", - "line": "4698", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@219897@macro@IS_RCC_PLLM_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLM_VALUE", - "location": { - "column": "9", - "line": "4706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLM_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@220021@macro@IS_RCC_PLLN_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLN_VALUE", - "location": { - "column": "9", - "line": "4709", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLN_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@220147@macro@IS_RCC_PLLP_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLP_VALUE", - "location": { - "column": "9", - "line": "4712", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLP_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@220363@macro@IS_RCC_PLLQ_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLQ_VALUE", - "location": { - "column": "9", - "line": "4717", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLQ_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@220535@macro@IS_RCC_PLLR_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLR_VALUE", - "location": { - "column": "9", - "line": "4720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLR_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@220741@macro@IS_RCC_PLLSAI1CLOCKOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PLLSAI1CLOCKOUT_VALUE", - "location": { - "column": "9", - "line": "4724", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PLLSAI1CLOCKOUT_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@222666@macro@IS_RCC_MSI_CLOCK_RANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MSI_CLOCK_RANGE", - "location": { - "column": "9", - "line": "4743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MSI_CLOCK_RANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@223648@macro@IS_RCC_MSI_STANDBY_CLOCK_RANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MSI_STANDBY_CLOCK_RANGE", - "location": { - "column": "9", - "line": "4756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MSI_STANDBY_CLOCK_RANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@224005@macro@IS_RCC_CLOCKTYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_CLOCKTYPE", - "location": { - "column": "9", - "line": "4761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_CLOCKTYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@224085@macro@IS_RCC_SYSCLKSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_SYSCLKSOURCE", - "location": { - "column": "9", - "line": "4763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_SYSCLKSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@224430@macro@IS_RCC_HCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_HCLK", - "location": { - "column": "9", - "line": "4768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_HCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@224931@macro@IS_RCC_PCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_PCLK", - "location": { - "column": "9", - "line": "4774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_PCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@225197@macro@IS_RCC_RTCCLKSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_RTCCLKSOURCE", - "location": { - "column": "9", - "line": "4778", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_RTCCLKSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@225554@macro@IS_RCC_MCO", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MCO", - "location": { - "column": "9", - "line": "4783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MCO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@225643@macro@IS_RCC_MCO1SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MCO1SOURCE", - "location": { - "column": "9", - "line": "4786", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MCO1SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@227092@macro@IS_RCC_MCODIV", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_MCODIV", - "location": { - "column": "9", - "line": "4806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_MCODIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@227351@macro@IS_RCC_LSE_DRIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_LSE_DRIVE", - "location": { - "column": "9", - "line": "4810", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_LSE_DRIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.h@227679@macro@IS_RCC_STOP_WAKEUPCLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RCC_STOP_WAKEUPCLOCK", - "location": { - "column": "9", - "line": "4815", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "IS_RCC_STOP_WAKEUPCLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", - "location": { - "column": "19", - "line": "4835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", - "location": { - "column": "19", - "line": "4835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_OscConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", - "location": { - "column": "19", - "line": "4836", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_OscConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_OscConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", - "location": { - "column": "19", - "line": "4836", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_OscConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_ClockConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "4837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_ClockConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_ClockConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "4837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_ClockConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_MCOConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "4848", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_MCOConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_MCOConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "4848", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_MCOConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_EnableCSS", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_EnableCSS(void)", - "location": { - "column": "19", - "line": "4849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_EnableCSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_EnableCSS", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_EnableCSS(void)", - "location": { - "column": "19", - "line": "4849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_EnableCSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetSysClockFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", - "location": { - "column": "19", - "line": "4850", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetSysClockFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetSysClockFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", - "location": { - "column": "19", - "line": "4850", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetSysClockFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetHCLKFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", - "location": { - "column": "19", - "line": "4851", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetHCLKFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetHCLKFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", - "location": { - "column": "19", - "line": "4851", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetHCLKFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetPCLK1Freq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", - "location": { - "column": "19", - "line": "4852", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetPCLK1Freq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetPCLK1Freq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", - "location": { - "column": "19", - "line": "4852", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetPCLK1Freq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetPCLK2Freq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", - "location": { - "column": "19", - "line": "4853", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetPCLK2Freq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetPCLK2Freq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", - "location": { - "column": "19", - "line": "4853", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetPCLK2Freq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetOscConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", - "location": { - "column": "19", - "line": "4854", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetOscConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetOscConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", - "location": { - "column": "19", - "line": "4854", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetOscConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetClockConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", - "location": { - "column": "19", - "line": "4855", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetClockConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetClockConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", - "location": { - "column": "19", - "line": "4855", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetClockConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_NMI_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_NMI_IRQHandler(void)", - "location": { - "column": "19", - "line": "4857", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_NMI_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_NMI_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_NMI_IRQHandler(void)", - "location": { - "column": "19", - "line": "4857", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_NMI_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_CSSCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_CSSCallback(void)", - "location": { - "column": "19", - "line": "4859", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_CSSCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_CSSCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_RCC_CSSCallback(void)", - "location": { - "column": "19", - "line": "4859", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_CSSCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetResetSource", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetResetSource(void)", - "location": { - "column": "19", - "line": "4861", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetResetSource", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetResetSource", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_RCC_GetResetSource(void)", - "location": { - "column": "19", - "line": "4861", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_rcc.h" - }, - "name": "HAL_RCC_GetResetSource", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@288@macro@__BUILTINS_INCLUDED", - "What": "MacroDef", - "defdec": "Def", - "display": "__BUILTINS_INCLUDED", - "location": { - "column": "9", - "line": "12", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__BUILTINS_INCLUDED", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@605@macro@__IEFF_HS", - "What": "MacroDef", - "defdec": "Def", - "display": "__IEFF_HS", - "location": { - "column": "9", - "line": "29", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__IEFF_HS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@683@macro@__IEFF_NE", - "What": "MacroDef", - "defdec": "Def", - "display": "__IEFF_NE", - "location": { - "column": "9", - "line": "30", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__IEFF_NE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_no_operation", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_no_operation(void)", - "location": { - "column": "22", - "line": "39", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_no_operation", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_interrupt", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_interrupt(void)", - "location": { - "column": "22", - "line": "41", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_interrupt", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_interrupt(void)", - "location": { - "column": "22", - "line": "42", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__istate_t", + "ID": "c:@T@TIM_Base_InitTypeDef", "What": "Typedef", "defdec": "Def", - "display": "unsigned int", + "display": "struct TIM_Base_InitTypeDef", "location": { - "column": "22", - "line": "44", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__istate_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_interrupt_state", - "What": "Function", - "defdec": "Dec", - "display": "__istate_t __iar_builtin_get_interrupt_state(void)", - "location": { - "column": "25", - "line": "46", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_interrupt_state", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_interrupt_state(__istate_t)", - "location": { - "column": "19", - "line": "47", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PSR(void)", - "location": { - "column": "27", - "line": "50", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_IPSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_IPSR(void)", - "location": { - "column": "27", - "line": "51", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_IPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_MSP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_MSP(void)", - "location": { - "column": "37", - "line": "52", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_MSP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_MSP(unsigned int)", - "location": { - "column": "27", - "line": "53", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PSP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PSP(void)", - "location": { - "column": "37", - "line": "54", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_PSP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_PSP(unsigned int)", - "location": { - "column": "27", - "line": "55", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PRIMASK", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PRIMASK(void)", - "location": { - "column": "37", - "line": "56", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_PRIMASK", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_PRIMASK(unsigned int)", - "location": { - "column": "27", - "line": "57", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_CONTROL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_CONTROL(void)", - "location": { - "column": "37", - "line": "58", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_CONTROL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_CONTROL(unsigned int)", - "location": { - "column": "27", - "line": "59", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_FAULTMASK", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_FAULTMASK(void)", - "location": { - "column": "37", - "line": "62", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_FAULTMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_FAULTMASK", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_FAULTMASK(unsigned int)", - "location": { - "column": "27", - "line": "63", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_FAULTMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_BASEPRI", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_BASEPRI(void)", - "location": { - "column": "37", - "line": "64", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_BASEPRI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_BASEPRI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_BASEPRI(unsigned int)", - "location": { - "column": "27", - "line": "65", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_BASEPRI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_irq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_irq(void)", - "location": { - "column": "19", - "line": "68", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_irq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_irq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_irq(void)", - "location": { - "column": "19", - "line": "69", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_irq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_fiq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_fiq(void)", - "location": { - "column": "19", - "line": "71", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_fiq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_fiq(void)", - "location": { - "column": "19", - "line": "72", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SWP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SWP(unsigned int, volatile unsigned int *)", - "location": { - "column": "37", - "line": "77", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SWP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SWPB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned char __iar_builtin_SWPB(unsigned char, volatile unsigned char *)", - "location": { - "column": "38", - "line": "78", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SWPB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__ul", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "80", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__ul", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__iar_builtin_uint", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "81", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_uint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2813@macro@__cpid", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpid", - "location": { - "column": "9", - "line": "83", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__cpid", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2859@macro@__cpreg", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpreg", - "location": { - "column": "9", - "line": "84", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__cpreg", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2905@macro@__cpopcw", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpopcw", - "location": { - "column": "9", - "line": "85", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__cpopcw", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2951@macro@__cpopc", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpopc", - "location": { - "column": "9", - "line": "86", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__cpopc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CDP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CDP(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "29", - "line": "90", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CDP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CDP2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CDP2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "29", - "line": "91", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CDP2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCR(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "94", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRC", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_MRC(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "27", - "line": "96", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCR2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCR2(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "98", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRC2", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_MRC2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "27", - "line": "100", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCRR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCRR(unsigned int, unsigned int, unsigned long long, unsigned int)", - "location": { - "column": "19", - "line": "103", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCRR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCRR2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCRR2(unsigned int, unsigned int, unsigned long long, unsigned int)", - "location": { - "column": "19", - "line": "104", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCRR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRRC", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_MRRC(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "33", - "line": "106", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRRC2", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_MRRC2(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "33", - "line": "107", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "110", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDCL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDCL(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "111", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "112", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2L", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2L(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "113", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "116", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STCL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STCL(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "117", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "118", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2L", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2L(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "119", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "122", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDCL_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDCL_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "125", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "128", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2L_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2L_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "131", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "135", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STCL_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STCL_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "138", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "141", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2L_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2L_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "144", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@6950@macro@__sys_reg", - "What": "MacroDef", - "defdec": "Def", - "display": "__sys_reg", - "location": { - "column": "9", - "line": "147", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__sys_reg", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsr", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_rsr(const char *)", - "location": { - "column": "33", - "line": "150", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsr64", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_rsr64(const char *)", - "location": { - "column": "33", - "line": "151", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsrp", - "What": "Function", - "defdec": "Dec", - "display": "void * __iar_builtin_rsrp(const char *)", - "location": { - "column": "33", - "line": "152", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsr", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsr(const char *, unsigned int)", - "location": { - "column": "19", - "line": "155", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsr64", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsr64(const char *, unsigned long long)", - "location": { - "column": "19", - "line": "156", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsrp", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsrp(const char *, const void *)", - "location": { - "column": "19", - "line": "157", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_APSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_APSR(void)", - "location": { - "column": "27", - "line": "160", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_APSR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_APSR(unsigned int)", - "location": { - "column": "27", - "line": "161", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_CPSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_CPSR(void)", - "location": { - "column": "27", - "line": "164", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_CPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_CPSR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_CPSR(unsigned int)", - "location": { - "column": "27", - "line": "165", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_CPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_FPSCR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_FPSCR(void)", - "location": { - "column": "27", - "line": "168", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_FPSCR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_FPSCR(unsigned int)", - "location": { - "column": "19", - "line": "169", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CLZ", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CLZ(unsigned int)", - "location": { - "column": "37", - "line": "173", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CLZ", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ROR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_ROR(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "174", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ROR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_RRX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_RRX(unsigned int)", - "location": { - "column": "27", - "line": "175", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_RRX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QADD(int, int)", - "location": { - "column": "35", - "line": "178", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDADD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDADD(int, int)", - "location": { - "column": "35", - "line": "179", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDADD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QSUB(int, int)", - "location": { - "column": "35", - "line": "180", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDSUB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDSUB(int, int)", - "location": { - "column": "35", - "line": "181", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDSUB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDOUBLE", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDOUBLE(int)", - "location": { - "column": "35", - "line": "182", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDOUBLE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QFlag(void)", - "location": { - "column": "35", - "line": "183", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_acle_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_acle_QFlag(void)", - "location": { - "column": "30", - "line": "184", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_acle_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_QFlag(int)", - "location": { - "column": "30", - "line": "185", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ignore_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ignore_QFlag(void)", - "location": { - "column": "30", - "line": "186", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ignore_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QCFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QCFlag(void)", - "location": { - "column": "36", - "line": "188", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QCFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_reset_QC_flag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_reset_QC_flag(void)", - "location": { - "column": "29", - "line": "189", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_reset_QC_flag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUL", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUL(short, short)", - "location": { - "column": "35", - "line": "191", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REV", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_REV(unsigned int)", - "location": { - "column": "37", - "line": "194", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REVSH", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_REVSH(short)", - "location": { - "column": "35", - "line": "195", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REVSH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REV16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_REV16(unsigned int)", - "location": { - "column": "37", - "line": "197", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REV16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_RBIT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_RBIT(unsigned int)", - "location": { - "column": "37", - "line": "198", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_RBIT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned char __iar_builtin_LDREXB(const volatile unsigned char *)", - "location": { - "column": "29", - "line": "200", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned short __iar_builtin_LDREXH(const volatile unsigned short *)", - "location": { - "column": "29", - "line": "201", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_LDREX(const volatile unsigned int *)", - "location": { - "column": "28", - "line": "202", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXD", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_LDREXD(const volatile unsigned long long *)", - "location": { - "column": "33", - "line": "203", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXB(unsigned char, volatile unsigned char *)", - "location": { - "column": "28", - "line": "205", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXH(unsigned short, volatile unsigned short *)", - "location": { - "column": "28", - "line": "206", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREX(unsigned int, volatile unsigned int *)", - "location": { - "column": "28", - "line": "207", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXD", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXD(unsigned long long, volatile unsigned long long *)", - "location": { - "column": "28", - "line": "208", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CLREX", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CLREX(void)", - "location": { - "column": "19", - "line": "210", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CLREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SEV", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_SEV(void)", - "location": { - "column": "19", - "line": "212", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SEV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_WFE", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_WFE(void)", - "location": { - "column": "19", - "line": "213", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_WFE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_WFI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_WFI(void)", - "location": { - "column": "19", - "line": "214", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_WFI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_YIELD", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_YIELD(void)", - "location": { - "column": "19", - "line": "215", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_YIELD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLI(const volatile void *)", - "location": { - "column": "19", - "line": "217", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLD", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLD(const volatile void *)", - "location": { - "column": "19", - "line": "218", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLIx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLIx(const volatile void *, unsigned int, unsigned int)", - "location": { - "column": "19", - "line": "220", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLIx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLDx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLDx(const volatile void *, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "19", - "line": "221", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLDx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLDW", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLDW(const volatile void *)", - "location": { - "column": "19", - "line": "222", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLDW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SSAT(int, unsigned int)", - "location": { - "column": "37", - "line": "224", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAT(int, unsigned int)", - "location": { - "column": "37", - "line": "225", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SEL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SEL(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "228", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SEL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "230", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "231", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "232", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "233", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "234", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "235", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "237", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "238", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "239", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "240", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "241", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "242", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "244", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "245", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "246", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "247", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "248", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "249", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "251", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "252", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "253", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "254", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "255", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "256", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "258", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "259", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "260", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "261", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "262", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "263", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "265", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "266", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "267", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "268", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "269", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "270", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "272", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USADA8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USADA8(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "273", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USADA8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAT16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSAT16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "276", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAT16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAT16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAT16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "278", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAT16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUAD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUAD(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "281", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUAD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUSD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUSD(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "282", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUSD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUADX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUADX(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "283", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUADX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUSDX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUSDX(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "284", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUSDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAD(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "286", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLSD(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "287", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLADX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLADX(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "288", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLADX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSDX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLSDX(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "289", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALD", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALD(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "291", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALDX", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALDX(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "295", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSLD", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLSLD(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "299", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSLD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSLDX", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLSLDX(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "303", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSLDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PKHBT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_PKHBT(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "307", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PKHBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PKHTB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_PKHTB(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "310", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PKHTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLABB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLABB(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "314", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLABB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLABT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLABT(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "315", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLABT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLATB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLATB(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "316", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLATB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLATT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLATT(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "317", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLATT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAWB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAWB(int, unsigned int, int)", - "location": { - "column": "28", - "line": "319", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAWB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAWT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAWT(int, unsigned int, int)", - "location": { - "column": "28", - "line": "320", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAWT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLA", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLA(int, int, int)", - "location": { - "column": "28", - "line": "322", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLAR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLAR(int, int, int)", - "location": { - "column": "28", - "line": "323", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLAR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLS", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLS(int, int, int)", - "location": { - "column": "28", - "line": "324", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLSR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLSR(int, int, int)", - "location": { - "column": "28", - "line": "325", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMUL", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMUL(int, int)", - "location": { - "column": "28", - "line": "327", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMUL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMULR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMULR(int, int)", - "location": { - "column": "28", - "line": "328", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMULR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULBB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULBB(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "330", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULBB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULBT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULBT(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "331", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULTB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULTB(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "332", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULTT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULTT(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "333", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULWB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULWB(int, unsigned int)", - "location": { - "column": "28", - "line": "335", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULWB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULWT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULWT(int, unsigned int)", - "location": { - "column": "28", - "line": "336", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULWT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SXTAB(int, unsigned int)", - "location": { - "column": "28", - "line": "338", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAH", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SXTAH(int, unsigned int)", - "location": { - "column": "28", - "line": "339", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAB(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "340", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAH(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "341", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UMAAL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_UMAAL(unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "43", - "line": "343", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UMAAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALBB", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALBB(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "348", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALBB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALBT", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALBT(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "352", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALTB", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALTB(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "356", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALTT", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALTT(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "360", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTB16(unsigned int)", - "location": { - "column": "37", - "line": "364", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "365", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SXTB16(unsigned int)", - "location": { - "column": "37", - "line": "367", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SXTAB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "368", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "370", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "371", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "372", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "373", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "374", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "375", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "377", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "378", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "379", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "380", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "381", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "382", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DMB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DMB(void)", - "location": { - "column": "19", - "line": "385", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DMB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DSB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DSB(void)", - "location": { - "column": "19", - "line": "386", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DSB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ISB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ISB(void)", - "location": { - "column": "19", - "line": "387", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ISB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DMBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DMBx(unsigned int)", - "location": { - "column": "19", - "line": "388", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DMBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DSBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DSBx(unsigned int)", - "location": { - "column": "19", - "line": "389", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DSBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ISBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ISBx(unsigned int)", - "location": { - "column": "19", - "line": "390", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ISBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TT(unsigned int)", - "location": { - "column": "27", - "line": "393", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTT(unsigned int)", - "location": { - "column": "27", - "line": "394", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTA", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTA(unsigned int)", - "location": { - "column": "27", - "line": "395", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTAT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTAT(unsigned int)", - "location": { - "column": "27", - "line": "396", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_SB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_SB(void)", - "location": { - "column": "27", - "line": "398", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_SB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_SB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_SB(unsigned int)", - "location": { - "column": "19", - "line": "399", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_SB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__get_LR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __get_LR(void)", - "location": { - "column": "27", - "line": "401", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__get_LR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__set_LR", - "What": "Function", - "defdec": "Dec", - "display": "void __set_LR(unsigned int)", - "location": { - "column": "19", - "line": "402", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__set_LR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__get_SP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __get_SP(void)", - "location": { - "column": "27", - "line": "404", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__get_SP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__set_SP", - "What": "Function", - "defdec": "Dec", - "display": "void __set_SP(unsigned int)", - "location": { - "column": "19", - "line": "405", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__set_SP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VSQRT_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VSQRT_F32(float)", - "location": { - "column": "30", - "line": "408", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VSQRT_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VSQRT_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VSQRT_F64(double)", - "location": { - "column": "31", - "line": "409", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VSQRT_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFMA_F32(float, float, float)", - "location": { - "column": "30", - "line": "412", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMS_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFMS_F32(float, float, float)", - "location": { - "column": "30", - "line": "413", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFNMA_F32(float, float, float)", - "location": { - "column": "30", - "line": "414", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMS_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFNMS_F32(float, float, float)", - "location": { - "column": "30", - "line": "415", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFMA_F64(double, double, double)", - "location": { - "column": "31", - "line": "416", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMS_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFMS_F64(double, double, double)", - "location": { - "column": "31", - "line": "417", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFNMA_F64(double, double, double)", - "location": { - "column": "31", - "line": "418", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMS_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFNMS_F64(double, double, double)", - "location": { - "column": "31", - "line": "419", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32B", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32B(unsigned int, unsigned char)", - "location": { - "column": "37", - "line": "422", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32H", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32H(unsigned int, unsigned short)", - "location": { - "column": "37", - "line": "423", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32W", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32W(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "424", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32W", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CB(unsigned int, unsigned char)", - "location": { - "column": "37", - "line": "425", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CH(unsigned int, unsigned short)", - "location": { - "column": "37", - "line": "426", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CW", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CW(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "427", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMAXNM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VMAXNM_F32(float, float)", - "location": { - "column": "30", - "line": "430", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMAXNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMINNM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VMINNM_F32(float, float)", - "location": { - "column": "30", - "line": "431", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMINNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMAXNM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VMAXNM_F64(double, double)", - "location": { - "column": "31", - "line": "432", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMAXNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMINNM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VMINNM_F64(double, double)", - "location": { - "column": "31", - "line": "433", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMINNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTA_F32(float)", - "location": { - "column": "30", - "line": "436", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTM_F32(float)", - "location": { - "column": "30", - "line": "437", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTN_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTN_F32(float)", - "location": { - "column": "30", - "line": "438", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTN_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTP_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTP_F32(float)", - "location": { - "column": "30", - "line": "439", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTP_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTX_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTX_F32(float)", - "location": { - "column": "30", - "line": "440", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTX_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTR_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTR_F32(float)", - "location": { - "column": "30", - "line": "441", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTR_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTZ_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTZ_F32(float)", - "location": { - "column": "30", - "line": "442", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTZ_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTA_F64(double)", - "location": { - "column": "31", - "line": "443", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTM_F64(double)", - "location": { - "column": "31", - "line": "444", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTN_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTN_F64(double)", - "location": { - "column": "31", - "line": "445", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTN_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTP_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTP_F64(double)", - "location": { - "column": "31", - "line": "446", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTP_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTX_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTX_F64(double)", - "location": { - "column": "31", - "line": "447", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTX_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTR_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTR_F64(double)", - "location": { - "column": "31", - "line": "448", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTR_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTZ_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTZ_F64(double)", - "location": { - "column": "31", - "line": "449", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\aarch32\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTZ_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@120@macro@_YVALS", - "What": "MacroDef", - "defdec": "Def", - "display": "_YVALS", - "location": { - "column": "9", - "line": "5", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_YVALS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@223@macro@_GLUE_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE_B", - "location": { - "column": "9", - "line": "12", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@250@macro@_GLUE", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE", - "location": { - "column": "9", - "line": "13", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@285@macro@_GLUE3_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE3_B", - "location": { - "column": "9", - "line": "15", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE3_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@318@macro@_GLUE3", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE3", - "location": { - "column": "9", - "line": "16", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE3", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@359@macro@_STRINGIFY_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRINGIFY_B", - "location": { - "column": "9", - "line": "18", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_STRINGIFY_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@387@macro@_STRINGIFY", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRINGIFY", - "location": { - "column": "9", - "line": "19", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_STRINGIFY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@486@macro@_ABINAME", - "What": "MacroDef", - "defdec": "Def", - "display": "_ABINAME", - "location": { - "column": "9", - "line": "22", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_ABINAME", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@552@macro@_CPPLIB_VER", - "What": "MacroDef", - "defdec": "Def", - "display": "_CPPLIB_VER", - "location": { - "column": "9", - "line": "25", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_CPPLIB_VER", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@634@macro@__IAR_SYSTEMS_LIB__", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_SYSTEMS_LIB__", - "location": { - "column": "11", - "line": "29", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__IAR_SYSTEMS_LIB__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1770@macro@__EFF_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NS", - "location": { - "column": "9", - "line": "62", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1862@macro@__EFF_NSNW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NSNW1", - "location": { - "column": "9", - "line": "63", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NSNW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1967@macro@__EFF_NE", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NE", - "location": { - "column": "9", - "line": "64", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2046@macro@__EFF_NENR1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1", - "location": { - "column": "9", - "line": "65", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2137@macro@__EFF_NENR1R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1R1", - "location": { - "column": "9", - "line": "66", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2239@macro@__EFF_NENR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR2", - "location": { - "column": "9", - "line": "67", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2330@macro@__EFF_NENR1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1NW2", - "location": { - "column": "9", - "line": "68", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2434@macro@__EFF_NENR1NW2R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1NW2R1", - "location": { - "column": "9", - "line": "69", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1NW2R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2551@macro@__EFF_NENW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW1", - "location": { - "column": "9", - "line": "70", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2643@macro@__EFF_NENW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW2", - "location": { - "column": "9", - "line": "71", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2735@macro@__EFF_NENW2R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW2R1", - "location": { - "column": "9", - "line": "72", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW2R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2838@macro@__EFF_NENW1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW1NW2", - "location": { - "column": "9", - "line": "73", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2932@macro@__EFF_NR1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NR1", - "location": { - "column": "9", + "column": "3", "line": "74", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__EFF_NR1", - "origin": "system_include", + "name": "TIM_Base_InitTypeDef", + "origin": "user_include", "scope": null }, { - "ID": "c:yvals.h@3013@macro@__EFF_NR1NW2", - "What": "MacroDef", + "ID": "c:@SA@TIM_OC_InitTypeDef", + "What": "Struct", "defdec": "Def", - "display": "__EFF_NR1NW2", - "location": { - "column": "9", - "line": "75", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NR1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3107@macro@__EFF_NR1NW3", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NR1NW3", - "location": { - "column": "9", - "line": "76", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NR1NW3", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3201@macro@__EFF_NW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1", - "location": { - "column": "9", - "line": "77", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3283@macro@__EFF_NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW2", - "location": { - "column": "9", - "line": "78", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3365@macro@__EFF_NW1NR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1NR2", + "display": "", "location": { "column": "9", "line": "79", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1NR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3459@macro@__EFF_NW1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1NW2", - "location": { - "column": "9", - "line": "80", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3585@macro@__ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES", - "location": { - "column": "9", - "line": "83", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3642@macro@__ATTRIBUTES_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_CAN_THROW", - "location": { - "column": "9", - "line": "84", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3688@macro@__ATTRIBUTES_NORETURN", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_NORETURN", - "location": { - "column": "9", - "line": "85", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_NORETURN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3756@macro@__ATTRIBUTES_NORETURN_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_NORETURN_CAN_THROW", - "location": { - "column": "9", - "line": "86", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_NORETURN_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3991@macro@_EXTERN_C", - "What": "MacroDef", - "defdec": "Def", - "display": "_EXTERN_C", - "location": { - "column": "11", - "line": "95", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_EXTERN_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4012@macro@_EXTERN_C_END", - "What": "MacroDef", - "defdec": "Def", - "display": "_EXTERN_C_END", - "location": { - "column": "11", - "line": "96", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_EXTERN_C_END", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4037@macro@_GLB", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLB", - "location": { - "column": "11", - "line": "97", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4660@macro@_DLIB_ONLY_C89", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ONLY_C89", - "location": { - "column": "13", - "line": "119", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_DLIB_ONLY_C89", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4801@macro@_DLIB_ADD_EXTRA_SYMBOLS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ADD_EXTRA_SYMBOLS", - "location": { - "column": "11", - "line": "126", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_DLIB_ADD_EXTRA_SYMBOLS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4896@macro@__STDC_WANT_LIB_EXT1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__STDC_WANT_LIB_EXT1__", - "location": { - "column": "11", - "line": "131", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__STDC_WANT_LIB_EXT1__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5185@macro@__DEPREC", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC", - "location": { - "column": "11", - "line": "140", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5213@macro@__DEPREC_ATTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_ATTRS", - "location": { - "column": "9", - "line": "143", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC_ATTRS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5269@macro@__DEPREC_ATTRS_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_ATTRS_CAN_THROW", - "location": { - "column": "9", - "line": "144", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC_ATTRS_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6617@macro@_NOEXCEPT", - "What": "MacroDef", - "defdec": "Def", - "display": "_NOEXCEPT", - "location": { - "column": "11", - "line": "190", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_NOEXCEPT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6733@macro@_THREAD_LOCAL", - "What": "MacroDef", - "defdec": "Def", - "display": "_THREAD_LOCAL", - "location": { - "column": "15", - "line": "196", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_THREAD_LOCAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6862@macro@_Restrict", - "What": "MacroDef", - "defdec": "Def", - "display": "_Restrict", - "location": { - "column": "13", - "line": "201", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Restrict", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7018@macro@_MBMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_MBMAX", - "location": { - "column": "9", - "line": "208", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_MBMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7075@macro@_MAX_EXP_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_EXP_DIG", - "location": { - "column": "9", - "line": "211", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_EXP_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7102@macro@_MAX_INT_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_INT_DIG", - "location": { - "column": "9", - "line": "212", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_INT_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7130@macro@_MAX_SIG_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_SIG_DIG", - "location": { - "column": "9", - "line": "213", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_SIG_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Wchart", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "221", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wchart", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Wintt", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "222", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wintt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7576@macro@_WCMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCMIN", - "location": { - "column": "11", - "line": "233", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_WCMIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7597@macro@_WIMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "_WIMIN", - "location": { - "column": "11", - "line": "234", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_WIMIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7624@macro@_WCMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCMAX", - "location": { - "column": "9", - "line": "236", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_WCMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7657@macro@_WIMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_WIMAX", - "location": { - "column": "9", - "line": "237", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_WIMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7718@macro@_NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "_NULL", - "location": { - "column": "9", - "line": "240", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Sizet", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "29", - "line": "243", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Sizet", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "27", - "line": "246", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__int8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "27", - "line": "247", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "28", - "line": "248", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__int16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "28", - "line": "249", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "28", - "line": "250", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__int32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "251", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "31", - "line": "253", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__int64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "31", - "line": "254", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "29", - "line": "259", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "29", - "line": "260", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@S@_Mbstatet", - "What": "Struct", - "defdec": "Def", - "display": "_Mbstatet", - "location": { - "column": "16", - "line": "263", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, "members": [ { - "ID": "c:@S@_Mbstatet@FI@_Wchar", + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCMode", "What": "FieldDecl", "defdec": "Def", - "display": "_Wchar", + "display": "OCMode", "location": { - "column": "18", - "line": "266", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "12", + "line": "81", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_Wchar", - "origin": "system_include", - "scope": "_Mbstatet" + "name": "OCMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" }, { - "ID": "c:@S@_Mbstatet@FI@_State", + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@Pulse", "What": "FieldDecl", "defdec": "Def", - "display": "_State", + "display": "Pulse", "location": { - "column": "18", - "line": "267", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "12", + "line": "84", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_State", - "origin": "system_include", - "scope": "_Mbstatet" + "name": "Pulse", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" + }, + { + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCPolarity", + "location": { + "column": "12", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" + }, + { + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCNPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCNPolarity", + "location": { + "column": "12", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCNPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" + }, + { + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCFastMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCFastMode", + "location": { + "column": "12", + "line": "94", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCFastMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" + }, + { + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCIdleState", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCIdleState", + "location": { + "column": "12", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCIdleState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" + }, + { + "ID": "c:@SA@TIM_OC_InitTypeDef@FI@OCNIdleState", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCNIdleState", + "location": { + "column": "12", + "line": "103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCNIdleState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_79_9" } ], - "name": "_Mbstatet", - "origin": "system_include", + "name": "", + "origin": "user_include", "scope": null }, { - "ID": "c:yvals.h@T@_Mbstatet", + "ID": "c:@T@TIM_OC_InitTypeDef", "What": "Typedef", "defdec": "Def", - "display": "struct _Mbstatet", + "display": "struct TIM_OC_InitTypeDef", "location": { "column": "3", - "line": "299", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_Mbstatet", - "origin": "system_include", + "name": "TIM_OC_InitTypeDef", + "origin": "user_include", "scope": null }, { - "ID": "c:yvals.h@9575@macro@_Mbstinit", - "What": "MacroDef", - "defdec": "Def", - "display": "_Mbstinit", - "location": { - "column": "11", - "line": "303", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Mbstinit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@9648@macro@_HAS_PRAGMA_PRINTF_ARGS", - "What": "MacroDef", - "defdec": "Def", - "display": "_HAS_PRAGMA_PRINTF_ARGS", - "location": { - "column": "9", - "line": "307", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_HAS_PRAGMA_PRINTF_ARGS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@S@__va_list", - "What": "Struct", - "defdec": "Dec", - "display": "__va_list", - "location": { - "column": "11", - "line": "321", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "members": [], - "name": "__va_list", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__Va_list", - "What": "Typedef", - "defdec": "Def", - "display": "struct __va_list", - "location": { - "column": "20", - "line": "321", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__Va_list", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@S@__FILE", - "What": "Struct", - "defdec": "Dec", - "display": "__FILE", - "location": { - "column": "20", - "line": "332", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "members": [], - "name": "__FILE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Filet", - "What": "Typedef", - "defdec": "Def", - "display": "struct __FILE", - "location": { - "column": "27", - "line": "332", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_Filet", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@SA@_Fpost", + "ID": "c:@SA@TIM_OnePulse_InitTypeDef", "What": "Struct", "defdec": "Def", "display": "", "location": { "column": "9", - "line": "337", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "line": "111", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, "members": [ { - "ID": "c:@SA@_Fpost@FI@_Off", + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCMode", "What": "FieldDecl", "defdec": "Def", - "display": "_Off", + "display": "OCMode", "location": { - "column": "15", - "line": "340", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "12", + "line": "113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_Off", - "origin": "system_include", - "scope": "_anonymous_yvals_h_337_9" + "name": "OCMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" }, { - "ID": "c:@SA@_Fpost@FI@_Wstate", + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@Pulse", "What": "FieldDecl", "defdec": "Def", - "display": "_Wstate", + "display": "Pulse", "location": { - "column": "13", - "line": "344", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "12", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_Wstate", - "origin": "system_include", - "scope": "_anonymous_yvals_h_337_9" + "name": "Pulse", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCPolarity", + "location": { + "column": "12", + "line": "119", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCNPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCNPolarity", + "location": { + "column": "12", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCNPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCIdleState", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCIdleState", + "location": { + "column": "12", + "line": "126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCIdleState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@OCNIdleState", + "What": "FieldDecl", + "defdec": "Def", + "display": "OCNIdleState", + "location": { + "column": "12", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OCNIdleState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICPolarity", + "location": { + "column": "12", + "line": "134", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICSelection", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICSelection", + "location": { + "column": "12", + "line": "137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICSelection", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" + }, + { + "ID": "c:@SA@TIM_OnePulse_InitTypeDef@FI@ICFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICFilter", + "location": { + "column": "12", + "line": "140", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_111_9" } ], "name": "", - "origin": "system_include", + "origin": "user_include", "scope": null }, { - "ID": "c:@T@_Fpost", + "ID": "c:@T@TIM_OnePulse_InitTypeDef", "What": "Typedef", "defdec": "Def", - "display": "struct _Fpost", + "display": "struct TIM_OnePulse_InitTypeDef", "location": { "column": "3", - "line": "345", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "line": "142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_Fpost", - "origin": "system_include", + "name": "TIM_OnePulse_InitTypeDef", + "origin": "user_include", "scope": null }, { - "ID": "c:yvals.h@10462@macro@_FPOSOFF", - "What": "MacroDef", + "ID": "c:@SA@TIM_IC_InitTypeDef", + "What": "Struct", "defdec": "Def", - "display": "_FPOSOFF", - "location": { - "column": "11", - "line": "348", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "_FPOSOFF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@10540@macro@_MULTI_THREAD", - "What": "MacroDef", - "defdec": "Def", - "display": "_MULTI_THREAD", + "display": "", "location": { "column": "9", - "line": "352", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "line": "147", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "_MULTI_THREAD", - "origin": "system_include", + "members": [ + { + "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICPolarity", + "location": { + "column": "13", + "line": "149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" + }, + { + "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICSelection", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICSelection", + "location": { + "column": "12", + "line": "152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICSelection", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" + }, + { + "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICPrescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICPrescaler", + "location": { + "column": "12", + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICPrescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" + }, + { + "ID": "c:@SA@TIM_IC_InitTypeDef@FI@ICFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "ICFilter", + "location": { + "column": "12", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ICFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_147_9" + } + ], + "name": "", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@__iar_Locksyslock_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Malloc(void)", - "location": { - "column": "28", - "line": "358", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Malloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_Stream", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Stream(void)", - "location": { - "column": "28", - "line": "359", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Stream", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_Debug", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Debug(void)", - "location": { - "column": "28", - "line": "360", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Debug", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_StaticGuard", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_StaticGuard(void)", - "location": { - "column": "28", - "line": "361", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_StaticGuard", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Malloc(void)", - "location": { - "column": "28", - "line": "362", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Malloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Stream", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Stream(void)", - "location": { - "column": "28", - "line": "363", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Stream", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Debug", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Debug(void)", - "location": { - "column": "28", - "line": "364", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Debug", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_StaticGuard", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_StaticGuard(void)", - "location": { - "column": "28", - "line": "365", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_StaticGuard", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Lockfilelock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Lockfilelock(_Filet *)", - "location": { - "column": "32", - "line": "369", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Lockfilelock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlockfilelock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlockfilelock(_Filet *)", - "location": { - "column": "32", - "line": "370", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlockfilelock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__iar_Rmtx", + "ID": "c:@T@TIM_IC_InitTypeDef", "What": "Typedef", "defdec": "Def", - "display": "void *", + "display": "struct TIM_IC_InitTypeDef", "location": { - "column": "17", - "line": "374", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "3", + "line": "160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__iar_Rmtx", - "origin": "system_include", + "name": "TIM_IC_InitTypeDef", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@__iar_Initdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Initdynamiclock(__iar_Rmtx *)", + "ID": "c:@SA@TIM_Encoder_InitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", "location": { - "column": "28", - "line": "376", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "9", + "line": "165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__iar_Initdynamiclock", - "origin": "system_include", + "members": [ + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@EncoderMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "EncoderMode", + "location": { + "column": "12", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "EncoderMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Polarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Polarity", + "location": { + "column": "12", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC1Polarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Selection", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Selection", + "location": { + "column": "12", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC1Selection", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Prescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Prescaler", + "location": { + "column": "12", + "line": "176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC1Prescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC1Filter", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Filter", + "location": { + "column": "12", + "line": "179", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC1Filter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Polarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC2Polarity", + "location": { + "column": "12", + "line": "182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC2Polarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Selection", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC2Selection", + "location": { + "column": "12", + "line": "185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC2Selection", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Prescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC2Prescaler", + "location": { + "column": "12", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC2Prescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + }, + { + "ID": "c:@SA@TIM_Encoder_InitTypeDef@FI@IC2Filter", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC2Filter", + "location": { + "column": "12", + "line": "191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IC2Filter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_165_9" + } + ], + "name": "", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@__iar_Dstdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Dstdynamiclock(__iar_Rmtx *)", + "ID": "c:@T@TIM_Encoder_InitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_Encoder_InitTypeDef", "location": { - "column": "28", - "line": "377", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "3", + "line": "193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__iar_Dstdynamiclock", - "origin": "system_include", + "name": "TIM_Encoder_InitTypeDef", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@__iar_Lockdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Lockdynamiclock(__iar_Rmtx *)", + "ID": "c:@SA@TIM_ClockConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", "location": { - "column": "28", - "line": "378", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "9", + "line": "198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__iar_Lockdynamiclock", - "origin": "system_include", + "members": [ + { + "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockSource", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockSource", + "location": { + "column": "12", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClockSource", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" + }, + { + "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockPolarity", + "location": { + "column": "12", + "line": "202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClockPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" + }, + { + "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockPrescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockPrescaler", + "location": { + "column": "12", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClockPrescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" + }, + { + "ID": "c:@SA@TIM_ClockConfigTypeDef@FI@ClockFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockFilter", + "location": { + "column": "12", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClockFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_198_9" + } + ], + "name": "", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@__iar_Unlockdynamiclock", + "ID": "c:@T@TIM_ClockConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_ClockConfigTypeDef", + "location": { + "column": "3", + "line": "208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ClockConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputState", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClearInputState", + "location": { + "column": "12", + "line": "215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClearInputState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" + }, + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputSource", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClearInputSource", + "location": { + "column": "12", + "line": "217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClearInputSource", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" + }, + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClearInputPolarity", + "location": { + "column": "12", + "line": "219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClearInputPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" + }, + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputPrescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClearInputPrescaler", + "location": { + "column": "12", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClearInputPrescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" + }, + { + "ID": "c:@SA@TIM_ClearInputConfigTypeDef@FI@ClearInputFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClearInputFilter", + "location": { + "column": "12", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ClearInputFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_213_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_ClearInputConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_ClearInputConfigTypeDef", + "location": { + "column": "3", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ClearInputConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_MasterConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterOutputTrigger", + "What": "FieldDecl", + "defdec": "Def", + "display": "MasterOutputTrigger", + "location": { + "column": "13", + "line": "235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "MasterOutputTrigger", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" + }, + { + "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterOutputTrigger2", + "What": "FieldDecl", + "defdec": "Def", + "display": "MasterOutputTrigger2", + "location": { + "column": "13", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "MasterOutputTrigger2", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" + }, + { + "ID": "c:@SA@TIM_MasterConfigTypeDef@FI@MasterSlaveMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "MasterSlaveMode", + "location": { + "column": "13", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "MasterSlaveMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_233_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_MasterConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_MasterConfigTypeDef", + "location": { + "column": "3", + "line": "246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_MasterConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "251", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@SlaveMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "SlaveMode", + "location": { + "column": "13", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "SlaveMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" + }, + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@InputTrigger", + "What": "FieldDecl", + "defdec": "Def", + "display": "InputTrigger", + "location": { + "column": "13", + "line": "255", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "InputTrigger", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" + }, + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "TriggerPolarity", + "location": { + "column": "13", + "line": "257", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TriggerPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" + }, + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerPrescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "TriggerPrescaler", + "location": { + "column": "13", + "line": "259", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TriggerPrescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" + }, + { + "ID": "c:@SA@TIM_SlaveConfigTypeDef@FI@TriggerFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "TriggerFilter", + "location": { + "column": "13", + "line": "261", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TriggerFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_251_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_SlaveConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_SlaveConfigTypeDef", + "location": { + "column": "3", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SlaveConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@OffStateRunMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "OffStateRunMode", + "location": { + "column": "12", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OffStateRunMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@OffStateIDLEMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "OffStateIDLEMode", + "location": { + "column": "12", + "line": "275", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "OffStateIDLEMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@LockLevel", + "What": "FieldDecl", + "defdec": "Def", + "display": "LockLevel", + "location": { + "column": "12", + "line": "277", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "LockLevel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@DeadTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "DeadTime", + "location": { + "column": "12", + "line": "279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "DeadTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakState", + "What": "FieldDecl", + "defdec": "Def", + "display": "BreakState", + "location": { + "column": "12", + "line": "281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "BreakState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakPolarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "BreakPolarity", + "location": { + "column": "12", + "line": "283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "BreakPolarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@BreakFilter", + "What": "FieldDecl", + "defdec": "Def", + "display": "BreakFilter", + "location": { + "column": "12", + "line": "285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "BreakFilter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2State", + "What": "FieldDecl", + "defdec": "Def", + "display": "Break2State", + "location": { + "column": "12", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Break2State", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2Polarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "Break2Polarity", + "location": { + "column": "12", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Break2Polarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@Break2Filter", + "What": "FieldDecl", + "defdec": "Def", + "display": "Break2Filter", + "location": { + "column": "12", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Break2Filter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + }, + { + "ID": "c:@SA@TIM_BreakDeadTimeConfigTypeDef@FI@AutomaticOutput", + "What": "FieldDecl", + "defdec": "Def", + "display": "AutomaticOutput", + "location": { + "column": "12", + "line": "293", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "AutomaticOutput", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_271_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_BreakDeadTimeConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_BreakDeadTimeConfigTypeDef", + "location": { + "column": "3", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BreakDeadTimeConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_StateTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_RESET", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_STATE_RESET", + "location": { + "column": "3", + "line": "302", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_READY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_STATE_READY", + "location": { + "column": "3", + "line": "303", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_STATE_BUSY", + "location": { + "column": "3", + "line": "304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_STATE_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_TIMEOUT", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_STATE_TIMEOUT", + "location": { + "column": "3", + "line": "305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_STATE_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_StateTypeDef@HAL_TIM_STATE_ERROR", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_STATE_ERROR", + "location": { + "column": "3", + "line": "306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_STATE_ERROR", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_TIM_StateTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_TIM_StateTypeDef", + "location": { + "column": "3", + "line": "307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_StateTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_RESET", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_CHANNEL_STATE_RESET", + "location": { + "column": "3", + "line": "314", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_CHANNEL_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_READY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_CHANNEL_STATE_READY", + "location": { + "column": "3", + "line": "315", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_CHANNEL_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ChannelStateTypeDef@HAL_TIM_CHANNEL_STATE_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_CHANNEL_STATE_BUSY", + "location": { + "column": "3", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_CHANNEL_STATE_BUSY", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_TIM_ChannelStateTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_TIM_ChannelStateTypeDef", + "location": { + "column": "3", + "line": "317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ChannelStateTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_RESET", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_BURST_STATE_RESET", + "location": { + "column": "3", + "line": "324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_DMA_BURST_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_READY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_BURST_STATE_READY", + "location": { + "column": "3", + "line": "325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_DMA_BURST_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_DMABurstStateTypeDef@HAL_DMA_BURST_STATE_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_BURST_STATE_BUSY", + "location": { + "column": "3", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_DMA_BURST_STATE_BUSY", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_TIM_DMABurstStateTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_TIM_DMABurstStateTypeDef", + "location": { + "column": "3", + "line": "327", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurstStateTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_1", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_1", + "location": { + "column": "3", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_2", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_2", + "location": { + "column": "3", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_3", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_3", + "location": { + "column": "3", + "line": "336", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_4", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_4", + "location": { + "column": "3", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_5", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_5", + "location": { + "column": "3", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_6", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_6", + "location": { + "column": "3", + "line": "339", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_TIM_ActiveChannel@HAL_TIM_ACTIVE_CHANNEL_CLEARED", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIM_ACTIVE_CHANNEL_CLEARED", + "location": { + "column": "3", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ACTIVE_CHANNEL_CLEARED", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "332", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_TIM_ActiveChannel", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_TIM_ActiveChannel", + "location": { + "column": "3", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ActiveChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_HandleTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@Instance", + "What": "FieldDecl", + "defdec": "Def", + "display": "Instance", + "location": { + "column": "39", + "line": "352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Instance", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@Init", + "What": "FieldDecl", + "defdec": "Def", + "display": "Init", + "location": { + "column": "38", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Init", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@Channel", + "What": "FieldDecl", + "defdec": "Def", + "display": "Channel", + "location": { + "column": "38", + "line": "354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Channel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@hdma", + "What": "FieldDecl", + "defdec": "Def", + "display": "hdma", + "location": { + "column": "39", + "line": "355", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "hdma", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@Lock", + "What": "FieldDecl", + "defdec": "Def", + "display": "Lock", + "location": { + "column": "38", + "line": "357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "Lock", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@State", + "What": "FieldDecl", + "defdec": "Def", + "display": "State", + "location": { + "column": "38", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "State", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@ChannelState", + "What": "FieldDecl", + "defdec": "Def", + "display": "ChannelState", + "location": { + "column": "38", + "line": "359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ChannelState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@ChannelNState", + "What": "FieldDecl", + "defdec": "Def", + "display": "ChannelNState", + "location": { + "column": "38", + "line": "360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "ChannelNState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + }, + { + "ID": "c:@SA@TIM_HandleTypeDef@FI@DMABurstState", + "What": "FieldDecl", + "defdec": "Def", + "display": "DMABurstState", + "location": { + "column": "38", + "line": "361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "DMABurstState", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_h_349_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_HandleTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_HandleTypeDef", + "location": { + "column": "3", + "line": "393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_HandleTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@26985@macro@TIM_CLEARINPUTSOURCE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTSOURCE_NONE", + "location": { + "column": "9", + "line": "452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTSOURCE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27074@macro@TIM_CLEARINPUTSOURCE_ETR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTSOURCE_ETR", + "location": { + "column": "9", + "line": "453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTSOURCE_ETR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27178@macro@TIM_CLEARINPUTSOURCE_OCREFCLR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTSOURCE_OCREFCLR", + "location": { + "column": "9", + "line": "454", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTSOURCE_OCREFCLR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27377@macro@TIM_DMABASE_CR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CR1", + "location": { + "column": "9", + "line": "462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27433@macro@TIM_DMABASE_CR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CR2", + "location": { + "column": "9", + "line": "463", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27489@macro@TIM_DMABASE_SMCR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_SMCR", + "location": { + "column": "9", + "line": "464", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_SMCR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27545@macro@TIM_DMABASE_DIER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_DIER", + "location": { + "column": "9", + "line": "465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_DIER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27601@macro@TIM_DMABASE_SR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_SR", + "location": { + "column": "9", + "line": "466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_SR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27657@macro@TIM_DMABASE_EGR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_EGR", + "location": { + "column": "9", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_EGR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27713@macro@TIM_DMABASE_CCMR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCMR1", + "location": { + "column": "9", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCMR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27769@macro@TIM_DMABASE_CCMR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCMR2", + "location": { + "column": "9", + "line": "469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCMR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27825@macro@TIM_DMABASE_CCER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCER", + "location": { + "column": "9", + "line": "470", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27881@macro@TIM_DMABASE_CNT", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CNT", + "location": { + "column": "9", + "line": "471", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CNT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27937@macro@TIM_DMABASE_PSC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_PSC", + "location": { + "column": "9", + "line": "472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_PSC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@27993@macro@TIM_DMABASE_ARR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_ARR", + "location": { + "column": "9", + "line": "473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_ARR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28049@macro@TIM_DMABASE_RCR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_RCR", + "location": { + "column": "9", + "line": "474", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_RCR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28105@macro@TIM_DMABASE_CCR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR1", + "location": { + "column": "9", + "line": "475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28161@macro@TIM_DMABASE_CCR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR2", + "location": { + "column": "9", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28217@macro@TIM_DMABASE_CCR3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR3", + "location": { + "column": "9", + "line": "477", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28273@macro@TIM_DMABASE_CCR4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR4", + "location": { + "column": "9", + "line": "478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28329@macro@TIM_DMABASE_BDTR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_BDTR", + "location": { + "column": "9", + "line": "479", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_BDTR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28385@macro@TIM_DMABASE_DCR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_DCR", + "location": { + "column": "9", + "line": "480", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_DCR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28441@macro@TIM_DMABASE_DMAR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_DMAR", + "location": { + "column": "9", + "line": "481", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_DMAR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28497@macro@TIM_DMABASE_OR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_OR1", + "location": { + "column": "9", + "line": "482", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_OR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28553@macro@TIM_DMABASE_CCMR3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCMR3", + "location": { + "column": "9", + "line": "483", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCMR3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28609@macro@TIM_DMABASE_CCR5", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR5", + "location": { + "column": "9", + "line": "484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28665@macro@TIM_DMABASE_CCR6", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_CCR6", + "location": { + "column": "9", + "line": "485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_CCR6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28721@macro@TIM_DMABASE_OR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_OR2", + "location": { + "column": "9", + "line": "486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_OR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28777@macro@TIM_DMABASE_OR3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABASE_OR3", + "location": { + "column": "9", + "line": "487", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABASE_OR3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@28917@macro@TIM_EVENTSOURCE_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_UPDATE", + "location": { + "column": "9", + "line": "495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29051@macro@TIM_EVENTSOURCE_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_CC1", + "location": { + "column": "9", + "line": "496", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29169@macro@TIM_EVENTSOURCE_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_CC2", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29287@macro@TIM_EVENTSOURCE_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_CC3", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29405@macro@TIM_EVENTSOURCE_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_CC4", + "location": { + "column": "9", + "line": "499", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29523@macro@TIM_EVENTSOURCE_COM", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_COM", + "location": { + "column": "9", + "line": "500", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_COM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29624@macro@TIM_EVENTSOURCE_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_TRIGGER", + "location": { + "column": "9", + "line": "501", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29721@macro@TIM_EVENTSOURCE_BREAK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_BREAK", + "location": { + "column": "9", + "line": "502", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_BREAK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@29816@macro@TIM_EVENTSOURCE_BREAK2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_EVENTSOURCE_BREAK2", + "location": { + "column": "9", + "line": "503", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_EVENTSOURCE_BREAK2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30018@macro@TIM_INPUTCHANNELPOLARITY_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_INPUTCHANNELPOLARITY_RISING", + "location": { + "column": "10", + "line": "511", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_INPUTCHANNELPOLARITY_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30131@macro@TIM_INPUTCHANNELPOLARITY_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_INPUTCHANNELPOLARITY_FALLING", + "location": { + "column": "10", + "line": "512", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_INPUTCHANNELPOLARITY_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30244@macro@TIM_INPUTCHANNELPOLARITY_BOTHEDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_INPUTCHANNELPOLARITY_BOTHEDGE", + "location": { + "column": "10", + "line": "513", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_INPUTCHANNELPOLARITY_BOTHEDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30440@macro@TIM_ETRPOLARITY_INVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPOLARITY_INVERTED", + "location": { + "column": "9", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPOLARITY_INVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30553@macro@TIM_ETRPOLARITY_NONINVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPOLARITY_NONINVERTED", + "location": { + "column": "9", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPOLARITY_NONINVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30752@macro@TIM_ETRPRESCALER_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPRESCALER_DIV1", + "location": { + "column": "9", + "line": "530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPRESCALER_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30862@macro@TIM_ETRPRESCALER_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPRESCALER_DIV2", + "location": { + "column": "9", + "line": "531", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPRESCALER_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@30984@macro@TIM_ETRPRESCALER_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPRESCALER_DIV4", + "location": { + "column": "9", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPRESCALER_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31106@macro@TIM_ETRPRESCALER_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ETRPRESCALER_DIV8", + "location": { + "column": "9", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETRPRESCALER_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31312@macro@TIM_COUNTERMODE_UP", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COUNTERMODE_UP", + "location": { + "column": "9", + "line": "541", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COUNTERMODE_UP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31430@macro@TIM_COUNTERMODE_DOWN", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COUNTERMODE_DOWN", + "location": { + "column": "9", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COUNTERMODE_DOWN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31548@macro@TIM_COUNTERMODE_CENTERALIGNED1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COUNTERMODE_CENTERALIGNED1", + "location": { + "column": "9", + "line": "543", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COUNTERMODE_CENTERALIGNED1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31666@macro@TIM_COUNTERMODE_CENTERALIGNED2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COUNTERMODE_CENTERALIGNED2", + "location": { + "column": "9", + "line": "544", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COUNTERMODE_CENTERALIGNED2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@31784@macro@TIM_COUNTERMODE_CENTERALIGNED3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COUNTERMODE_CENTERALIGNED3", + "location": { + "column": "9", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COUNTERMODE_CENTERALIGNED3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32016@macro@TIM_UIFREMAP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_UIFREMAP_DISABLE", + "location": { + "column": "9", + "line": "553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_UIFREMAP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32142@macro@TIM_UIFREMAP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_UIFREMAP_ENABLE", + "location": { + "column": "9", + "line": "554", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_UIFREMAP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32354@macro@TIM_CLOCKDIVISION_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKDIVISION_DIV1", + "location": { + "column": "9", + "line": "562", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKDIVISION_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32474@macro@TIM_CLOCKDIVISION_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKDIVISION_DIV2", + "location": { + "column": "9", + "line": "563", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKDIVISION_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32594@macro@TIM_CLOCKDIVISION_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKDIVISION_DIV4", + "location": { + "column": "9", + "line": "564", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKDIVISION_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32814@macro@TIM_OUTPUTSTATE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OUTPUTSTATE_DISABLE", + "location": { + "column": "9", + "line": "572", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OUTPUTSTATE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@32937@macro@TIM_OUTPUTSTATE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OUTPUTSTATE_ENABLE", + "location": { + "column": "9", + "line": "573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OUTPUTSTATE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33155@macro@TIM_AUTORELOAD_PRELOAD_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_AUTORELOAD_PRELOAD_DISABLE", + "location": { + "column": "9", + "line": "581", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_AUTORELOAD_PRELOAD_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33278@macro@TIM_AUTORELOAD_PRELOAD_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_AUTORELOAD_PRELOAD_ENABLE", + "location": { + "column": "9", + "line": "582", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_AUTORELOAD_PRELOAD_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33493@macro@TIM_OCFAST_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCFAST_DISABLE", + "location": { + "column": "9", + "line": "591", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCFAST_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33610@macro@TIM_OCFAST_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCFAST_ENABLE", + "location": { + "column": "9", + "line": "592", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCFAST_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33843@macro@TIM_OUTPUTNSTATE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OUTPUTNSTATE_DISABLE", + "location": { + "column": "9", + "line": "600", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OUTPUTNSTATE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@33950@macro@TIM_OUTPUTNSTATE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OUTPUTNSTATE_ENABLE", + "location": { + "column": "9", + "line": "601", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OUTPUTNSTATE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@34163@macro@TIM_OCPOLARITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCPOLARITY_HIGH", + "location": { + "column": "9", + "line": "609", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCPOLARITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@34285@macro@TIM_OCPOLARITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCPOLARITY_LOW", + "location": { + "column": "9", + "line": "610", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCPOLARITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@34529@macro@TIM_OCNPOLARITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCNPOLARITY_HIGH", + "location": { + "column": "9", + "line": "618", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCNPOLARITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@34664@macro@TIM_OCNPOLARITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCNPOLARITY_LOW", + "location": { + "column": "9", + "line": "619", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCNPOLARITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@34909@macro@TIM_OCIDLESTATE_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCIDLESTATE_SET", + "location": { + "column": "9", + "line": "627", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCIDLESTATE_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35034@macro@TIM_OCIDLESTATE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCIDLESTATE_RESET", + "location": { + "column": "9", + "line": "628", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCIDLESTATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35285@macro@TIM_OCNIDLESTATE_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCNIDLESTATE_SET", + "location": { + "column": "9", + "line": "636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCNIDLESTATE_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35425@macro@TIM_OCNIDLESTATE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCNIDLESTATE_RESET", + "location": { + "column": "9", + "line": "637", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCNIDLESTATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35670@macro@TIM_ICPOLARITY_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPOLARITY_RISING", + "location": { + "column": "10", + "line": "645", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPOLARITY_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35824@macro@TIM_ICPOLARITY_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPOLARITY_FALLING", + "location": { + "column": "10", + "line": "646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPOLARITY_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@35978@macro@TIM_ICPOLARITY_BOTHEDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPOLARITY_BOTHEDGE", + "location": { + "column": "10", + "line": "647", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPOLARITY_BOTHEDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@36236@macro@TIM_ENCODERINPUTPOLARITY_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ENCODERINPUTPOLARITY_RISING", + "location": { + "column": "10", + "line": "655", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ENCODERINPUTPOLARITY_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@36366@macro@TIM_ENCODERINPUTPOLARITY_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ENCODERINPUTPOLARITY_FALLING", + "location": { + "column": "10", + "line": "656", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ENCODERINPUTPOLARITY_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@36601@macro@TIM_ICSELECTION_DIRECTTI", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICSELECTION_DIRECTTI", + "location": { + "column": "9", + "line": "664", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICSELECTION_DIRECTTI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@36779@macro@TIM_ICSELECTION_INDIRECTTI", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICSELECTION_INDIRECTTI", + "location": { + "column": "9", + "line": "665", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICSELECTION_INDIRECTTI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@36957@macro@TIM_ICSELECTION_TRC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICSELECTION_TRC", + "location": { + "column": "9", + "line": "666", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICSELECTION_TRC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@37210@macro@TIM_ICPSC_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPSC_DIV1", + "location": { + "column": "9", + "line": "674", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPSC_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@37368@macro@TIM_ICPSC_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPSC_DIV2", + "location": { + "column": "9", + "line": "675", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPSC_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@37526@macro@TIM_ICPSC_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPSC_DIV4", + "location": { + "column": "9", + "line": "676", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPSC_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@37684@macro@TIM_ICPSC_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ICPSC_DIV8", + "location": { + "column": "9", + "line": "677", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ICPSC_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@37930@macro@TIM_OPMODE_SINGLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OPMODE_SINGLE", + "location": { + "column": "9", + "line": "685", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OPMODE_SINGLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@38067@macro@TIM_OPMODE_REPETITIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OPMODE_REPETITIVE", + "location": { + "column": "9", + "line": "686", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OPMODE_REPETITIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@38288@macro@TIM_ENCODERMODE_TI1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ENCODERMODE_TI1", + "location": { + "column": "9", + "line": "694", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ENCODERMODE_TI1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@38507@macro@TIM_ENCODERMODE_TI2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ENCODERMODE_TI2", + "location": { + "column": "9", + "line": "695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ENCODERMODE_TI2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@38726@macro@TIM_ENCODERMODE_TI12", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_ENCODERMODE_TI12", + "location": { + "column": "9", + "line": "696", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ENCODERMODE_TI12", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39078@macro@TIM_IT_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_UPDATE", + "location": { + "column": "9", + "line": "704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39195@macro@TIM_IT_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_CC1", + "location": { + "column": "9", + "line": "705", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39312@macro@TIM_IT_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_CC2", + "location": { + "column": "9", + "line": "706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39429@macro@TIM_IT_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_CC3", + "location": { + "column": "9", + "line": "707", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39546@macro@TIM_IT_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_CC4", + "location": { + "column": "9", + "line": "708", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39663@macro@TIM_IT_COM", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_COM", + "location": { + "column": "9", + "line": "709", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_COM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39780@macro@TIM_IT_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_TRIGGER", + "location": { + "column": "9", + "line": "710", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@39897@macro@TIM_IT_BREAK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_IT_BREAK", + "location": { + "column": "9", + "line": "711", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_IT_BREAK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@40111@macro@TIM_COMMUTATION_TRGI", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COMMUTATION_TRGI", + "location": { + "column": "9", + "line": "719", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COMMUTATION_TRGI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@40337@macro@TIM_COMMUTATION_SOFTWARE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_COMMUTATION_SOFTWARE", + "location": { + "column": "9", + "line": "720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_COMMUTATION_SOFTWARE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@40598@macro@TIM_DMA_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_UPDATE", + "location": { + "column": "9", + "line": "728", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@40732@macro@TIM_DMA_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_CC1", + "location": { + "column": "9", + "line": "729", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@40883@macro@TIM_DMA_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_CC2", + "location": { + "column": "9", + "line": "730", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41040@macro@TIM_DMA_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_CC3", + "location": { + "column": "9", + "line": "731", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41197@macro@TIM_DMA_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_CC4", + "location": { + "column": "9", + "line": "732", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41354@macro@TIM_DMA_COM", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_COM", + "location": { + "column": "9", + "line": "733", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_COM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41493@macro@TIM_DMA_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_TRIGGER", + "location": { + "column": "9", + "line": "734", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41723@macro@TIM_CCDMAREQUEST_CC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCDMAREQUEST_CC", + "location": { + "column": "9", + "line": "742", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCDMAREQUEST_CC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@41876@macro@TIM_CCDMAREQUEST_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCDMAREQUEST_UPDATE", + "location": { + "column": "9", + "line": "743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCDMAREQUEST_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42102@macro@TIM_FLAG_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_UPDATE", + "location": { + "column": "9", + "line": "751", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42221@macro@TIM_FLAG_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC1", + "location": { + "column": "9", + "line": "752", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42343@macro@TIM_FLAG_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC2", + "location": { + "column": "9", + "line": "753", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42465@macro@TIM_FLAG_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC3", + "location": { + "column": "9", + "line": "754", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42587@macro@TIM_FLAG_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC4", + "location": { + "column": "9", + "line": "755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42709@macro@TIM_FLAG_CC5", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC5", + "location": { + "column": "9", + "line": "756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42831@macro@TIM_FLAG_CC6", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC6", + "location": { + "column": "9", + "line": "757", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@42953@macro@TIM_FLAG_COM", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_COM", + "location": { + "column": "9", + "line": "758", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_COM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43072@macro@TIM_FLAG_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_TRIGGER", + "location": { + "column": "9", + "line": "759", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43191@macro@TIM_FLAG_BREAK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_BREAK", + "location": { + "column": "9", + "line": "760", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_BREAK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43310@macro@TIM_FLAG_BREAK2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_BREAK2", + "location": { + "column": "9", + "line": "761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_BREAK2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43429@macro@TIM_FLAG_SYSTEM_BREAK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_SYSTEM_BREAK", + "location": { + "column": "9", + "line": "762", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_SYSTEM_BREAK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43548@macro@TIM_FLAG_CC1OF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC1OF", + "location": { + "column": "9", + "line": "763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC1OF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43667@macro@TIM_FLAG_CC2OF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC2OF", + "location": { + "column": "9", + "line": "764", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC2OF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43786@macro@TIM_FLAG_CC3OF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC3OF", + "location": { + "column": "9", + "line": "765", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC3OF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@43905@macro@TIM_FLAG_CC4OF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_FLAG_CC4OF", + "location": { + "column": "9", + "line": "766", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_FLAG_CC4OF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44098@macro@TIM_CHANNEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_1", + "location": { + "column": "9", + "line": "774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44229@macro@TIM_CHANNEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_2", + "location": { + "column": "9", + "line": "775", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44360@macro@TIM_CHANNEL_3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_3", + "location": { + "column": "9", + "line": "776", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44491@macro@TIM_CHANNEL_4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_4", + "location": { + "column": "9", + "line": "777", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44622@macro@TIM_CHANNEL_5", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_5", + "location": { + "column": "9", + "line": "778", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44753@macro@TIM_CHANNEL_6", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_6", + "location": { + "column": "9", + "line": "779", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@44884@macro@TIM_CHANNEL_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_ALL", + "location": { + "column": "9", + "line": "780", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45100@macro@TIM_CLOCKSOURCE_INTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_INTERNAL", + "location": { + "column": "9", + "line": "788", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_INTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45220@macro@TIM_CLOCKSOURCE_ETRMODE1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ETRMODE1", + "location": { + "column": "9", + "line": "789", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ETRMODE1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45340@macro@TIM_CLOCKSOURCE_ETRMODE2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ETRMODE2", + "location": { + "column": "9", + "line": "790", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ETRMODE2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45460@macro@TIM_CLOCKSOURCE_TI1ED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_TI1ED", + "location": { + "column": "9", + "line": "791", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_TI1ED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45580@macro@TIM_CLOCKSOURCE_TI1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_TI1", + "location": { + "column": "9", + "line": "792", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_TI1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45700@macro@TIM_CLOCKSOURCE_TI2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_TI2", + "location": { + "column": "9", + "line": "793", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_TI2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45820@macro@TIM_CLOCKSOURCE_ITR0", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ITR0", + "location": { + "column": "9", + "line": "794", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ITR0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@45940@macro@TIM_CLOCKSOURCE_ITR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ITR1", + "location": { + "column": "9", + "line": "795", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ITR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46060@macro@TIM_CLOCKSOURCE_ITR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ITR2", + "location": { + "column": "9", + "line": "796", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ITR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46180@macro@TIM_CLOCKSOURCE_ITR3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKSOURCE_ITR3", + "location": { + "column": "9", + "line": "797", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKSOURCE_ITR3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46388@macro@TIM_CLOCKPOLARITY_INVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPOLARITY_INVERTED", + "location": { + "column": "9", + "line": "805", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPOLARITY_INVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46509@macro@TIM_CLOCKPOLARITY_NONINVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPOLARITY_NONINVERTED", + "location": { + "column": "9", + "line": "806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPOLARITY_NONINVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46630@macro@TIM_CLOCKPOLARITY_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPOLARITY_RISING", + "location": { + "column": "9", + "line": "807", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPOLARITY_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46750@macro@TIM_CLOCKPOLARITY_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPOLARITY_FALLING", + "location": { + "column": "9", + "line": "808", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPOLARITY_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@46870@macro@TIM_CLOCKPOLARITY_BOTHEDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPOLARITY_BOTHEDGE", + "location": { + "column": "9", + "line": "809", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPOLARITY_BOTHEDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47080@macro@TIM_CLOCKPRESCALER_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPRESCALER_DIV1", + "location": { + "column": "9", + "line": "817", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPRESCALER_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47242@macro@TIM_CLOCKPRESCALER_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPRESCALER_DIV2", + "location": { + "column": "9", + "line": "818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPRESCALER_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47404@macro@TIM_CLOCKPRESCALER_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPRESCALER_DIV4", + "location": { + "column": "9", + "line": "819", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPRESCALER_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47566@macro@TIM_CLOCKPRESCALER_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLOCKPRESCALER_DIV8", + "location": { + "column": "9", + "line": "820", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLOCKPRESCALER_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47827@macro@TIM_CLEARINPUTPOLARITY_INVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPOLARITY_INVERTED", + "location": { + "column": "9", + "line": "828", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPOLARITY_INVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@47938@macro@TIM_CLEARINPUTPOLARITY_NONINVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPOLARITY_NONINVERTED", + "location": { + "column": "9", + "line": "829", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPOLARITY_NONINVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@48150@macro@TIM_CLEARINPUTPRESCALER_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPRESCALER_DIV1", + "location": { + "column": "9", + "line": "837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPRESCALER_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@48310@macro@TIM_CLEARINPUTPRESCALER_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPRESCALER_DIV2", + "location": { + "column": "9", + "line": "838", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPRESCALER_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@48470@macro@TIM_CLEARINPUTPRESCALER_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPRESCALER_DIV4", + "location": { + "column": "9", + "line": "839", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPRESCALER_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@48630@macro@TIM_CLEARINPUTPRESCALER_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CLEARINPUTPRESCALER_DIV8", + "location": { + "column": "9", + "line": "840", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CLEARINPUTPRESCALER_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@48935@macro@TIM_OSSR_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OSSR_ENABLE", + "location": { + "column": "9", + "line": "848", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OSSR_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@49108@macro@TIM_OSSR_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OSSR_DISABLE", + "location": { + "column": "9", + "line": "849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OSSR_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@49428@macro@TIM_OSSI_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OSSI_ENABLE", + "location": { + "column": "9", + "line": "857", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OSSI_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@49601@macro@TIM_OSSI_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OSSI_DISABLE", + "location": { + "column": "9", + "line": "858", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OSSI_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@49853@macro@TIM_LOCKLEVEL_OFF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_LOCKLEVEL_OFF", + "location": { + "column": "9", + "line": "865", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_LOCKLEVEL_OFF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@49955@macro@TIM_LOCKLEVEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_LOCKLEVEL_1", + "location": { + "column": "9", + "line": "866", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_LOCKLEVEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50057@macro@TIM_LOCKLEVEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_LOCKLEVEL_2", + "location": { + "column": "9", + "line": "867", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_LOCKLEVEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50159@macro@TIM_LOCKLEVEL_3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_LOCKLEVEL_3", + "location": { + "column": "9", + "line": "868", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_LOCKLEVEL_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50365@macro@TIM_BREAK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_ENABLE", + "location": { + "column": "9", + "line": "876", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50482@macro@TIM_BREAK_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_DISABLE", + "location": { + "column": "9", + "line": "877", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50693@macro@TIM_BREAKPOLARITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKPOLARITY_LOW", + "location": { + "column": "9", + "line": "885", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAKPOLARITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@50813@macro@TIM_BREAKPOLARITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKPOLARITY_HIGH", + "location": { + "column": "9", + "line": "886", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAKPOLARITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51040@macro@TIM_BREAK2_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK2_DISABLE", + "location": { + "column": "9", + "line": "894", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK2_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51159@macro@TIM_BREAK2_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK2_ENABLE", + "location": { + "column": "9", + "line": "895", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK2_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51374@macro@TIM_BREAK2POLARITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK2POLARITY_LOW", + "location": { + "column": "9", + "line": "903", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK2POLARITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51496@macro@TIM_BREAK2POLARITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK2POLARITY_HIGH", + "location": { + "column": "9", + "line": "904", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK2POLARITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51718@macro@TIM_AUTOMATICOUTPUT_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_AUTOMATICOUTPUT_DISABLE", + "location": { + "column": "9", + "line": "912", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_AUTOMATICOUTPUT_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@51839@macro@TIM_AUTOMATICOUTPUT_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_AUTOMATICOUTPUT_ENABLE", + "location": { + "column": "9", + "line": "913", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_AUTOMATICOUTPUT_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52161@macro@TIM_GROUPCH5_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_GROUPCH5_NONE", + "location": { + "column": "9", + "line": "921", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_GROUPCH5_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52302@macro@TIM_GROUPCH5_OC1REFC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_GROUPCH5_OC1REFC", + "location": { + "column": "9", + "line": "922", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_GROUPCH5_OC1REFC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52443@macro@TIM_GROUPCH5_OC2REFC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_GROUPCH5_OC2REFC", + "location": { + "column": "9", + "line": "923", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_GROUPCH5_OC2REFC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52584@macro@TIM_GROUPCH5_OC3REFC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_GROUPCH5_OC3REFC", + "location": { + "column": "9", + "line": "924", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_GROUPCH5_OC3REFC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52827@macro@TIM_TRGO_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_RESET", + "location": { + "column": "9", + "line": "932", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@52981@macro@TIM_TRGO_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_ENABLE", + "location": { + "column": "9", + "line": "933", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53135@macro@TIM_TRGO_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_UPDATE", + "location": { + "column": "9", + "line": "934", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53289@macro@TIM_TRGO_OC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_OC1", + "location": { + "column": "9", + "line": "935", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_OC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53443@macro@TIM_TRGO_OC1REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_OC1REF", + "location": { + "column": "9", + "line": "936", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_OC1REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53597@macro@TIM_TRGO_OC2REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_OC2REF", + "location": { + "column": "9", + "line": "937", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_OC2REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53751@macro@TIM_TRGO_OC3REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_OC3REF", + "location": { + "column": "9", + "line": "938", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_OC3REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@53905@macro@TIM_TRGO_OC4REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO_OC4REF", + "location": { + "column": "9", + "line": "939", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO_OC4REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@54173@macro@TIM_TRGO2_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_RESET", + "location": { + "column": "9", + "line": "947", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@54362@macro@TIM_TRGO2_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_ENABLE", + "location": { + "column": "9", + "line": "948", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@54551@macro@TIM_TRGO2_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_UPDATE", + "location": { + "column": "9", + "line": "949", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@54740@macro@TIM_TRGO2_OC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC1", + "location": { + "column": "9", + "line": "950", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@54929@macro@TIM_TRGO2_OC1REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC1REF", + "location": { + "column": "9", + "line": "951", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC1REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@55118@macro@TIM_TRGO2_OC2REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC2REF", + "location": { + "column": "9", + "line": "952", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC2REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@55307@macro@TIM_TRGO2_OC3REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC3REF", + "location": { + "column": "9", + "line": "953", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC3REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@55496@macro@TIM_TRGO2_OC4REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC4REF", + "location": { + "column": "9", + "line": "954", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC4REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@55685@macro@TIM_TRGO2_OC5REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC5REF", + "location": { + "column": "9", + "line": "955", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC5REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@55874@macro@TIM_TRGO2_OC6REF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC6REF", + "location": { + "column": "9", + "line": "956", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC6REF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@56063@macro@TIM_TRGO2_OC4REF_RISINGFALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC4REF_RISINGFALLING", + "location": { + "column": "9", + "line": "957", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC4REF_RISINGFALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@56252@macro@TIM_TRGO2_OC6REF_RISINGFALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC6REF_RISINGFALLING", + "location": { + "column": "9", + "line": "958", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC6REF_RISINGFALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@56441@macro@TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", + "location": { + "column": "9", + "line": "959", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC4REF_RISING_OC6REF_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@56630@macro@TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", + "location": { + "column": "9", + "line": "960", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC4REF_RISING_OC6REF_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@56819@macro@TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", + "location": { + "column": "9", + "line": "961", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC5REF_RISING_OC6REF_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57008@macro@TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", + "location": { + "column": "9", + "line": "962", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRGO2_OC5REF_RISING_OC6REF_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57291@macro@TIM_MASTERSLAVEMODE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_MASTERSLAVEMODE_ENABLE", + "location": { + "column": "9", + "line": "970", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_MASTERSLAVEMODE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57390@macro@TIM_MASTERSLAVEMODE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_MASTERSLAVEMODE_DISABLE", + "location": { + "column": "9", + "line": "971", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_MASTERSLAVEMODE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57589@macro@TIM_SLAVEMODE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_DISABLE", + "location": { + "column": "9", + "line": "979", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57724@macro@TIM_SLAVEMODE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_RESET", + "location": { + "column": "9", + "line": "980", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57859@macro@TIM_SLAVEMODE_GATED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_GATED", + "location": { + "column": "9", + "line": "981", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_GATED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@57994@macro@TIM_SLAVEMODE_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_TRIGGER", + "location": { + "column": "9", + "line": "982", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58129@macro@TIM_SLAVEMODE_EXTERNAL1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_EXTERNAL1", + "location": { + "column": "9", + "line": "983", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_EXTERNAL1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58264@macro@TIM_SLAVEMODE_COMBINED_RESETTRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SLAVEMODE_COMBINED_RESETTRIGGER", + "location": { + "column": "9", + "line": "984", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SLAVEMODE_COMBINED_RESETTRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58515@macro@TIM_OCMODE_TIMING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_TIMING", + "location": { + "column": "9", + "line": "992", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_TIMING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58664@macro@TIM_OCMODE_ACTIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_ACTIVE", + "location": { + "column": "9", + "line": "993", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_ACTIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58813@macro@TIM_OCMODE_INACTIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_INACTIVE", + "location": { + "column": "9", + "line": "994", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_INACTIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@58962@macro@TIM_OCMODE_TOGGLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_TOGGLE", + "location": { + "column": "9", + "line": "995", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_TOGGLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59111@macro@TIM_OCMODE_PWM1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_PWM1", + "location": { + "column": "9", + "line": "996", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_PWM1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59260@macro@TIM_OCMODE_PWM2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_PWM2", + "location": { + "column": "9", + "line": "997", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_PWM2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59409@macro@TIM_OCMODE_FORCED_ACTIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_FORCED_ACTIVE", + "location": { + "column": "9", + "line": "998", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_FORCED_ACTIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59558@macro@TIM_OCMODE_FORCED_INACTIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_FORCED_INACTIVE", + "location": { + "column": "9", + "line": "999", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_FORCED_INACTIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59707@macro@TIM_OCMODE_RETRIGERRABLE_OPM1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_RETRIGERRABLE_OPM1", + "location": { + "column": "9", + "line": "1000", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_RETRIGERRABLE_OPM1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@59856@macro@TIM_OCMODE_RETRIGERRABLE_OPM2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_RETRIGERRABLE_OPM2", + "location": { + "column": "9", + "line": "1001", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_RETRIGERRABLE_OPM2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60005@macro@TIM_OCMODE_COMBINED_PWM1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_COMBINED_PWM1", + "location": { + "column": "9", + "line": "1002", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_COMBINED_PWM1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60154@macro@TIM_OCMODE_COMBINED_PWM2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_COMBINED_PWM2", + "location": { + "column": "9", + "line": "1003", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_COMBINED_PWM2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60303@macro@TIM_OCMODE_ASSYMETRIC_PWM1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_ASSYMETRIC_PWM1", + "location": { + "column": "9", + "line": "1004", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_ASSYMETRIC_PWM1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60452@macro@TIM_OCMODE_ASSYMETRIC_PWM2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_OCMODE_ASSYMETRIC_PWM2", + "location": { + "column": "9", + "line": "1005", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OCMODE_ASSYMETRIC_PWM2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60695@macro@TIM_TS_ITR0", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_ITR0", + "location": { + "column": "9", + "line": "1013", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_ITR0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60838@macro@TIM_TS_ITR1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_ITR1", + "location": { + "column": "9", + "line": "1014", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_ITR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@60981@macro@TIM_TS_ITR2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_ITR2", + "location": { + "column": "9", + "line": "1015", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_ITR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61124@macro@TIM_TS_ITR3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_ITR3", + "location": { + "column": "9", + "line": "1016", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_ITR3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61267@macro@TIM_TS_TI1F_ED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_TI1F_ED", + "location": { + "column": "9", + "line": "1017", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_TI1F_ED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61410@macro@TIM_TS_TI1FP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_TI1FP1", + "location": { + "column": "9", + "line": "1018", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_TI1FP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61553@macro@TIM_TS_TI2FP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_TI2FP2", + "location": { + "column": "9", + "line": "1019", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_TI2FP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61696@macro@TIM_TS_ETRF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_ETRF", + "location": { + "column": "9", + "line": "1020", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_ETRF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@61839@macro@TIM_TS_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TS_NONE", + "location": { + "column": "9", + "line": "1021", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TS_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62074@macro@TIM_TRIGGERPOLARITY_INVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPOLARITY_INVERTED", + "location": { + "column": "9", + "line": "1029", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPOLARITY_INVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62215@macro@TIM_TRIGGERPOLARITY_NONINVERTED", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPOLARITY_NONINVERTED", + "location": { + "column": "9", + "line": "1030", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPOLARITY_NONINVERTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62356@macro@TIM_TRIGGERPOLARITY_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPOLARITY_RISING", + "location": { + "column": "9", + "line": "1031", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPOLARITY_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62497@macro@TIM_TRIGGERPOLARITY_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPOLARITY_FALLING", + "location": { + "column": "9", + "line": "1032", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPOLARITY_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62638@macro@TIM_TRIGGERPOLARITY_BOTHEDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPOLARITY_BOTHEDGE", + "location": { + "column": "9", + "line": "1033", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPOLARITY_BOTHEDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@62873@macro@TIM_TRIGGERPRESCALER_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPRESCALER_DIV1", + "location": { + "column": "9", + "line": "1041", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPRESCALER_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@63037@macro@TIM_TRIGGERPRESCALER_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPRESCALER_DIV2", + "location": { + "column": "9", + "line": "1042", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPRESCALER_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@63201@macro@TIM_TRIGGERPRESCALER_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPRESCALER_DIV4", + "location": { + "column": "9", + "line": "1043", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPRESCALER_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@63365@macro@TIM_TRIGGERPRESCALER_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TRIGGERPRESCALER_DIV8", + "location": { + "column": "9", + "line": "1044", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TRIGGERPRESCALER_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@63621@macro@TIM_TI1SELECTION_CH1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TI1SELECTION_CH1", + "location": { + "column": "9", + "line": "1052", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TI1SELECTION_CH1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@63753@macro@TIM_TI1SELECTION_XORCOMBINATION", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TI1SELECTION_XORCOMBINATION", + "location": { + "column": "9", + "line": "1053", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TI1SELECTION_XORCOMBINATION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64014@macro@TIM_DMABURSTLENGTH_1TRANSFER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_1TRANSFER", + "location": { + "column": "9", + "line": "1061", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_1TRANSFER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64178@macro@TIM_DMABURSTLENGTH_2TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_2TRANSFERS", + "location": { + "column": "9", + "line": "1062", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_2TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64342@macro@TIM_DMABURSTLENGTH_3TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_3TRANSFERS", + "location": { + "column": "9", + "line": "1063", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_3TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64506@macro@TIM_DMABURSTLENGTH_4TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_4TRANSFERS", + "location": { + "column": "9", + "line": "1064", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_4TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64670@macro@TIM_DMABURSTLENGTH_5TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_5TRANSFERS", + "location": { + "column": "9", + "line": "1065", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_5TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64834@macro@TIM_DMABURSTLENGTH_6TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_6TRANSFERS", + "location": { + "column": "9", + "line": "1066", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_6TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@64998@macro@TIM_DMABURSTLENGTH_7TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_7TRANSFERS", + "location": { + "column": "9", + "line": "1067", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_7TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65162@macro@TIM_DMABURSTLENGTH_8TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_8TRANSFERS", + "location": { + "column": "9", + "line": "1068", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_8TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65326@macro@TIM_DMABURSTLENGTH_9TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_9TRANSFERS", + "location": { + "column": "9", + "line": "1069", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_9TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65490@macro@TIM_DMABURSTLENGTH_10TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_10TRANSFERS", + "location": { + "column": "9", + "line": "1070", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_10TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65654@macro@TIM_DMABURSTLENGTH_11TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_11TRANSFERS", + "location": { + "column": "9", + "line": "1071", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_11TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65818@macro@TIM_DMABURSTLENGTH_12TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_12TRANSFERS", + "location": { + "column": "9", + "line": "1072", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_12TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@65982@macro@TIM_DMABURSTLENGTH_13TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_13TRANSFERS", + "location": { + "column": "9", + "line": "1073", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_13TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@66146@macro@TIM_DMABURSTLENGTH_14TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_14TRANSFERS", + "location": { + "column": "9", + "line": "1074", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_14TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@66310@macro@TIM_DMABURSTLENGTH_15TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_15TRANSFERS", + "location": { + "column": "9", + "line": "1075", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_15TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@66474@macro@TIM_DMABURSTLENGTH_16TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_16TRANSFERS", + "location": { + "column": "9", + "line": "1076", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_16TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@66638@macro@TIM_DMABURSTLENGTH_17TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_17TRANSFERS", + "location": { + "column": "9", + "line": "1077", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_17TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@66802@macro@TIM_DMABURSTLENGTH_18TRANSFERS", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMABURSTLENGTH_18TRANSFERS", + "location": { + "column": "9", + "line": "1078", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMABURSTLENGTH_18TRANSFERS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67054@macro@TIM_DMA_ID_UPDATE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_UPDATE", + "location": { + "column": "9", + "line": "1086", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_UPDATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67183@macro@TIM_DMA_ID_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_CC1", + "location": { + "column": "9", + "line": "1087", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67323@macro@TIM_DMA_ID_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_CC2", + "location": { + "column": "9", + "line": "1088", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67463@macro@TIM_DMA_ID_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_CC3", + "location": { + "column": "9", + "line": "1089", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67603@macro@TIM_DMA_ID_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_CC4", + "location": { + "column": "9", + "line": "1090", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67743@macro@TIM_DMA_ID_COMMUTATION", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_COMMUTATION", + "location": { + "column": "9", + "line": "1091", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_COMMUTATION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@67877@macro@TIM_DMA_ID_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_DMA_ID_TRIGGER", + "location": { + "column": "9", + "line": "1092", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMA_ID_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68108@macro@TIM_CCx_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCx_ENABLE", + "location": { + "column": "9", + "line": "1100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCx_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68232@macro@TIM_CCx_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCx_DISABLE", + "location": { + "column": "9", + "line": "1101", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCx_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68357@macro@TIM_CCxN_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCxN_ENABLE", + "location": { + "column": "9", + "line": "1102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCxN_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68486@macro@TIM_CCxN_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCxN_DISABLE", + "location": { + "column": "9", + "line": "1103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCxN_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68699@macro@TIM_BREAK_SYSTEM_ECC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_SYSTEM_ECC", + "location": { + "column": "9", + "line": "1111", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_SYSTEM_ECC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@68848@macro@TIM_BREAK_SYSTEM_PVD", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_SYSTEM_PVD", + "location": { + "column": "9", + "line": "1112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_SYSTEM_PVD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@69054@macro@TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", + "location": { + "column": "9", + "line": "1113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_SYSTEM_SRAM2_PARITY_ERROR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@69212@macro@TIM_BREAK_SYSTEM_LOCKUP", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAK_SYSTEM_LOCKUP", + "location": { + "column": "9", + "line": "1114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_BREAK_SYSTEM_LOCKUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@73072@macro@__HAL_TIM_RESET_HANDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_RESET_HANDLE_STATE", + "location": { + "column": "9", + "line": "1163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_RESET_HANDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@74835@macro@__HAL_TIM_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_ENABLE", + "location": { + "column": "9", + "line": "1184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@75041@macro@__HAL_TIM_MOE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_MOE_ENABLE", + "location": { + "column": "9", + "line": "1191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_MOE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@75249@macro@__HAL_TIM_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_DISABLE", + "location": { + "column": "9", + "line": "1198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@75798@macro@__HAL_TIM_MOE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_MOE_DISABLE", + "location": { + "column": "9", + "line": "1216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_MOE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@76301@macro@__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", + "location": { + "column": "9", + "line": "1233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_MOE_DISABLE_UNCONDITIONALLY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@77137@macro@__HAL_TIM_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_ENABLE_IT", + "location": { + "column": "9", + "line": "1249", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@77976@macro@__HAL_TIM_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_DISABLE_IT", + "location": { + "column": "9", + "line": "1265", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@78771@macro@__HAL_TIM_ENABLE_DMA", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_ENABLE_DMA", + "location": { + "column": "9", + "line": "1280", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_ENABLE_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@79561@macro@__HAL_TIM_DISABLE_DMA", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_DISABLE_DMA", + "location": { + "column": "9", + "line": "1295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_DISABLE_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@81038@macro@__HAL_TIM_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_FLAG", + "location": { + "column": "9", + "line": "1319", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@82505@macro@__HAL_TIM_CLEAR_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_CLEAR_FLAG", + "location": { + "column": "9", + "line": "1343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_CLEAR_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@83387@macro@__HAL_TIM_GET_IT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_IT_SOURCE", + "location": { + "column": "9", + "line": "1360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_IT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@84311@macro@__HAL_TIM_CLEAR_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_CLEAR_IT", + "location": { + "column": "9", + "line": "1377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_CLEAR_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@84758@macro@__HAL_TIM_UIFREMAP_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_UIFREMAP_ENABLE", + "location": { + "column": "9", + "line": "1387", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_UIFREMAP_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@84994@macro@__HAL_TIM_UIFREMAP_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_UIFREMAP_DISABLE", + "location": { + "column": "9", + "line": "1395", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_UIFREMAP_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@85266@macro@__HAL_TIM_GET_UIFCPY", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_UIFCPY", + "location": { + "column": "9", + "line": "1403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_UIFCPY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@85726@macro@__HAL_TIM_IS_TIM_COUNTING_DOWN", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_IS_TIM_COUNTING_DOWN", + "location": { + "column": "9", + "line": "1412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_IS_TIM_COUNTING_DOWN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@86017@macro@__HAL_TIM_SET_PRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_PRESCALER", + "location": { + "column": "9", + "line": "1420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_PRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@86602@macro@__HAL_TIM_SET_COUNTER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_COUNTER", + "location": { + "column": "9", + "line": "1431", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_COUNTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@86891@macro@__HAL_TIM_GET_COUNTER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_COUNTER", + "location": { + "column": "9", + "line": "1438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_COUNTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@87212@macro@__HAL_TIM_SET_AUTORELOAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_AUTORELOAD", + "location": { + "column": "9", + "line": "1446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_AUTORELOAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@87654@macro@__HAL_TIM_GET_AUTORELOAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_AUTORELOAD", + "location": { + "column": "9", + "line": "1457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_AUTORELOAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@88202@macro@__HAL_TIM_SET_CLOCKDIVISION", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_CLOCKDIVISION", + "location": { + "column": "9", + "line": "1469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_CLOCKDIVISION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@88853@macro@__HAL_TIM_GET_CLOCKDIVISION", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_CLOCKDIVISION", + "location": { + "column": "9", + "line": "1484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_CLOCKDIVISION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@89917@macro@__HAL_TIM_SET_ICPRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_ICPRESCALER", + "location": { + "column": "9", + "line": "1504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_ICPRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@91069@macro@__HAL_TIM_GET_ICPRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_ICPRESCALER", + "location": { + "column": "9", + "line": "1525", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_ICPRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@92220@macro@__HAL_TIM_SET_COMPARE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_COMPARE", + "location": { + "column": "9", + "line": "1545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_COMPARE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@93570@macro@__HAL_TIM_GET_COMPARE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_GET_COMPARE", + "location": { + "column": "9", + "line": "1566", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_GET_COMPARE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@94620@macro@__HAL_TIM_ENABLE_OCxPRELOAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_ENABLE_OCxPRELOAD", + "location": { + "column": "9", + "line": "1587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_ENABLE_OCxPRELOAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@95801@macro@__HAL_TIM_DISABLE_OCxPRELOAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_DISABLE_OCxPRELOAD", + "location": { + "column": "9", + "line": "1608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_DISABLE_OCxPRELOAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@97302@macro@__HAL_TIM_ENABLE_OCxFAST", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_ENABLE_OCxFAST", + "location": { + "column": "9", + "line": "1633", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_ENABLE_OCxFAST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@98758@macro@__HAL_TIM_DISABLE_OCxFAST", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_DISABLE_OCxFAST", + "location": { + "column": "9", + "line": "1658", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_DISABLE_OCxFAST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@99672@macro@__HAL_TIM_URS_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_URS_ENABLE", + "location": { + "column": "9", + "line": "1674", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_URS_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@100230@macro@__HAL_TIM_URS_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_URS_DISABLE", + "location": { + "column": "9", + "line": "1687", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_URS_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@101068@macro@__HAL_TIM_SET_CAPTUREPOLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SET_CAPTUREPOLARITY", + "location": { + "column": "9", + "line": "1704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SET_CAPTUREPOLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@101845@macro@__HAL_TIM_SELECT_CCDMAREQUEST", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_TIM_SELECT_CCDMAREQUEST", + "location": { + "column": "9", + "line": "1718", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "__HAL_TIM_SELECT_CCDMAREQUEST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@102354@macro@TIM_CCER_CCxE_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCER_CCxE_MASK", + "location": { + "column": "9", + "line": "1732", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCER_CCxE_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@102459@macro@TIM_CCER_CCxNE_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CCER_CCxNE_MASK", + "location": { + "column": "9", + "line": "1733", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCER_CCxNE_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@102803@macro@IS_TIM_CLEARINPUT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLEARINPUT_SOURCE", + "location": { + "column": "9", + "line": "1743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLEARINPUT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@103088@macro@IS_TIM_DMA_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_DMA_BASE", + "location": { + "column": "9", + "line": "1747", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_DMA_BASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@104907@macro@IS_TIM_EVENT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_EVENT_SOURCE", + "location": { + "column": "9", + "line": "1772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_EVENT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@105031@macro@IS_TIM_COUNTER_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_COUNTER_MODE", + "location": { + "column": "9", + "line": "1774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_COUNTER_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@105518@macro@IS_TIM_UIFREMAP_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_UIFREMAP_MODE", + "location": { + "column": "9", + "line": "1780", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_UIFREMAP_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@105689@macro@IS_TIM_CLOCKDIVISION_DIV", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLOCKDIVISION_DIV", + "location": { + "column": "9", + "line": "1783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLOCKDIVISION_DIV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@105951@macro@IS_TIM_AUTORELOAD_PRELOAD", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_AUTORELOAD_PRELOAD", + "location": { + "column": "9", + "line": "1787", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_AUTORELOAD_PRELOAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@106140@macro@IS_TIM_FAST_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_FAST_STATE", + "location": { + "column": "9", + "line": "1790", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_FAST_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@106309@macro@IS_TIM_OC_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OC_POLARITY", + "location": { + "column": "9", + "line": "1793", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OC_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@106486@macro@IS_TIM_OCN_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OCN_POLARITY", + "location": { + "column": "9", + "line": "1796", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OCN_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@106665@macro@IS_TIM_OCIDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OCIDLE_STATE", + "location": { + "column": "9", + "line": "1799", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OCIDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@106839@macro@IS_TIM_OCNIDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OCNIDLE_STATE", + "location": { + "column": "9", + "line": "1802", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OCNIDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@107015@macro@IS_TIM_ENCODERINPUT_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_ENCODERINPUT_POLARITY", + "location": { + "column": "9", + "line": "1805", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_ENCODERINPUT_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@107240@macro@IS_TIM_IC_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_IC_POLARITY", + "location": { + "column": "9", + "line": "1808", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_IC_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@107520@macro@IS_TIM_IC_SELECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_IC_SELECTION", + "location": { + "column": "9", + "line": "1812", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_IC_SELECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@107803@macro@IS_TIM_IC_PRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_IC_PRESCALER", + "location": { + "column": "9", + "line": "1816", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_IC_PRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@108145@macro@IS_TIM_OPM_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OPM_MODE", + "location": { + "column": "9", + "line": "1821", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OPM_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@108315@macro@IS_TIM_ENCODER_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_ENCODER_MODE", + "location": { + "column": "9", + "line": "1824", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_ENCODER_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@108572@macro@IS_TIM_DMA_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_DMA_SOURCE", + "location": { + "column": "9", + "line": "1828", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_DMA_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@108694@macro@IS_TIM_CHANNELS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CHANNELS", + "location": { + "column": "9", + "line": "1830", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CHANNELS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@109275@macro@IS_TIM_OPM_CHANNELS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OPM_CHANNELS", + "location": { + "column": "9", + "line": "1838", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OPM_CHANNELS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@109439@macro@IS_TIM_PERIOD", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_PERIOD", + "location": { + "column": "9", + "line": "1841", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_PERIOD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@109636@macro@IS_TIM_COMPLEMENTARY_CHANNELS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_COMPLEMENTARY_CHANNELS", + "location": { + "column": "9", + "line": "1844", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_COMPLEMENTARY_CHANNELS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@109907@macro@IS_TIM_CLOCKSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLOCKSOURCE", + "location": { + "column": "9", + "line": "1848", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLOCKSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@110771@macro@IS_TIM_CLOCKPOLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLOCKPOLARITY", + "location": { + "column": "9", + "line": "1859", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLOCKPOLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@111266@macro@IS_TIM_CLOCKPRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLOCKPRESCALER", + "location": { + "column": "9", + "line": "1865", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLOCKPRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@111652@macro@IS_TIM_CLOCKFILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLOCKFILTER", + "location": { + "column": "9", + "line": "1870", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLOCKFILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@111726@macro@IS_TIM_CLEARINPUT_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLEARINPUT_POLARITY", + "location": { + "column": "9", + "line": "1872", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLEARINPUT_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@111943@macro@IS_TIM_CLEARINPUT_PRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLEARINPUT_PRESCALER", + "location": { + "column": "9", + "line": "1875", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLEARINPUT_PRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@112373@macro@IS_TIM_CLEARINPUT_FILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_CLEARINPUT_FILTER", + "location": { + "column": "9", + "line": "1880", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_CLEARINPUT_FILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@112448@macro@IS_TIM_OSSR_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OSSR_STATE", + "location": { + "column": "9", + "line": "1882", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OSSR_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@112613@macro@IS_TIM_OSSI_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OSSI_STATE", + "location": { + "column": "9", + "line": "1885", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OSSI_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@112778@macro@IS_TIM_LOCK_LEVEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_LOCK_LEVEL", + "location": { + "column": "9", + "line": "1888", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_LOCK_LEVEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113114@macro@IS_TIM_BREAK_FILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK_FILTER", + "location": { + "column": "9", + "line": "1893", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK_FILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113189@macro@IS_TIM_BREAK_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK_STATE", + "location": { + "column": "9", + "line": "1896", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113356@macro@IS_TIM_BREAK_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK_POLARITY", + "location": { + "column": "9", + "line": "1899", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113541@macro@IS_TIM_BREAK2_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK2_STATE", + "location": { + "column": "9", + "line": "1902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK2_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113710@macro@IS_TIM_BREAK2_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK2_POLARITY", + "location": { + "column": "9", + "line": "1905", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK2_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@113899@macro@IS_TIM_AUTOMATIC_OUTPUT_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_AUTOMATIC_OUTPUT_STATE", + "location": { + "column": "9", + "line": "1908", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_AUTOMATIC_OUTPUT_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@114098@macro@IS_TIM_GROUPCH5", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_GROUPCH5", + "location": { + "column": "9", + "line": "1911", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_GROUPCH5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@114183@macro@IS_TIM_TRGO_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRGO_SOURCE", + "location": { + "column": "9", + "line": "1913", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRGO_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@114821@macro@IS_TIM_TRGO2_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRGO2_SOURCE", + "location": { + "column": "9", + "line": "1922", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRGO2_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@116587@macro@IS_TIM_MSM_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_MSM_STATE", + "location": { + "column": "9", + "line": "1940", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_MSM_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@116770@macro@IS_TIM_SLAVE_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_SLAVE_MODE", + "location": { + "column": "9", + "line": "1943", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_SLAVE_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@117278@macro@IS_TIM_PWM_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_PWM_MODE", + "location": { + "column": "9", + "line": "1950", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_PWM_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@117795@macro@IS_TIM_OC_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_OC_MODE", + "location": { + "column": "9", + "line": "1957", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_OC_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@118489@macro@IS_TIM_TRIGGER_SELECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRIGGER_SELECTION", + "location": { + "column": "9", + "line": "1966", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRIGGER_SELECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@119212@macro@IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", + "location": { + "column": "9", + "line": "1975", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@119720@macro@IS_TIM_TRIGGERPOLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRIGGERPOLARITY", + "location": { + "column": "9", + "line": "1981", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRIGGERPOLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@120248@macro@IS_TIM_TRIGGERPRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRIGGERPRESCALER", + "location": { + "column": "9", + "line": "1987", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRIGGERPRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@120650@macro@IS_TIM_TRIGGERFILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TRIGGERFILTER", + "location": { + "column": "9", + "line": "1992", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TRIGGERFILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@120721@macro@IS_TIM_TI1SELECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_TI1SELECTION", + "location": { + "column": "9", + "line": "1994", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_TI1SELECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@120928@macro@IS_TIM_DMA_LENGTH", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_DMA_LENGTH", + "location": { + "column": "9", + "line": "1997", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_DMA_LENGTH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@122708@macro@IS_TIM_DMA_DATA_LENGTH", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_DMA_DATA_LENGTH", + "location": { + "column": "9", + "line": "2016", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_DMA_DATA_LENGTH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@122796@macro@IS_TIM_IC_FILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_IC_FILTER", + "location": { + "column": "9", + "line": "2018", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_IC_FILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@122865@macro@IS_TIM_DEADTIME", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_DEADTIME", + "location": { + "column": "9", + "line": "2020", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_DEADTIME", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@122935@macro@IS_TIM_BREAK_SYSTEM", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAK_SYSTEM", + "location": { + "column": "9", + "line": "2022", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_BREAK_SYSTEM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@123343@macro@IS_TIM_SLAVEMODE_TRIGGER_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_SLAVEMODE_TRIGGER_ENABLED", + "location": { + "column": "9", + "line": "2027", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "IS_TIM_SLAVEMODE_TRIGGER_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@123559@macro@TIM_SET_ICPRESCALERVALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SET_ICPRESCALERVALUE", + "location": { + "column": "9", + "line": "2030", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SET_ICPRESCALERVALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@123968@macro@TIM_RESET_ICPRESCALERVALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_RESET_ICPRESCALERVALUE", + "location": { + "column": "9", + "line": "2036", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_RESET_ICPRESCALERVALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@124376@macro@TIM_SET_CAPTUREPOLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_SET_CAPTUREPOLARITY", + "location": { + "column": "9", + "line": "2042", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_SET_CAPTUREPOLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@124806@macro@TIM_RESET_CAPTUREPOLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_RESET_CAPTUREPOLARITY", + "location": { + "column": "9", + "line": "2048", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_RESET_CAPTUREPOLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@125273@macro@TIM_CHANNEL_STATE_GET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_STATE_GET", + "location": { + "column": "9", + "line": "2054", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_STATE_GET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@125727@macro@TIM_CHANNEL_STATE_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_STATE_SET", + "location": { + "column": "9", + "line": "2062", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_STATE_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@126345@macro@TIM_CHANNEL_STATE_SET_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_STATE_SET_ALL", + "location": { + "column": "9", + "line": "2070", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_STATE_SET_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@127720@macro@TIM_CHANNEL_N_STATE_GET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_N_STATE_GET", + "location": { + "column": "9", + "line": "2085", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_N_STATE_GET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@128036@macro@TIM_CHANNEL_N_STATE_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_N_STATE_SET", + "location": { + "column": "9", + "line": "2091", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_N_STATE_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim.h@128468@macro@TIM_CHANNEL_N_STATE_SET_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_CHANNEL_N_STATE_SET_ALL", + "location": { + "column": "9", + "line": "2097", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CHANNEL_N_STATE_SET_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Init", "What": "Function", "defdec": "Dec", - "display": "void __iar_Unlockdynamiclock(__iar_Rmtx *)", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *)", "location": { - "column": "28", - "line": "379", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + "column": "19", + "line": "2126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" }, - "name": "__iar_Unlockdynamiclock", - "origin": "system_include", + "name": "HAL_TIM_Base_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2127", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2127", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2131", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2131", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2134", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2134", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2135", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2135", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2138", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2138", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2161", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2161", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2177", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2177", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2179", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2179", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2180", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2180", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *, TIM_Encoder_InitTypeDef *)", + "location": { + "column": "19", + "line": "2235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *, TIM_Encoder_InitTypeDef *)", + "location": { + "column": "19", + "line": "2235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "2236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2243", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2243", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2244", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2244", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t *, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "2246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IRQHandler(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2258", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IRQHandler(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2258", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2268", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2268", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *, const TIM_OC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *, const TIM_IC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *, const TIM_IC_InitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *, TIM_OnePulse_InitTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2274", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *, TIM_OnePulse_InitTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2274", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigOCrefClear", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *, const TIM_ClearInputConfigTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2276", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigOCrefClear", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigOCrefClear", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *, const TIM_ClearInputConfigTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2276", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigOCrefClear", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigClockSource", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *, const TIM_ClockConfigTypeDef *)", + "location": { + "column": "19", + "line": "2279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigClockSource", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigClockSource", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *, const TIM_ClockConfigTypeDef *)", + "location": { + "column": "19", + "line": "2279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigClockSource", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigTI1Input", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2280", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigTI1Input", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ConfigTI1Input", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2280", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ConfigTI1Input", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_SlaveConfigSynchro", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", + "location": { + "column": "19", + "line": "2281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_SlaveConfigSynchro", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_SlaveConfigSynchro", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", + "location": { + "column": "19", + "line": "2281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_SlaveConfigSynchro", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_SlaveConfigSynchro_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro_IT(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", + "location": { + "column": "19", + "line": "2282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_SlaveConfigSynchro_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_SlaveConfigSynchro_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchro_IT(TIM_HandleTypeDef *, const TIM_SlaveConfigTypeDef *)", + "location": { + "column": "19", + "line": "2282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_SlaveConfigSynchro_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_WriteStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t)", + "location": { + "column": "19", + "line": "2283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_WriteStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_WriteStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t)", + "location": { + "column": "19", + "line": "2283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_WriteStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_MultiWriteStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiWriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_MultiWriteStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_MultiWriteStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiWriteStart(TIM_HandleTypeDef *, uint32_t, uint32_t, const uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2285", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_MultiWriteStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_WriteStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_WriteStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_WriteStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_WriteStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_ReadStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t)", + "location": { + "column": "19", + "line": "2289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_ReadStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_ReadStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t)", + "location": { + "column": "19", + "line": "2289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_ReadStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_MultiReadStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_MultiReadStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_MultiReadStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_MultiReadStart(TIM_HandleTypeDef *, uint32_t, uint32_t, uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "2291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_MultiReadStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_ReadStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_ReadStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurst_ReadStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurst_ReadStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GenerateEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GenerateEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GenerateEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "2295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GenerateEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ReadCapturedValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_TIM_ReadCapturedValue(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "2296", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ReadCapturedValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ReadCapturedValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_TIM_ReadCapturedValue(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "2296", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ReadCapturedValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PeriodElapsedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PeriodElapsedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PeriodElapsedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PeriodElapsedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PeriodElapsedHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PeriodElapsedHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PeriodElapsedHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PeriodElapsedHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PeriodElapsedHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PeriodElapsedHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_DelayElapsedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_DelayElapsedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_DelayElapsedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_DelayElapsedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_CaptureCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_CaptureCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_CaptureCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_CaptureCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_CaptureHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_CaptureHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_CaptureHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_CaptureHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_IC_CaptureHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_CaptureHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_PulseFinishedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_PulseFinishedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_PulseFinishedCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_PulseFinishedCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_PulseFinishedHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_PulseFinishedHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_PulseFinishedHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_PulseFinishedHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_PWM_PulseFinishedHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_PulseFinishedHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_TriggerCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_TriggerCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_TriggerCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_TriggerCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_TriggerHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_TriggerHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2314", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_TriggerHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_TriggerHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_TriggerHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2314", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_TriggerHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2315", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_ErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2315", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_ErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Base_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Base_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_PWM_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_PWM_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2336", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_IC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2336", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_IC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_OnePulse_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_OnePulse_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_Encoder_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "2338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_Encoder_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GetActiveChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ActiveChannel HAL_TIM_GetActiveChannel(const TIM_HandleTypeDef *)", + "location": { + "column": "23", + "line": "2341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GetActiveChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GetActiveChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ActiveChannel HAL_TIM_GetActiveChannel(const TIM_HandleTypeDef *)", + "location": { + "column": "23", + "line": "2341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GetActiveChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GetChannelState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ChannelStateTypeDef HAL_TIM_GetChannelState(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "29", + "line": "2342", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GetChannelState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_GetChannelState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ChannelStateTypeDef HAL_TIM_GetChannelState(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "29", + "line": "2342", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_GetChannelState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurstState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_DMABurstStateTypeDef HAL_TIM_DMABurstState(const TIM_HandleTypeDef *)", + "location": { + "column": "30", + "line": "2343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurstState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIM_DMABurstState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_DMABurstStateTypeDef HAL_TIM_DMABurstState(const TIM_HandleTypeDef *)", + "location": { + "column": "30", + "line": "2343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "HAL_TIM_DMABurstState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_Base_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_Base_SetConfig(TIM_TypeDef *, const TIM_Base_InitTypeDef *)", + "location": { + "column": "6", + "line": "2357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_Base_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_Base_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_Base_SetConfig(TIM_TypeDef *, const TIM_Base_InitTypeDef *)", + "location": { + "column": "6", + "line": "2357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_Base_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_TI1_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_TI1_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TI1_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_TI1_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_TI1_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_TI1_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_OC2_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_OC2_SetConfig(TIM_TypeDef *, const TIM_OC_InitTypeDef *)", + "location": { + "column": "6", + "line": "2359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OC2_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_OC2_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_OC2_SetConfig(TIM_TypeDef *, const TIM_OC_InitTypeDef *)", + "location": { + "column": "6", + "line": "2359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_OC2_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_ETR_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_ETR_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETR_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_ETR_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_ETR_SetConfig(TIM_TypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_ETR_SetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMADelayPulseHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMADelayPulseHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2363", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMADelayPulseHalfCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMADelayPulseHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMADelayPulseHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2363", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMADelayPulseHalfCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMAError", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMAError(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMAError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMAError", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMAError(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMAError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMACaptureCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMACaptureCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMACaptureCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMACaptureCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMACaptureCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMACaptureCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMACaptureHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMACaptureHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2366", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMACaptureHalfCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_DMACaptureHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_DMACaptureHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "2366", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_DMACaptureHalfCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_CCxChannelCmd", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_CCxChannelCmd(TIM_TypeDef *, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2367", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCxChannelCmd", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIM_CCxChannelCmd", + "What": "Function", + "defdec": "Dec", + "display": "void TIM_CCxChannelCmd(TIM_TypeDef *, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "2367", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim.h" + }, + "name": "TIM_CCxChannelCmd", + "origin": "user_include", "scope": null }, { @@ -282993,9702 +278387,6 @@ "origin": "user_include", "scope": null }, - { - "ID": "c:cmsis_iccarm.h@1193@macro@__CMSIS_ICCARM_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__CMSIS_ICCARM_H__", - "location": { - "column": "9", - "line": "28", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__CMSIS_ICCARM_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1333@macro@__IAR_FT", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_FT", - "location": { - "column": "9", - "line": "36", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__IAR_FT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1418@macro@__ICCARM_V8", - "What": "MacroDef", - "defdec": "Def", - "display": "__ICCARM_V8", - "location": { - "column": "11", - "line": "39", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ICCARM_V8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1525@macro@__ALIGNED", - "What": "MacroDef", - "defdec": "Def", - "display": "__ALIGNED", - "location": { - "column": "13", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ALIGNED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@2417@macro@__ARM_ARCH_7EM__", - "What": "MacroDef", - "defdec": "Def", - "display": "__ARM_ARCH_7EM__", - "location": { - "column": "17", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ARM_ARCH_7EM__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3636@macro@__IAR_M0_FAMILY", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_M0_FAMILY", - "location": { - "column": "11", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__IAR_M0_FAMILY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3693@macro@__ASM", - "What": "MacroDef", - "defdec": "Def", - "display": "__ASM", - "location": { - "column": "11", - "line": "111", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ASM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3756@macro@__COMPILER_BARRIER", - "What": "MacroDef", - "defdec": "Def", - "display": "__COMPILER_BARRIER", - "location": { - "column": "11", - "line": "115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__COMPILER_BARRIER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3846@macro@__INLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__INLINE", - "location": { - "column": "11", - "line": "119", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__INLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3927@macro@__NO_RETURN", - "What": "MacroDef", - "defdec": "Def", - "display": "__NO_RETURN", - "location": { - "column": "13", - "line": "124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__NO_RETURN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4114@macro@__PACKED", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED", - "location": { - "column": "13", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PACKED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4319@macro@__PACKED_STRUCT", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED_STRUCT", - "location": { - "column": "13", - "line": "141", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PACKED_STRUCT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4551@macro@__PACKED_UNION", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED_UNION", - "location": { - "column": "13", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PACKED_UNION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4775@macro@__RESTRICT", - "What": "MacroDef", - "defdec": "Def", - "display": "__RESTRICT", - "location": { - "column": "13", - "line": "159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__RESTRICT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4960@macro@__STATIC_INLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__STATIC_INLINE", - "location": { - "column": "11", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STATIC_INLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5042@macro@__FORCEINLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__FORCEINLINE", - "location": { - "column": "11", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__FORCEINLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5142@macro@__STATIC_FORCEINLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__STATIC_FORCEINLINE", - "location": { - "column": "11", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STATIC_FORCEINLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint16_read", - "What": "Function", - "defdec": "Def", - "display": "uint16_t __iar_uint16_read(const void *)", - "location": { - "column": "19", - "line": "181", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__iar_uint16_read", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5420@macro@__UNALIGNED_UINT16_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT16_READ", - "location": { - "column": "9", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT16_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint16_write", - "What": "Function", - "defdec": "Def", - "display": "void __iar_uint16_write(const void *, uint16_t)", - "location": { - "column": "15", - "line": "193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__iar_uint16_write", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5712@macro@__UNALIGNED_UINT16_WRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT16_WRITE", - "location": { - "column": "9", - "line": "198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT16_WRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint32_read", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __iar_uint32_read(const void *)", - "location": { - "column": "19", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__iar_uint32_read", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6000@macro@__UNALIGNED_UINT32_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32_READ", - "location": { - "column": "9", - "line": "209", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint32_write", - "What": "Function", - "defdec": "Def", - "display": "void __iar_uint32_write(const void *, uint32_t)", - "location": { - "column": "15", - "line": "215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__iar_uint32_write", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6290@macro@__UNALIGNED_UINT32_WRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32_WRITE", - "location": { - "column": "9", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32_WRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@__iar_u32", - "What": "Struct", - "defdec": "Def", - "display": "__iar_u32", - "location": { - "column": "18", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "members": [ - { - "ID": "c:@S@__iar_u32@FI@v", - "What": "FieldDecl", - "defdec": "Def", - "display": "v", - "location": { - "column": "39", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "v", - "origin": "user_include", - "scope": "__iar_u32" - } - ], - "name": "__iar_u32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6539@macro@__UNALIGNED_UINT32", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32", - "location": { - "column": "9", - "line": "228", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6656@macro@__USED", - "What": "MacroDef", - "defdec": "Def", - "display": "__USED", - "location": { - "column": "13", - "line": "233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6932@macro@__PROGRAM_START", - "What": "MacroDef", - "defdec": "Def", - "display": "__PROGRAM_START", - "location": { - "column": "9", - "line": "248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PROGRAM_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7019@macro@__INITIAL_SP", - "What": "MacroDef", - "defdec": "Def", - "display": "__INITIAL_SP", - "location": { - "column": "9", - "line": "252", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__INITIAL_SP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7101@macro@__STACK_LIMIT", - "What": "MacroDef", - "defdec": "Def", - "display": "__STACK_LIMIT", - "location": { - "column": "9", - "line": "256", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STACK_LIMIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7183@macro@__VECTOR_TABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__VECTOR_TABLE", - "location": { - "column": "9", - "line": "260", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__VECTOR_TABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7277@macro@__VECTOR_TABLE_ATTRIBUTE", - "What": "MacroDef", - "defdec": "Def", - "display": "__VECTOR_TABLE_ATTRIBUTE", - "location": { - "column": "9", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__VECTOR_TABLE_ATTRIBUTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7765@macro@__disable_fault_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_fault_irq", - "location": { - "column": "11", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__disable_fault_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7822@macro@__disable_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_irq", - "location": { - "column": "11", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__disable_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7885@macro@__enable_fault_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_fault_irq", - "location": { - "column": "11", - "line": "293", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__enable_fault_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7941@macro@__enable_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_irq", - "location": { - "column": "11", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__enable_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8003@macro@__arm_rsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_rsr", - "location": { - "column": "11", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__arm_rsr", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8052@macro@__arm_wsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_wsr", - "location": { - "column": "11", - "line": "296", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__arm_wsr", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8105@macro@__get_APSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_APSR", - "location": { - "column": "11", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_APSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8164@macro@__get_BASEPRI", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_BASEPRI", - "location": { - "column": "11", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_BASEPRI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8226@macro@__get_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_CONTROL", - "location": { - "column": "11", - "line": "301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_CONTROL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8288@macro@__get_FAULTMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_FAULTMASK", - "location": { - "column": "11", - "line": "302", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_FAULTMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8485@macro@__get_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_FPSCR", - "location": { - "column": "13", - "line": "306", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_FPSCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8545@macro@__set_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_FPSCR", - "location": { - "column": "13", - "line": "307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_FPSCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8731@macro@__get_IPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_IPSR", - "location": { - "column": "11", - "line": "313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_IPSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8790@macro@__get_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_MSP", - "location": { - "column": "11", - "line": "314", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_MSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9063@macro@__get_MSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_MSPLIM", - "location": { - "column": "13", - "line": "318", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_MSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9185@macro@__get_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PRIMASK", - "location": { - "column": "11", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_PRIMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9247@macro@__get_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSP", - "location": { - "column": "11", - "line": "323", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_PSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9522@macro@__get_PSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSPLIM", - "location": { - "column": "13", - "line": "328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_PSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9646@macro@__get_xPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_xPSR", - "location": { - "column": "11", - "line": "333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__get_xPSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9707@macro@__set_BASEPRI", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_BASEPRI", - "location": { - "column": "11", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_BASEPRI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9778@macro@__set_BASEPRI_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_BASEPRI_MAX", - "location": { - "column": "11", - "line": "336", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_BASEPRI_MAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9853@macro@__set_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_CONTROL", - "location": { - "column": "11", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_CONTROL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9924@macro@__set_FAULTMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_FAULTMASK", - "location": { - "column": "11", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_FAULTMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9997@macro@__set_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_MSP", - "location": { - "column": "11", - "line": "339", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_MSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10281@macro@__set_MSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_MSPLIM", - "location": { - "column": "13", - "line": "344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_MSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10423@macro@__set_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PRIMASK", - "location": { - "column": "11", - "line": "348", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_PRIMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10494@macro@__set_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PSP", - "location": { - "column": "11", - "line": "349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_PSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10776@macro@__set_PSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PSPLIM", - "location": { - "column": "13", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__set_PSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10920@macro@__TZ_get_CONTROL_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_CONTROL_NS", - "location": { - "column": "11", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_CONTROL_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10985@macro@__TZ_set_CONTROL_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_CONTROL_NS", - "location": { - "column": "11", - "line": "359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_CONTROL_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11059@macro@__TZ_get_PSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PSP_NS", - "location": { - "column": "11", - "line": "360", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11120@macro@__TZ_set_PSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PSP_NS", - "location": { - "column": "11", - "line": "361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11190@macro@__TZ_get_MSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_MSP_NS", - "location": { - "column": "11", - "line": "362", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_MSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11251@macro@__TZ_set_MSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_MSP_NS", - "location": { - "column": "11", - "line": "363", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_MSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11321@macro@__TZ_get_SP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_SP_NS", - "location": { - "column": "11", - "line": "364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_SP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11381@macro@__TZ_set_SP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_SP_NS", - "location": { - "column": "11", - "line": "365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_SP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11450@macro@__TZ_get_PRIMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PRIMASK_NS", - "location": { - "column": "11", - "line": "366", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PRIMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11515@macro@__TZ_set_PRIMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PRIMASK_NS", - "location": { - "column": "11", - "line": "367", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PRIMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11589@macro@__TZ_get_BASEPRI_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_BASEPRI_NS", - "location": { - "column": "11", - "line": "368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_BASEPRI_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11654@macro@__TZ_set_BASEPRI_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_BASEPRI_NS", - "location": { - "column": "11", - "line": "369", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_BASEPRI_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11728@macro@__TZ_get_FAULTMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_FAULTMASK_NS", - "location": { - "column": "11", - "line": "370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_FAULTMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11795@macro@__TZ_set_FAULTMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_FAULTMASK_NS", - "location": { - "column": "11", - "line": "371", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_FAULTMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12088@macro@__TZ_get_PSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PSPLIM_NS", - "location": { - "column": "13", - "line": "376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12132@macro@__TZ_set_PSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PSPLIM_NS", - "location": { - "column": "13", - "line": "377", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12343@macro@__TZ_get_MSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_MSPLIM_NS", - "location": { - "column": "11", - "line": "383", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_get_MSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12407@macro@__TZ_set_MSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_MSPLIM_NS", - "location": { - "column": "11", - "line": "384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__TZ_set_MSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12482@macro@__NOP", - "What": "MacroDef", - "defdec": "Def", - "display": "__NOP", - "location": { - "column": "11", - "line": "386", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__NOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12532@macro@__CLZ", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLZ", - "location": { - "column": "11", - "line": "388", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__CLZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12571@macro@__CLREX", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLREX", - "location": { - "column": "11", - "line": "389", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__CLREX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12614@macro@__DMB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DMB", - "location": { - "column": "11", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__DMB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12653@macro@__DSB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DSB", - "location": { - "column": "11", - "line": "392", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__DSB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12692@macro@__ISB", - "What": "MacroDef", - "defdec": "Def", - "display": "__ISB", - "location": { - "column": "11", - "line": "393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ISB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12733@macro@__LDREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXB", - "location": { - "column": "11", - "line": "395", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDREXB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12775@macro@__LDREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXH", - "location": { - "column": "11", - "line": "396", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDREXH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12817@macro@__LDREXW", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXW", - "location": { - "column": "11", - "line": "397", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDREXW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12860@macro@__RBIT", - "What": "MacroDef", - "defdec": "Def", - "display": "__RBIT", - "location": { - "column": "11", - "line": "399", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__RBIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12900@macro@__REV", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV", - "location": { - "column": "11", - "line": "400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12939@macro@__REV16", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV16", - "location": { - "column": "11", - "line": "401", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__REV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__REVSH", - "What": "Function", - "defdec": "Def", - "display": "int16_t __REVSH(int16_t)", - "location": { - "column": "20", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__REVSH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13083@macro@__ROR", - "What": "MacroDef", - "defdec": "Def", - "display": "__ROR", - "location": { - "column": "11", - "line": "408", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__ROR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13122@macro@__RRX", - "What": "MacroDef", - "defdec": "Def", - "display": "__RRX", - "location": { - "column": "11", - "line": "409", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__RRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13163@macro@__SEV", - "What": "MacroDef", - "defdec": "Def", - "display": "__SEV", - "location": { - "column": "11", - "line": "411", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13230@macro@__SSAT", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSAT", - "location": { - "column": "13", - "line": "414", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SSAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13282@macro@__STREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXB", - "location": { - "column": "11", - "line": "417", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STREXB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13324@macro@__STREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXH", - "location": { - "column": "11", - "line": "418", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STREXH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13366@macro@__STREXW", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXW", - "location": { - "column": "11", - "line": "419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STREXW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13435@macro@__USAT", - "What": "MacroDef", - "defdec": "Def", - "display": "__USAT", - "location": { - "column": "13", - "line": "422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13487@macro@__WFE", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFE", - "location": { - "column": "11", - "line": "425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__WFE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13526@macro@__WFI", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFI", - "location": { - "column": "11", - "line": "426", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__WFI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13590@macro@__SADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__SADD8", - "location": { - "column": "13", - "line": "429", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13633@macro@__QADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__QADD8", - "location": { - "column": "13", - "line": "430", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13676@macro@__SHADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHADD8", - "location": { - "column": "13", - "line": "431", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13720@macro@__UADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__UADD8", - "location": { - "column": "13", - "line": "432", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13763@macro@__UQADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQADD8", - "location": { - "column": "13", - "line": "433", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13807@macro@__UHADD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHADD8", - "location": { - "column": "13", - "line": "434", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHADD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13851@macro@__SSUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSUB8", - "location": { - "column": "13", - "line": "435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SSUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13894@macro@__QSUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__QSUB8", - "location": { - "column": "13", - "line": "436", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QSUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13937@macro@__SHSUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHSUB8", - "location": { - "column": "13", - "line": "437", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHSUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@13981@macro@__USUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__USUB8", - "location": { - "column": "13", - "line": "438", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14024@macro@__UQSUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQSUB8", - "location": { - "column": "13", - "line": "439", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQSUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14068@macro@__UHSUB8", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHSUB8", - "location": { - "column": "13", - "line": "440", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHSUB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14112@macro@__SADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SADD16", - "location": { - "column": "13", - "line": "441", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14156@macro@__QADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__QADD16", - "location": { - "column": "13", - "line": "442", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14200@macro@__SHADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHADD16", - "location": { - "column": "13", - "line": "443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14245@macro@__UADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UADD16", - "location": { - "column": "13", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14289@macro@__UQADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQADD16", - "location": { - "column": "13", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14334@macro@__UHADD16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHADD16", - "location": { - "column": "13", - "line": "446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHADD16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14379@macro@__SSUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSUB16", - "location": { - "column": "13", - "line": "447", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SSUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14423@macro@__QSUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__QSUB16", - "location": { - "column": "13", - "line": "448", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QSUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14467@macro@__SHSUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHSUB16", - "location": { - "column": "13", - "line": "449", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHSUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14512@macro@__USUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__USUB16", - "location": { - "column": "13", - "line": "450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14556@macro@__UQSUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQSUB16", - "location": { - "column": "13", - "line": "451", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQSUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14601@macro@__UHSUB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHSUB16", - "location": { - "column": "13", - "line": "452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHSUB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14646@macro@__SASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SASX", - "location": { - "column": "13", - "line": "453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14688@macro@__QASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__QASX", - "location": { - "column": "13", - "line": "454", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14730@macro@__SHASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHASX", - "location": { - "column": "13", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14773@macro@__UASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__UASX", - "location": { - "column": "13", - "line": "456", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14815@macro@__UQASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQASX", - "location": { - "column": "13", - "line": "457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14858@macro@__UHASX", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHASX", - "location": { - "column": "13", - "line": "458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHASX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14901@macro@__SSAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSAX", - "location": { - "column": "13", - "line": "459", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SSAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14943@macro@__QSAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__QSAX", - "location": { - "column": "13", - "line": "460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QSAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@14985@macro@__SHSAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SHSAX", - "location": { - "column": "13", - "line": "461", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SHSAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15028@macro@__USAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__USAX", - "location": { - "column": "13", - "line": "462", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15070@macro@__UQSAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__UQSAX", - "location": { - "column": "13", - "line": "463", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UQSAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15113@macro@__UHSAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__UHSAX", - "location": { - "column": "13", - "line": "464", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UHSAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15156@macro@__USAD8", - "What": "MacroDef", - "defdec": "Def", - "display": "__USAD8", - "location": { - "column": "13", - "line": "465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USAD8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15199@macro@__USADA8", - "What": "MacroDef", - "defdec": "Def", - "display": "__USADA8", - "location": { - "column": "13", - "line": "466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USADA8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15243@macro@__SSAT16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSAT16", - "location": { - "column": "13", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SSAT16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15287@macro@__USAT16", - "What": "MacroDef", - "defdec": "Def", - "display": "__USAT16", - "location": { - "column": "13", - "line": "468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__USAT16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15331@macro@__UXTB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UXTB16", - "location": { - "column": "13", - "line": "469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UXTB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15375@macro@__UXTAB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__UXTAB16", - "location": { - "column": "13", - "line": "470", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__UXTAB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15420@macro@__SXTB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SXTB16", - "location": { - "column": "13", - "line": "471", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SXTB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15464@macro@__SXTAB16", - "What": "MacroDef", - "defdec": "Def", - "display": "__SXTAB16", - "location": { - "column": "13", - "line": "472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SXTAB16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15509@macro@__SMUAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMUAD", - "location": { - "column": "13", - "line": "473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMUAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15552@macro@__SMUADX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMUADX", - "location": { - "column": "13", - "line": "474", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMUADX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15596@macro@__SMMLA", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMMLA", - "location": { - "column": "13", - "line": "475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMMLA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15639@macro@__SMLAD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLAD", - "location": { - "column": "13", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15682@macro@__SMLADX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLADX", - "location": { - "column": "13", - "line": "477", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLADX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15726@macro@__SMLALD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLALD", - "location": { - "column": "13", - "line": "478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLALD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15770@macro@__SMLALDX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLALDX", - "location": { - "column": "13", - "line": "479", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLALDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15815@macro@__SMUSD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMUSD", - "location": { - "column": "13", - "line": "480", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMUSD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15858@macro@__SMUSDX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMUSDX", - "location": { - "column": "13", - "line": "481", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMUSDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15902@macro@__SMLSD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLSD", - "location": { - "column": "13", - "line": "482", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLSD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15945@macro@__SMLSDX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLSDX", - "location": { - "column": "13", - "line": "483", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLSDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@15989@macro@__SMLSLD", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLSLD", - "location": { - "column": "13", - "line": "484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLSLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16033@macro@__SMLSLDX", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMLSLDX", - "location": { - "column": "13", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SMLSLDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16078@macro@__SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "__SEL", - "location": { - "column": "13", - "line": "486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16119@macro@__QADD", - "What": "MacroDef", - "defdec": "Def", - "display": "__QADD", - "location": { - "column": "13", - "line": "487", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QADD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16161@macro@__QSUB", - "What": "MacroDef", - "defdec": "Def", - "display": "__QSUB", - "location": { - "column": "13", - "line": "488", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__QSUB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16203@macro@__PKHBT", - "What": "MacroDef", - "defdec": "Def", - "display": "__PKHBT", - "location": { - "column": "13", - "line": "489", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PKHBT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@16246@macro@__PKHTB", - "What": "MacroDef", - "defdec": "Def", - "display": "__PKHTB", - "location": { - "column": "13", - "line": "490", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__PKHTB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@24670@macro@__BKPT", - "What": "MacroDef", - "defdec": "Def", - "display": "__BKPT", - "location": { - "column": "9", - "line": "794", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__BKPT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__LDRBT", - "What": "Function", - "defdec": "Def", - "display": "uint8_t __LDRBT(volatile uint8_t *)", - "location": { - "column": "20", - "line": "835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDRBT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@25613@F@__LDRBT@res", - "What": "Variable", - "defdec": "Def", - "display": "res", - "location": { - "column": "14", - "line": "837", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "res", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__LDRHT", - "What": "Function", - "defdec": "Def", - "display": "uint16_t __LDRHT(volatile uint16_t *)", - "location": { - "column": "21", - "line": "842", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDRHT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@25793@F@__LDRHT@res", - "What": "Variable", - "defdec": "Def", - "display": "res", - "location": { - "column": "14", - "line": "844", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "res", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__LDRT", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __LDRT(volatile uint32_t *)", - "location": { - "column": "21", - "line": "849", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__LDRT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@25973@F@__LDRT@res", - "What": "Variable", - "defdec": "Def", - "display": "res", - "location": { - "column": "14", - "line": "851", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "res", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__STRBT", - "What": "Function", - "defdec": "Def", - "display": "void __STRBT(uint8_t, volatile uint8_t *)", - "location": { - "column": "17", - "line": "856", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STRBT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__STRHT", - "What": "Function", - "defdec": "Def", - "display": "void __STRHT(uint16_t, volatile uint16_t *)", - "location": { - "column": "17", - "line": "861", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STRHT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__STRT", - "What": "Function", - "defdec": "Def", - "display": "void __STRT(uint32_t, volatile uint32_t *)", - "location": { - "column": "17", - "line": "866", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" - }, - "name": "__STRT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@801@macro@STM32L4xx_HAL_ADC_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_ADC_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "STM32L4xx_HAL_ADC_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_OversamplingTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_OversamplingTypeDef@FI@Ratio", - "What": "FieldDecl", - "defdec": "Def", - "display": "Ratio", - "location": { - "column": "12", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Ratio", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" - }, - { - "ID": "c:@SA@ADC_OversamplingTypeDef@FI@RightBitShift", - "What": "FieldDecl", - "defdec": "Def", - "display": "RightBitShift", - "location": { - "column": "12", - "line": "54", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "RightBitShift", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" - }, - { - "ID": "c:@SA@ADC_OversamplingTypeDef@FI@TriggeredMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "TriggeredMode", - "location": { - "column": "12", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "TriggeredMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" - }, - { - "ID": "c:@SA@ADC_OversamplingTypeDef@FI@OversamplingStopReset", - "What": "FieldDecl", - "defdec": "Def", - "display": "OversamplingStopReset", - "location": { - "column": "12", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "OversamplingStopReset", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_OversamplingTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_OversamplingTypeDef", - "location": { - "column": "3", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OversamplingTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "86", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_InitTypeDef@FI@ClockPrescaler", - "What": "FieldDecl", - "defdec": "Def", - "display": "ClockPrescaler", - "location": { - "column": "12", - "line": "88", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ClockPrescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@Resolution", - "What": "FieldDecl", - "defdec": "Def", - "display": "Resolution", - "location": { - "column": "12", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Resolution", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@DataAlign", - "What": "FieldDecl", - "defdec": "Def", - "display": "DataAlign", - "location": { - "column": "12", - "line": "102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "DataAlign", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@ScanConvMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ScanConvMode", - "location": { - "column": "12", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ScanConvMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@EOCSelection", - "What": "FieldDecl", - "defdec": "Def", - "display": "EOCSelection", - "location": { - "column": "12", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "EOCSelection", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@LowPowerAutoWait", - "What": "FieldDecl", - "defdec": "Def", - "display": "LowPowerAutoWait", - "location": { - "column": "19", - "line": "117", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "LowPowerAutoWait", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@ContinuousConvMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ContinuousConvMode", - "location": { - "column": "19", - "line": "129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ContinuousConvMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@NbrOfConversion", - "What": "FieldDecl", - "defdec": "Def", - "display": "NbrOfConversion", - "location": { - "column": "12", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "NbrOfConversion", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@DiscontinuousConvMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "DiscontinuousConvMode", - "location": { - "column": "19", - "line": "139", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "DiscontinuousConvMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@NbrOfDiscConversion", - "What": "FieldDecl", - "defdec": "Def", - "display": "NbrOfDiscConversion", - "location": { - "column": "12", - "line": "145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "NbrOfDiscConversion", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@ExternalTrigConv", - "What": "FieldDecl", - "defdec": "Def", - "display": "ExternalTrigConv", - "location": { - "column": "12", - "line": "149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ExternalTrigConv", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@ExternalTrigConvEdge", - "What": "FieldDecl", - "defdec": "Def", - "display": "ExternalTrigConvEdge", - "location": { - "column": "12", - "line": "154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ExternalTrigConvEdge", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@DMAContinuousRequests", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMAContinuousRequests", - "location": { - "column": "19", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "DMAContinuousRequests", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@Overrun", - "What": "FieldDecl", - "defdec": "Def", - "display": "Overrun", - "location": { - "column": "12", - "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Overrun", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@OversamplingMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "OversamplingMode", - "location": { - "column": "19", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "OversamplingMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - }, - { - "ID": "c:@SA@ADC_InitTypeDef@FI@Oversampling", - "What": "FieldDecl", - "defdec": "Def", - "display": "Oversampling", - "location": { - "column": "27", - "line": "178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Oversampling", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_InitTypeDef", - "location": { - "column": "3", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Channel", - "What": "FieldDecl", - "defdec": "Def", - "display": "Channel", - "location": { - "column": "12", - "line": "202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Channel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Rank", - "What": "FieldDecl", - "defdec": "Def", - "display": "Rank", - "location": { - "column": "12", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Rank", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@SamplingTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "SamplingTime", - "location": { - "column": "12", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "SamplingTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@SingleDiff", - "What": "FieldDecl", - "defdec": "Def", - "display": "SingleDiff", - "location": { - "column": "12", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "SingleDiff", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@OffsetNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "OffsetNumber", - "location": { - "column": "12", - "line": "234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "OffsetNumber", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - }, - { - "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Offset", - "What": "FieldDecl", - "defdec": "Def", - "display": "Offset", - "location": { - "column": "12", - "line": "238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Offset", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_ChannelConfTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_ChannelConfTypeDef", - "location": { - "column": "3", - "line": "245", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ChannelConfTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@WatchdogNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "WatchdogNumber", - "location": { - "column": "12", - "line": "255", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "WatchdogNumber", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@WatchdogMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "WatchdogMode", - "location": { - "column": "12", - "line": "260", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "WatchdogMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@Channel", - "What": "FieldDecl", - "defdec": "Def", - "display": "Channel", - "location": { - "column": "12", - "line": "265", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Channel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@ITMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ITMode", - "location": { - "column": "19", - "line": "270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ITMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@HighThreshold", - "What": "FieldDecl", - "defdec": "Def", - "display": "HighThreshold", - "location": { - "column": "12", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HighThreshold", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - }, - { - "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@LowThreshold", - "What": "FieldDecl", - "defdec": "Def", - "display": "LowThreshold", - "location": { - "column": "12", - "line": "283", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "LowThreshold", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_AnalogWDGConfTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_AnalogWDGConfTypeDef", - "location": { - "column": "3", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_AnalogWDGConfTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_InjectionConfigTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_InjectionConfigTypeDef@FI@ContextQueue", - "What": "FieldDecl", - "defdec": "Def", - "display": "ContextQueue", - "location": { - "column": "12", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ContextQueue", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_298_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfigTypeDef@FI@ChannelCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "ChannelCount", - "location": { - "column": "12", - "line": "304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ChannelCount", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_298_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_InjectionConfigTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_InjectionConfigTypeDef", - "location": { - "column": "3", - "line": "305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_InjectionConfigTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@26587@macro@HAL_ADC_STATE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_RESET", - "location": { - "column": "9", - "line": "320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@26689@macro@HAL_ADC_STATE_READY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_READY", - "location": { - "column": "9", - "line": "321", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@26784@macro@HAL_ADC_STATE_BUSY_INTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_BUSY_INTERNAL", - "location": { - "column": "9", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_BUSY_INTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@26919@macro@HAL_ADC_STATE_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_TIMEOUT", - "location": { - "column": "9", - "line": "323", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27034@macro@HAL_ADC_STATE_ERROR_INTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_ERROR_INTERNAL", - "location": { - "column": "9", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_ERROR_INTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27126@macro@HAL_ADC_STATE_ERROR_CONFIG", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_ERROR_CONFIG", - "location": { - "column": "9", - "line": "327", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_ERROR_CONFIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27223@macro@HAL_ADC_STATE_ERROR_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_ERROR_DMA", - "location": { - "column": "9", - "line": "328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_ERROR_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27347@macro@HAL_ADC_STATE_REG_BUSY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_REG_BUSY", - "location": { - "column": "9", - "line": "331", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_REG_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27681@macro@HAL_ADC_STATE_REG_EOC", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_REG_EOC", - "location": { - "column": "9", - "line": "333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_REG_EOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27790@macro@HAL_ADC_STATE_REG_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_REG_OVR", - "location": { - "column": "9", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_REG_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@27875@macro@HAL_ADC_STATE_REG_EOSMP", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_REG_EOSMP", - "location": { - "column": "9", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_REG_EOSMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28044@macro@HAL_ADC_STATE_INJ_BUSY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_INJ_BUSY", - "location": { - "column": "9", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_INJ_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28383@macro@HAL_ADC_STATE_INJ_EOC", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_INJ_EOC", - "location": { - "column": "9", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_INJ_EOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28493@macro@HAL_ADC_STATE_INJ_JQOVF", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_INJ_JQOVF", - "location": { - "column": "9", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_INJ_JQOVF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28634@macro@HAL_ADC_STATE_AWD1", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_AWD1", - "location": { - "column": "9", - "line": "344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_AWD1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28750@macro@HAL_ADC_STATE_AWD2", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_AWD2", - "location": { - "column": "9", - "line": "345", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_AWD2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@28866@macro@HAL_ADC_STATE_AWD3", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_AWD3", - "location": { - "column": "9", - "line": "346", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_AWD3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@29016@macro@HAL_ADC_STATE_MULTIMODE_SLAVE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_STATE_MULTIMODE_SLAVE", - "location": { - "column": "9", - "line": "349", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_STATE_MULTIMODE_SLAVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_HandleTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "361", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@Instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "Instance", - "location": { - "column": "34", - "line": "364", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Instance", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@Init", - "What": "FieldDecl", - "defdec": "Def", - "display": "Init", - "location": { - "column": "33", - "line": "365", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Init", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@DMA_Handle", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA_Handle", - "location": { - "column": "34", - "line": "366", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "DMA_Handle", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@Lock", - "What": "FieldDecl", - "defdec": "Def", - "display": "Lock", - "location": { - "column": "33", - "line": "367", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "Lock", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@State", - "What": "FieldDecl", - "defdec": "Def", - "display": "State", - "location": { - "column": "33", - "line": "368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "State", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@ErrorCode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ErrorCode", - "location": { - "column": "33", - "line": "369", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ErrorCode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - }, - { - "ID": "c:@SA@ADC_HandleTypeDef@FI@InjectionConfig", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectionConfig", - "location": { - "column": "33", - "line": "370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "InjectionConfig", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_HandleTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_HandleTypeDef", - "location": { - "column": "3", - "line": "384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_HandleTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@33179@macro@HAL_ADC_ERROR_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_ERROR_NONE", - "location": { - "column": "9", - "line": "426", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ERROR_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@33282@macro@HAL_ADC_ERROR_INTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_ERROR_INTERNAL", - "location": { - "column": "9", - "line": "427", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ERROR_INTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@33493@macro@HAL_ADC_ERROR_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_ERROR_OVR", - "location": { - "column": "9", - "line": "429", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ERROR_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@33596@macro@HAL_ADC_ERROR_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_ERROR_DMA", - "location": { - "column": "9", - "line": "430", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ERROR_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@33699@macro@HAL_ADC_ERROR_JQOVF", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_ERROR_JQOVF", - "location": { - "column": "9", - "line": "431", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ERROR_JQOVF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34080@macro@ADC_CLOCK_SYNC_PCLK_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_SYNC_PCLK_DIV1", - "location": { - "column": "9", - "line": "442", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_SYNC_PCLK_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34226@macro@ADC_CLOCK_SYNC_PCLK_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_SYNC_PCLK_DIV2", - "location": { - "column": "9", - "line": "443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_SYNC_PCLK_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34383@macro@ADC_CLOCK_SYNC_PCLK_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_SYNC_PCLK_DIV4", - "location": { - "column": "9", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_SYNC_PCLK_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34542@macro@ADC_CLOCK_ASYNC_DIV1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV1", - "location": { - "column": "9", - "line": "446", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34666@macro@ADC_CLOCK_ASYNC_DIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV2", - "location": { - "column": "9", - "line": "447", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34803@macro@ADC_CLOCK_ASYNC_DIV4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV4", - "location": { - "column": "9", - "line": "448", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@34940@macro@ADC_CLOCK_ASYNC_DIV6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV6", - "location": { - "column": "9", - "line": "449", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35077@macro@ADC_CLOCK_ASYNC_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV8", - "location": { - "column": "9", - "line": "450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35214@macro@ADC_CLOCK_ASYNC_DIV10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV10", - "location": { - "column": "9", - "line": "451", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35351@macro@ADC_CLOCK_ASYNC_DIV12", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV12", - "location": { - "column": "9", - "line": "452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35488@macro@ADC_CLOCK_ASYNC_DIV16", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV16", - "location": { - "column": "9", - "line": "453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35625@macro@ADC_CLOCK_ASYNC_DIV32", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV32", - "location": { - "column": "9", - "line": "454", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35762@macro@ADC_CLOCK_ASYNC_DIV64", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV64", - "location": { - "column": "9", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV64", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@35899@macro@ADC_CLOCK_ASYNC_DIV128", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV128", - "location": { - "column": "9", - "line": "456", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV128", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36036@macro@ADC_CLOCK_ASYNC_DIV256", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCK_ASYNC_DIV256", - "location": { - "column": "9", - "line": "457", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLOCK_ASYNC_DIV256", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36272@macro@ADC_RESOLUTION_12B", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RESOLUTION_12B", - "location": { - "column": "9", - "line": "465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RESOLUTION_12B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36372@macro@ADC_RESOLUTION_10B", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RESOLUTION_10B", - "location": { - "column": "9", - "line": "466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RESOLUTION_10B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36472@macro@ADC_RESOLUTION_8B", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RESOLUTION_8B", - "location": { - "column": "9", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RESOLUTION_8B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36572@macro@ADC_RESOLUTION_6B", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RESOLUTION_6B", - "location": { - "column": "9", - "line": "468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RESOLUTION_6B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36774@macro@ADC_DATAALIGN_RIGHT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DATAALIGN_RIGHT", - "location": { - "column": "9", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DATAALIGN_RIGHT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@36934@macro@ADC_DATAALIGN_LEFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DATAALIGN_LEFT", - "location": { - "column": "9", - "line": "477", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DATAALIGN_LEFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@37188@macro@ADC_SCAN_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SCAN_DISABLE", - "location": { - "column": "9", - "line": "485", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SCAN_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@37270@macro@ADC_SCAN_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SCAN_ENABLE", - "location": { - "column": "9", - "line": "486", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SCAN_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@37534@macro@ADC_SOFTWARE_START", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SOFTWARE_START", - "location": { - "column": "9", - "line": "495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SOFTWARE_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@37681@macro@ADC_EXTERNALTRIG_T1_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T1_TRGO", - "location": { - "column": "9", - "line": "496", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T1_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@37896@macro@ADC_EXTERNALTRIG_T1_TRGO2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T1_TRGO2", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T1_TRGO2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@38112@macro@ADC_EXTERNALTRIG_T1_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T1_CC1", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T1_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@38389@macro@ADC_EXTERNALTRIG_T1_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T1_CC2", - "location": { - "column": "9", - "line": "499", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T1_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@38666@macro@ADC_EXTERNALTRIG_T1_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T1_CC3", - "location": { - "column": "9", - "line": "500", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T1_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@38943@macro@ADC_EXTERNALTRIG_T2_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T2_TRGO", - "location": { - "column": "9", - "line": "501", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T2_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@39158@macro@ADC_EXTERNALTRIG_T2_CC2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T2_CC2", - "location": { - "column": "9", - "line": "502", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T2_CC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@39435@macro@ADC_EXTERNALTRIG_T3_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T3_TRGO", - "location": { - "column": "9", - "line": "503", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T3_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@39650@macro@ADC_EXTERNALTRIG_T3_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T3_CC4", - "location": { - "column": "9", - "line": "504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T3_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@39927@macro@ADC_EXTERNALTRIG_T4_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T4_TRGO", - "location": { - "column": "9", - "line": "505", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T4_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@40142@macro@ADC_EXTERNALTRIG_T4_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T4_CC4", - "location": { - "column": "9", - "line": "506", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T4_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@40419@macro@ADC_EXTERNALTRIG_T6_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T6_TRGO", - "location": { - "column": "9", - "line": "507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T6_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@40634@macro@ADC_EXTERNALTRIG_T8_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T8_TRGO", - "location": { - "column": "9", - "line": "508", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T8_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@40849@macro@ADC_EXTERNALTRIG_T8_TRGO2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T8_TRGO2", - "location": { - "column": "9", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T8_TRGO2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@41065@macro@ADC_EXTERNALTRIG_T15_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_T15_TRGO", - "location": { - "column": "9", - "line": "510", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_T15_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@41281@macro@ADC_EXTERNALTRIG_EXT_IT11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIG_EXT_IT11", - "location": { - "column": "9", - "line": "511", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIG_EXT_IT11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@41664@macro@ADC_EXTERNALTRIGCONVEDGE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGCONVEDGE_NONE", - "location": { - "column": "9", - "line": "519", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIGCONVEDGE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@41813@macro@ADC_EXTERNALTRIGCONVEDGE_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGCONVEDGE_RISING", - "location": { - "column": "9", - "line": "520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIGCONVEDGE_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@41971@macro@ADC_EXTERNALTRIGCONVEDGE_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGCONVEDGE_FALLING", - "location": { - "column": "9", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIGCONVEDGE_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@42130@macro@ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", - "location": { - "column": "9", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@42437@macro@ADC_EOC_SINGLE_CONV", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EOC_SINGLE_CONV", - "location": { - "column": "9", - "line": "530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EOC_SINGLE_CONV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@42544@macro@ADC_EOC_SEQ_CONV", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EOC_SEQ_CONV", - "location": { - "column": "9", - "line": "531", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EOC_SEQ_CONV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@42795@macro@ADC_OVR_DATA_PRESERVED", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVR_DATA_PRESERVED", - "location": { - "column": "9", - "line": "539", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVR_DATA_PRESERVED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@42944@macro@ADC_OVR_DATA_OVERWRITTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVR_DATA_OVERWRITTEN", - "location": { - "column": "9", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVR_DATA_OVERWRITTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43207@macro@ADC_REGULAR_RANK_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_1", - "location": { - "column": "9", - "line": "548", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43315@macro@ADC_REGULAR_RANK_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_2", - "location": { - "column": "9", - "line": "549", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43423@macro@ADC_REGULAR_RANK_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_3", - "location": { - "column": "9", - "line": "550", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43531@macro@ADC_REGULAR_RANK_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_4", - "location": { - "column": "9", - "line": "551", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43639@macro@ADC_REGULAR_RANK_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_5", - "location": { - "column": "9", - "line": "552", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43747@macro@ADC_REGULAR_RANK_6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_6", - "location": { - "column": "9", - "line": "553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43855@macro@ADC_REGULAR_RANK_7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_7", - "location": { - "column": "9", - "line": "554", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@43963@macro@ADC_REGULAR_RANK_8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_8", - "location": { - "column": "9", - "line": "555", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44071@macro@ADC_REGULAR_RANK_9", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_9", - "location": { - "column": "9", - "line": "556", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44179@macro@ADC_REGULAR_RANK_10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_10", - "location": { - "column": "9", - "line": "557", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44288@macro@ADC_REGULAR_RANK_11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_11", - "location": { - "column": "9", - "line": "558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44397@macro@ADC_REGULAR_RANK_12", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_12", - "location": { - "column": "9", - "line": "559", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44506@macro@ADC_REGULAR_RANK_13", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_13", - "location": { - "column": "9", - "line": "560", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44615@macro@ADC_REGULAR_RANK_14", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_14", - "location": { - "column": "9", - "line": "561", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44724@macro@ADC_REGULAR_RANK_15", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_15", - "location": { - "column": "9", - "line": "562", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@44833@macro@ADC_REGULAR_RANK_16", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_RANK_16", - "location": { - "column": "9", - "line": "563", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGULAR_RANK_16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45049@macro@ADC_SAMPLETIME_2CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_2CYCLES_5", - "location": { - "column": "9", - "line": "571", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_2CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45169@macro@ADC_SAMPLETIME_6CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_6CYCLES_5", - "location": { - "column": "9", - "line": "572", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_6CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45289@macro@ADC_SAMPLETIME_12CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_12CYCLES_5", - "location": { - "column": "9", - "line": "573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_12CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45410@macro@ADC_SAMPLETIME_24CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_24CYCLES_5", - "location": { - "column": "9", - "line": "574", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_24CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45531@macro@ADC_SAMPLETIME_47CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_47CYCLES_5", - "location": { - "column": "9", - "line": "575", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_47CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45652@macro@ADC_SAMPLETIME_92CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_92CYCLES_5", - "location": { - "column": "9", - "line": "576", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_92CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45773@macro@ADC_SAMPLETIME_247CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_247CYCLES_5", - "location": { - "column": "9", - "line": "577", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_247CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@45895@macro@ADC_SAMPLETIME_640CYCLES_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SAMPLETIME_640CYCLES_5", - "location": { - "column": "9", - "line": "578", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_SAMPLETIME_640CYCLES_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@46620@macro@ADC_CHANNEL_0", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_0", - "location": { - "column": "9", - "line": "591", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@46768@macro@ADC_CHANNEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_1", - "location": { - "column": "9", - "line": "592", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@46916@macro@ADC_CHANNEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_2", - "location": { - "column": "9", - "line": "593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47064@macro@ADC_CHANNEL_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_3", - "location": { - "column": "9", - "line": "594", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47212@macro@ADC_CHANNEL_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_4", - "location": { - "column": "9", - "line": "595", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47360@macro@ADC_CHANNEL_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_5", - "location": { - "column": "9", - "line": "596", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47508@macro@ADC_CHANNEL_6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_6", - "location": { - "column": "9", - "line": "597", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47656@macro@ADC_CHANNEL_7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_7", - "location": { - "column": "9", - "line": "598", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47804@macro@ADC_CHANNEL_8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_8", - "location": { - "column": "9", - "line": "599", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@47952@macro@ADC_CHANNEL_9", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_9", - "location": { - "column": "9", - "line": "600", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48100@macro@ADC_CHANNEL_10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_10", - "location": { - "column": "9", - "line": "601", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48248@macro@ADC_CHANNEL_11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_11", - "location": { - "column": "9", - "line": "602", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48396@macro@ADC_CHANNEL_12", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_12", - "location": { - "column": "9", - "line": "603", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48544@macro@ADC_CHANNEL_13", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_13", - "location": { - "column": "9", - "line": "604", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48692@macro@ADC_CHANNEL_14", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_14", - "location": { - "column": "9", - "line": "605", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48840@macro@ADC_CHANNEL_15", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_15", - "location": { - "column": "9", - "line": "606", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@48988@macro@ADC_CHANNEL_16", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_16", - "location": { - "column": "9", - "line": "607", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49136@macro@ADC_CHANNEL_17", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_17", - "location": { - "column": "9", - "line": "608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_17", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49284@macro@ADC_CHANNEL_18", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_18", - "location": { - "column": "9", - "line": "609", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_18", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49432@macro@ADC_CHANNEL_VREFINT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_VREFINT", - "location": { - "column": "9", - "line": "610", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_VREFINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49588@macro@ADC_CHANNEL_TEMPSENSOR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_TEMPSENSOR", - "location": { - "column": "9", - "line": "611", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_TEMPSENSOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49727@macro@ADC_CHANNEL_VBAT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_VBAT", - "location": { - "column": "9", - "line": "612", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_VBAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@49975@macro@ADC_CHANNEL_DAC1CH1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_DAC1CH1", - "location": { - "column": "9", - "line": "614", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_DAC1CH1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@50290@macro@ADC_CHANNEL_DAC1CH2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHANNEL_DAC1CH2", - "location": { - "column": "9", - "line": "615", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CHANNEL_DAC1CH2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@51431@macro@ADC_ANALOGWATCHDOG_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_1", - "location": { - "column": "9", - "line": "631", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@51526@macro@ADC_ANALOGWATCHDOG_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_2", - "location": { - "column": "9", - "line": "632", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@51621@macro@ADC_ANALOGWATCHDOG_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_3", - "location": { - "column": "9", - "line": "633", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@51816@macro@ADC_ANALOGWATCHDOG_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_NONE", - "location": { - "column": "9", - "line": "641", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52001@macro@ADC_ANALOGWATCHDOG_SINGLE_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_SINGLE_REG", - "location": { - "column": "9", - "line": "642", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_SINGLE_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52186@macro@ADC_ANALOGWATCHDOG_SINGLE_INJEC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_SINGLE_INJEC", - "location": { - "column": "9", - "line": "643", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_SINGLE_INJEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52371@macro@ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", - "location": { - "column": "9", - "line": "644", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52556@macro@ADC_ANALOGWATCHDOG_ALL_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_ALL_REG", - "location": { - "column": "9", - "line": "645", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_ALL_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52741@macro@ADC_ANALOGWATCHDOG_ALL_INJEC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_ALL_INJEC", - "location": { - "column": "9", - "line": "646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_ALL_INJEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@52926@macro@ADC_ANALOGWATCHDOG_ALL_REGINJEC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_ANALOGWATCHDOG_ALL_REGINJEC", - "location": { - "column": "9", - "line": "647", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ANALOGWATCHDOG_ALL_REGINJEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@53204@macro@ADC_OVERSAMPLING_RATIO_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_2", - "location": { - "column": "9", - "line": "655", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@53458@macro@ADC_OVERSAMPLING_RATIO_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_4", - "location": { - "column": "9", - "line": "656", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@53712@macro@ADC_OVERSAMPLING_RATIO_8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_8", - "location": { - "column": "9", - "line": "657", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@53966@macro@ADC_OVERSAMPLING_RATIO_16", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_16", - "location": { - "column": "9", - "line": "658", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@54222@macro@ADC_OVERSAMPLING_RATIO_32", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_32", - "location": { - "column": "9", - "line": "659", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@54478@macro@ADC_OVERSAMPLING_RATIO_64", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_64", - "location": { - "column": "9", - "line": "660", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_64", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@54734@macro@ADC_OVERSAMPLING_RATIO_128", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_128", - "location": { - "column": "9", - "line": "661", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_128", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@54992@macro@ADC_OVERSAMPLING_RATIO_256", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVERSAMPLING_RATIO_256", - "location": { - "column": "9", - "line": "662", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVERSAMPLING_RATIO_256", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@55348@macro@ADC_RIGHTBITSHIFT_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_NONE", - "location": { - "column": "9", - "line": "670", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@55552@macro@ADC_RIGHTBITSHIFT_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_1", - "location": { - "column": "9", - "line": "671", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@55759@macro@ADC_RIGHTBITSHIFT_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_2", - "location": { - "column": "9", - "line": "672", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@55966@macro@ADC_RIGHTBITSHIFT_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_3", - "location": { - "column": "9", - "line": "673", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@56173@macro@ADC_RIGHTBITSHIFT_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_4", - "location": { - "column": "9", - "line": "674", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@56381@macro@ADC_RIGHTBITSHIFT_5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_5", - "location": { - "column": "9", - "line": "675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@56589@macro@ADC_RIGHTBITSHIFT_6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_6", - "location": { - "column": "9", - "line": "676", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@56797@macro@ADC_RIGHTBITSHIFT_7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_7", - "location": { - "column": "9", - "line": "677", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@57006@macro@ADC_RIGHTBITSHIFT_8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RIGHTBITSHIFT_8", - "location": { - "column": "9", - "line": "678", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_RIGHTBITSHIFT_8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@57328@macro@ADC_TRIGGEREDMODE_SINGLE_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_TRIGGEREDMODE_SINGLE_TRIGGER", - "location": { - "column": "9", - "line": "686", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_TRIGGEREDMODE_SINGLE_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@57528@macro@ADC_TRIGGEREDMODE_MULTI_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_TRIGGEREDMODE_MULTI_TRIGGER", - "location": { - "column": "9", - "line": "687", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_TRIGGEREDMODE_MULTI_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@57855@macro@ADC_REGOVERSAMPLING_CONTINUED_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGOVERSAMPLING_CONTINUED_MODE", - "location": { - "column": "9", - "line": "695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGOVERSAMPLING_CONTINUED_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58002@macro@ADC_REGOVERSAMPLING_RESUMED_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGOVERSAMPLING_RESUMED_MODE", - "location": { - "column": "9", - "line": "696", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_REGOVERSAMPLING_RESUMED_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58229@macro@ADC_EOSMP_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EOSMP_EVENT", - "location": { - "column": "9", - "line": "704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_EOSMP_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58314@macro@ADC_AWD1_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD1_EVENT", - "location": { - "column": "9", - "line": "705", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_AWD1_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58453@macro@ADC_AWD2_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD2_EVENT", - "location": { - "column": "9", - "line": "706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_AWD2_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58602@macro@ADC_AWD3_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD3_EVENT", - "location": { - "column": "9", - "line": "707", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_AWD3_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58751@macro@ADC_OVR_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OVR_EVENT", - "location": { - "column": "9", - "line": "708", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_OVR_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58828@macro@ADC_JQOVF_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_JQOVF_EVENT", - "location": { - "column": "9", - "line": "709", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_JQOVF_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@58948@macro@ADC_AWD_EVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD_EVENT", - "location": { - "column": "9", - "line": "713", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_AWD_EVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59204@macro@ADC_IT_RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_RDY", - "location": { - "column": "9", - "line": "718", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59288@macro@ADC_IT_EOSMP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_EOSMP", - "location": { - "column": "9", - "line": "719", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_EOSMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59382@macro@ADC_IT_EOC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_EOC", - "location": { - "column": "9", - "line": "720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_EOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59486@macro@ADC_IT_EOS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_EOS", - "location": { - "column": "9", - "line": "721", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_EOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59603@macro@ADC_IT_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_OVR", - "location": { - "column": "9", - "line": "722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59689@macro@ADC_IT_JEOC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_JEOC", - "location": { - "column": "9", - "line": "723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_JEOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59794@macro@ADC_IT_JEOS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_JEOS", - "location": { - "column": "9", - "line": "724", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_JEOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@59912@macro@ADC_IT_AWD1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_AWD1", - "location": { - "column": "9", - "line": "725", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_AWD1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60031@macro@ADC_IT_AWD2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_AWD2", - "location": { - "column": "9", - "line": "726", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_AWD2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60156@macro@ADC_IT_AWD3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_AWD3", - "location": { - "column": "9", - "line": "727", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_AWD3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60281@macro@ADC_IT_JQOVF", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_JQOVF", - "location": { - "column": "9", - "line": "728", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_JQOVF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60393@macro@ADC_IT_AWD", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IT_AWD", - "location": { - "column": "9", - "line": "730", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IT_AWD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60666@macro@ADC_FLAG_RDY", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_RDY", - "location": { - "column": "9", - "line": "739", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_RDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60738@macro@ADC_FLAG_EOSMP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_EOSMP", - "location": { - "column": "9", - "line": "740", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_EOSMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60820@macro@ADC_FLAG_EOC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_EOC", - "location": { - "column": "9", - "line": "741", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_EOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@60912@macro@ADC_FLAG_EOS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_EOS", - "location": { - "column": "9", - "line": "742", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_EOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61017@macro@ADC_FLAG_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_OVR", - "location": { - "column": "9", - "line": "743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61091@macro@ADC_FLAG_JEOC", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_JEOC", - "location": { - "column": "9", - "line": "744", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_JEOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61184@macro@ADC_FLAG_JEOS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_JEOS", - "location": { - "column": "9", - "line": "745", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_JEOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61290@macro@ADC_FLAG_AWD1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_AWD1", - "location": { - "column": "9", - "line": "746", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_AWD1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61397@macro@ADC_FLAG_AWD2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_AWD2", - "location": { - "column": "9", - "line": "747", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_AWD2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61510@macro@ADC_FLAG_AWD3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_AWD3", - "location": { - "column": "9", - "line": "748", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_AWD3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61623@macro@ADC_FLAG_JQOVF", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_JQOVF", - "location": { - "column": "9", - "line": "749", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_JQOVF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61723@macro@ADC_FLAG_AWD", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_AWD", - "location": { - "column": "9", - "line": "751", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_AWD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@61892@macro@ADC_FLAG_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_ALL", - "location": { - "column": "9", - "line": "753", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@62265@macro@ADC_FLAG_POSTCONV_ALL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAG_POSTCONV_ALL", - "location": { - "column": "9", - "line": "758", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_FLAG_POSTCONV_ALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@63100@macro@ADC_GET_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_GET_RESOLUTION", - "location": { - "column": "9", - "line": "783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_GET_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@63378@macro@ADC_CLEAR_ERRORCODE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLEAR_ERRORCODE", - "location": { - "column": "9", - "line": "791", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_CLEAR_ERRORCODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@63628@macro@ADC_IS_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IS_ENABLE", - "location": { - "column": "9", - "line": "798", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IS_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@64114@macro@ADC_IS_CONVERSION_ONGOING_REGULAR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IS_CONVERSION_ONGOING_REGULAR", - "location": { - "column": "9", - "line": "808", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_IS_CONVERSION_ONGOING_REGULAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@64621@macro@ADC_STATE_CLR_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STATE_CLR_SET", - "location": { - "column": "9", - "line": "818", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_STATE_CLR_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@64999@macro@IS_ADC_RANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_RANGE", - "location": { - "column": "9", - "line": "826", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_RANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@65408@macro@IS_ADC_REGULAR_NB_CONV", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_REGULAR_NB_CONV", - "location": { - "column": "9", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_REGULAR_NB_CONV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@65828@macro@IS_ADC_REGULAR_DISCONT_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_REGULAR_DISCONT_NUMBER", - "location": { - "column": "9", - "line": "842", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_REGULAR_DISCONT_NUMBER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@66111@macro@IS_ADC_CLOCKPRESCALER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_CLOCKPRESCALER", - "location": { - "column": "9", - "line": "850", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_CLOCKPRESCALER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@67778@macro@IS_ADC_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_RESOLUTION", - "location": { - "column": "9", - "line": "871", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@68395@macro@IS_ADC_RESOLUTION_8_6_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_RESOLUTION_8_6_BITS", - "location": { - "column": "9", - "line": "881", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_RESOLUTION_8_6_BITS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@68797@macro@IS_ADC_DATA_ALIGN", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_DATA_ALIGN", - "location": { - "column": "9", - "line": "889", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_DATA_ALIGN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@69139@macro@IS_ADC_SCAN_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_SCAN_MODE", - "location": { - "column": "9", - "line": "897", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_SCAN_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@69522@macro@IS_ADC_EXTTRIG_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EXTTRIG_EDGE", - "location": { - "column": "9", - "line": "905", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_EXTTRIG_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@70188@macro@IS_ADC_EXTTRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EXTTRIG", - "location": { - "column": "9", - "line": "916", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_EXTTRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@72146@macro@IS_ADC_EOC_SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EOC_SELECTION", - "location": { - "column": "9", - "line": "939", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_EOC_SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@72558@macro@IS_ADC_OVERRUN", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_OVERRUN", - "location": { - "column": "9", - "line": "947", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_OVERRUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@73729@macro@IS_ADC_SAMPLE_TIME", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_SAMPLE_TIME", - "location": { - "column": "9", - "line": "966", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_SAMPLE_TIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@74652@macro@IS_ADC_REGULAR_RANK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_REGULAR_RANK", - "location": { - "column": "9", - "line": "981", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "IS_ADC_REGULAR_RANK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@76787@macro@ADC_STOP_CONVERSION_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STOP_CONVERSION_TIMEOUT", - "location": { - "column": "9", - "line": "1016", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_STOP_CONVERSION_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@77113@macro@ADC_TEMPSENSOR_DELAY_US", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_TEMPSENSOR_DELAY_US", - "location": { - "column": "9", - "line": "1021", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_TEMPSENSOR_DELAY_US", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@78210@macro@__HAL_ADC_RESET_HANDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_RESET_HANDLE_STATE", - "location": { - "column": "9", - "line": "1051", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_RESET_HANDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@79587@macro@__HAL_ADC_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_ENABLE_IT", - "location": { - "column": "9", - "line": "1073", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@80927@macro@__HAL_ADC_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_DISABLE_IT", - "location": { - "column": "9", - "line": "1094", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@82360@macro@__HAL_ADC_GET_IT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_GET_IT_SOURCE", - "location": { - "column": "9", - "line": "1114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_GET_IT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@83664@macro@__HAL_ADC_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_GET_FLAG", - "location": { - "column": "9", - "line": "1135", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@85007@macro@__HAL_ADC_CLEAR_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CLEAR_FLAG", - "location": { - "column": "9", - "line": "1157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CLEAR_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@87822@macro@__HAL_ADC_CHANNEL_TO_DECIMAL_NB", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CHANNEL_TO_DECIMAL_NB", - "location": { - "column": "9", - "line": "1217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CHANNEL_TO_DECIMAL_NB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@90616@macro@__HAL_ADC_DECIMAL_NB_TO_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_DECIMAL_NB_TO_CHANNEL", - "location": { - "column": "9", - "line": "1269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_DECIMAL_NB_TO_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@94082@macro@__HAL_ADC_IS_CHANNEL_INTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_IS_CHANNEL_INTERNAL", - "location": { - "column": "9", - "line": "1330", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_IS_CHANNEL_INTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@97844@macro@__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", - "location": { - "column": "9", - "line": "1405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@100073@macro@__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", - "location": { - "column": "9", - "line": "1442", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@101795@macro@__HAL_ADC_COMMON_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_COMMON_INSTANCE", - "location": { - "column": "9", - "line": "1473", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_COMMON_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@102913@macro@__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", - "location": { - "column": "9", - "line": "1493", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@103707@macro@__HAL_ADC_DIGITAL_SCALE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_DIGITAL_SCALE", - "location": { - "column": "9", - "line": "1509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_DIGITAL_SCALE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@104706@macro@__HAL_ADC_CONVERT_DATA_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CONVERT_DATA_RESOLUTION", - "location": { - "column": "9", - "line": "1530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CONVERT_DATA_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@105968@macro@__HAL_ADC_CALC_DATA_TO_VOLTAGE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CALC_DATA_TO_VOLTAGE", - "location": { - "column": "9", - "line": "1553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CALC_DATA_TO_VOLTAGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@107689@macro@__HAL_ADC_CALC_VREFANALOG_VOLTAGE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CALC_VREFANALOG_VOLTAGE", - "location": { - "column": "9", - "line": "1585", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CALC_VREFANALOG_VOLTAGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@110742@macro@__HAL_ADC_CALC_TEMPERATURE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CALC_TEMPERATURE", - "location": { - "column": "9", - "line": "1635", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CALC_TEMPERATURE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc.h@114368@macro@__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", - "location": { - "column": "9", - "line": "1686", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_DeInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1721", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_DeInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1721", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1722", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1742", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1742", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1743", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_PollForConversion", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1744", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_PollForConversion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_PollForConversion", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1744", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_PollForConversion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_PollForEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_PollForEvent(ADC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "25", - "line": "1745", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_PollForEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_PollForEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_PollForEvent(ADC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "25", - "line": "1745", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_PollForEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1748", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1748", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1749", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1749", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start_DMA(ADC_HandleTypeDef *, uint32_t *, uint32_t)", - "location": { - "column": "25", - "line": "1752", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Start_DMA(ADC_HandleTypeDef *, uint32_t *, uint32_t)", - "location": { - "column": "25", - "line": "1752", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1753", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1753", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_IRQHandler(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1759", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_IRQHandler(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1759", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConvCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1760", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConvCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConvCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1760", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConvCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConvCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1760", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConvCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConvHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ConvHalfCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConvHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConvHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ConvHalfCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1761", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConvHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_LevelOutOfWindowCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_LevelOutOfWindowCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1762", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_LevelOutOfWindowCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_LevelOutOfWindowCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_LevelOutOfWindowCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1762", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_LevelOutOfWindowCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ErrorCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADC_ErrorCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *, ADC_ChannelConfTypeDef *)", - "location": { - "column": "25", - "line": "1773", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *, ADC_ChannelConfTypeDef *)", - "location": { - "column": "25", - "line": "1773", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_AnalogWDGConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef *, ADC_AnalogWDGConfTypeDef *)", - "location": { - "column": "25", - "line": "1774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_AnalogWDGConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_AnalogWDGConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef *, ADC_AnalogWDGConfTypeDef *)", - "location": { - "column": "25", - "line": "1774", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_AnalogWDGConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetState(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1784", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetState(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1784", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetError(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1785", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADC_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADC_GetError(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1785", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "HAL_ADC_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_ConversionStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_ConversionStop(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "1799", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ConversionStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_ConversionStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_ConversionStop(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "1799", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_ConversionStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_Enable", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_Enable(ADC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "1800", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_Enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_Enable", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_Enable(ADC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "1800", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_Enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_Disable", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_Disable(ADC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "1801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_Disable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_Disable", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef ADC_Disable(ADC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "1801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_Disable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAConvCplt", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAConvCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1802", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAConvCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAConvCplt", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAConvCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1802", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAConvCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAHalfConvCplt", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAHalfConvCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1803", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAHalfConvCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAHalfConvCplt", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAHalfConvCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1803", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAHalfConvCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAError", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAError(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1804", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ADC_DMAError", - "What": "Function", - "defdec": "Dec", - "display": "void ADC_DMAError(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "1804", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" - }, - "name": "ADC_DMAError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@801@macro@STM32L4xx_HAL_DAC_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_DAC_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "STM32L4xx_HAL_DAC_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DAC_StateTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DAC_STATE_RESET", - "location": { - "column": "3", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_READY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DAC_STATE_READY", - "location": { - "column": "3", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DAC_STATE_BUSY", - "location": { - "column": "3", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_STATE_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_TIMEOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DAC_STATE_TIMEOUT", - "location": { - "column": "3", - "line": "54", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_STATE_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_ERROR", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DAC_STATE_ERROR", - "location": { - "column": "3", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_STATE_ERROR", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_DAC_StateTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_DAC_StateTypeDef", - "location": { - "column": "3", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_StateTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DAC_HandleTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "members": [ - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@Instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "Instance", - "location": { - "column": "32", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "Instance", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - }, - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@State", - "What": "FieldDecl", - "defdec": "Def", - "display": "State", - "location": { - "column": "31", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "State", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - }, - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@Lock", - "What": "FieldDecl", - "defdec": "Def", - "display": "Lock", - "location": { - "column": "31", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "Lock", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - }, - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@DMA_Handle1", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA_Handle1", - "location": { - "column": "32", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DMA_Handle1", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - }, - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@DMA_Handle2", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA_Handle2", - "location": { - "column": "32", - "line": "76", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DMA_Handle2", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - }, - { - "ID": "c:@SA@DAC_HandleTypeDef@FI@ErrorCode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ErrorCode", - "location": { - "column": "31", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "ErrorCode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DAC_HandleTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct DAC_HandleTypeDef", - "location": { - "column": "3", - "line": "94", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_HandleTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "members": [ - { - "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_SampleTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_SampleTime", - "location": { - "column": "12", - "line": "101", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SampleTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" - }, - { - "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_HoldTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_HoldTime", - "location": { - "column": "12", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_HoldTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" - }, - { - "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_RefreshTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_RefreshTime", - "location": { - "column": "12", - "line": "109", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_RefreshTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DAC_SampleAndHoldConfTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct DAC_SampleAndHoldConfTypeDef", - "location": { - "column": "3", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SampleAndHoldConfTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "117", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "members": [ - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_SampleAndHold", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_SampleAndHold", - "location": { - "column": "12", - "line": "124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SampleAndHold", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_Trigger", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_Trigger", - "location": { - "column": "12", - "line": "127", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_Trigger", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_OutputBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_OutputBuffer", - "location": { - "column": "12", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_OutputBuffer", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_ConnectOnChipPeripheral", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_ConnectOnChipPeripheral", - "location": { - "column": "12", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_ConnectOnChipPeripheral", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_UserTrimming", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_UserTrimming", - "location": { - "column": "12", - "line": "136", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_UserTrimming", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_TrimmingValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_TrimmingValue", - "location": { - "column": "12", - "line": "140", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TrimmingValue", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - }, - { - "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_SampleAndHoldConfig", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAC_SampleAndHoldConfig", - "location": { - "column": "33", - "line": "144", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SampleAndHoldConfig", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DAC_ChannelConfTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct DAC_ChannelConfTypeDef", - "location": { - "column": "3", - "line": "146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_ChannelConfTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@8405@macro@HAL_DAC_ERROR_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_ERROR_NONE", - "location": { - "column": "10", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ERROR_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@8498@macro@HAL_DAC_ERROR_DMAUNDERRUNCH1", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_ERROR_DMAUNDERRUNCH1", - "location": { - "column": "10", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ERROR_DMAUNDERRUNCH1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@8591@macro@HAL_DAC_ERROR_DMAUNDERRUNCH2", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_ERROR_DMAUNDERRUNCH2", - "location": { - "column": "10", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ERROR_DMAUNDERRUNCH2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@8684@macro@HAL_DAC_ERROR_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_ERROR_DMA", - "location": { - "column": "10", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ERROR_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@8777@macro@HAL_DAC_ERROR_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_ERROR_TIMEOUT", - "location": { - "column": "10", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ERROR_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@9275@macro@DAC_TRIGGER_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_NONE", - "location": { - "column": "9", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@9551@macro@DAC_TRIGGER_T2_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_T2_TRGO", - "location": { - "column": "9", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_T2_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@9707@macro@DAC_TRIGGER_T6_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_T6_TRGO", - "location": { - "column": "9", - "line": "207", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_T6_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@9863@macro@DAC_TRIGGER_T7_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_T7_TRGO", - "location": { - "column": "9", - "line": "208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_T7_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@10019@macro@DAC_TRIGGER_EXT_IT9", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_EXT_IT9", - "location": { - "column": "9", - "line": "209", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_EXT_IT9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@10182@macro@DAC_TRIGGER_SOFTWARE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIGGER_SOFTWARE", - "location": { - "column": "9", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIGGER_SOFTWARE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@16326@macro@DAC_OUTPUTBUFFER_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_OUTPUTBUFFER_ENABLE", - "location": { - "column": "9", - "line": "261", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_OUTPUTBUFFER_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@16382@macro@DAC_OUTPUTBUFFER_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_OUTPUTBUFFER_DISABLE", - "location": { - "column": "9", - "line": "262", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_OUTPUTBUFFER_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@16540@macro@DAC_CHANNEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_CHANNEL_1", - "location": { - "column": "9", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_CHANNEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17118@macro@DAC_CHANNEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_CHANNEL_2", - "location": { - "column": "9", - "line": "276", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_CHANNEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17660@macro@DAC_ALIGN_12B_R", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_ALIGN_12B_R", - "location": { - "column": "9", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_ALIGN_12B_R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17716@macro@DAC_ALIGN_12B_L", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_ALIGN_12B_L", - "location": { - "column": "9", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_ALIGN_12B_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17772@macro@DAC_ALIGN_8B_R", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_ALIGN_8B_R", - "location": { - "column": "9", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_ALIGN_8B_R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17922@macro@DAC_FLAG_DMAUDR1", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_FLAG_DMAUDR1", - "location": { - "column": "9", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_FLAG_DMAUDR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@17983@macro@DAC_FLAG_DMAUDR2", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_FLAG_DMAUDR2", - "location": { - "column": "9", - "line": "301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_FLAG_DMAUDR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18133@macro@DAC_IT_DMAUDR1", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_IT_DMAUDR1", - "location": { - "column": "9", - "line": "310", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_IT_DMAUDR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18192@macro@DAC_IT_DMAUDR2", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_IT_DMAUDR2", - "location": { - "column": "9", - "line": "311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_IT_DMAUDR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18359@macro@DAC_CHIPCONNECT_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_CHIPCONNECT_DISABLE", - "location": { - "column": "9", - "line": "320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_CHIPCONNECT_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18407@macro@DAC_CHIPCONNECT_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_CHIPCONNECT_ENABLE", - "location": { - "column": "9", - "line": "321", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_CHIPCONNECT_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18550@macro@DAC_TRIMMING_FACTORY", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIMMING_FACTORY", - "location": { - "column": "9", - "line": "330", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIMMING_FACTORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18634@macro@DAC_TRIMMING_USER", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIMMING_USER", - "location": { - "column": "9", - "line": "331", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_TRIMMING_USER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18800@macro@DAC_SAMPLEANDHOLD_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_SAMPLEANDHOLD_DISABLE", - "location": { - "column": "9", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SAMPLEANDHOLD_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@18851@macro@DAC_SAMPLEANDHOLD_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_SAMPLEANDHOLD_ENABLE", - "location": { - "column": "9", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_SAMPLEANDHOLD_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@20599@macro@__HAL_DAC_RESET_HANDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_RESET_HANDLE_STATE", - "location": { - "column": "9", - "line": "380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_RESET_HANDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@20905@macro@__HAL_DAC_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_ENABLE", - "location": { - "column": "9", - "line": "388", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@21209@macro@__HAL_DAC_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_DISABLE", - "location": { - "column": "9", - "line": "396", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@21463@macro@DAC_DHR12R1_ALIGNMENT", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_DHR12R1_ALIGNMENT", - "location": { - "column": "9", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DHR12R1_ALIGNMENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@21658@macro@DAC_DHR12R2_ALIGNMENT", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_DHR12R2_ALIGNMENT", - "location": { - "column": "9", - "line": "409", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DHR12R2_ALIGNMENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@21853@macro@DAC_DHR12RD_ALIGNMENT", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_DHR12RD_ALIGNMENT", - "location": { - "column": "9", - "line": "415", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DHR12RD_ALIGNMENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@22325@macro@__HAL_DAC_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_ENABLE_IT", - "location": { - "column": "9", - "line": "425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@22826@macro@__HAL_DAC_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_DISABLE_IT", - "location": { - "column": "9", - "line": "435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@23388@macro@__HAL_DAC_GET_IT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_GET_IT_SOURCE", - "location": { - "column": "9", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_GET_IT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@23913@macro@__HAL_DAC_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_GET_FLAG", - "location": { - "column": "9", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@24408@macro@__HAL_DAC_CLEAR_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DAC_CLEAR_FLAG", - "location": { - "column": "9", - "line": "465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "__HAL_DAC_CLEAR_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@24678@macro@IS_DAC_OUTPUT_BUFFER_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_OUTPUT_BUFFER_STATE", - "location": { - "column": "9", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "IS_DAC_OUTPUT_BUFFER_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@25371@macro@IS_DAC_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_CHANNEL", - "location": { - "column": "9", - "line": "483", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "IS_DAC_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@26091@macro@IS_DAC_ALIGN", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_ALIGN", - "location": { - "column": "9", - "line": "494", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "IS_DAC_ALIGN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@26280@macro@IS_DAC_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_DATA", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "IS_DAC_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac.h@26329@macro@IS_DAC_REFRESHTIME", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_REFRESHTIME", - "location": { - "column": "9", - "line": "500", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "IS_DAC_REFRESHTIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "519", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "519", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef *)", - "location": { - "column": "19", - "line": "520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef *, uint32_t, uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "534", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef *, uint32_t, uint32_t *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "534", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_IRQHandler(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "538", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_IRQHandler(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "538", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_SetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_SetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_SetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_SetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConvCpltCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConvCpltCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConvCpltCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConvCpltCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConvHalfCpltCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "543", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConvHalfCpltCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConvHalfCpltCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "543", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConvHalfCpltCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ErrorCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "544", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ErrorCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ErrorCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "544", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ErrorCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_DMAUnderrunCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_DMAUnderrunCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_DMAUnderrunCallbackCh1", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_DMAUnderrunCallbackCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "562", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "562", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "564", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_ConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "564", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_ConfigChannel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef *)", - "location": { - "column": "22", - "line": "573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef *)", - "location": { - "column": "22", - "line": "573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *)", - "location": { - "column": "10", - "line": "574", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DAC_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *)", - "location": { - "column": "10", - "line": "574", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "HAL_DAC_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAConvCpltCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAConvCpltCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAConvCpltCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAConvCpltCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAConvCpltCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "587", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAConvCpltCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAErrorCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAErrorCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "588", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAErrorCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAErrorCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAErrorCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "588", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAErrorCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAHalfConvCpltCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "589", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAHalfConvCpltCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAHalfConvCpltCh1", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "589", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" - }, - "name": "DAC_DMAHalfConvCpltCh1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@816@macro@STM32L4xx_HAL_DAC_EX_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_DAC_EX_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "STM32L4xx_HAL_DAC_EX_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@1532@macro@DAC_LFSRUNMASK_BIT0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BIT0", - "location": { - "column": "9", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BIT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@1707@macro@DAC_LFSRUNMASK_BITS1_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS1_0", - "location": { - "column": "9", - "line": "56", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS1_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@1886@macro@DAC_LFSRUNMASK_BITS2_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS2_0", - "location": { - "column": "9", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS2_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2065@macro@DAC_LFSRUNMASK_BITS3_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS3_0", - "location": { - "column": "9", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS3_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2244@macro@DAC_LFSRUNMASK_BITS4_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS4_0", - "location": { - "column": "9", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS4_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2423@macro@DAC_LFSRUNMASK_BITS5_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS5_0", - "location": { - "column": "9", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS5_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2602@macro@DAC_LFSRUNMASK_BITS6_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS6_0", - "location": { - "column": "9", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS6_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2781@macro@DAC_LFSRUNMASK_BITS7_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS7_0", - "location": { - "column": "9", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS7_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@2960@macro@DAC_LFSRUNMASK_BITS8_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS8_0", - "location": { - "column": "9", - "line": "63", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS8_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3139@macro@DAC_LFSRUNMASK_BITS9_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS9_0", - "location": { - "column": "9", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS9_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3318@macro@DAC_LFSRUNMASK_BITS10_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS10_0", - "location": { - "column": "9", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS10_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3498@macro@DAC_LFSRUNMASK_BITS11_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_LFSRUNMASK_BITS11_0", - "location": { - "column": "9", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_LFSRUNMASK_BITS11_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3678@macro@DAC_TRIANGLEAMPLITUDE_1", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_1", - "location": { - "column": "9", - "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3833@macro@DAC_TRIANGLEAMPLITUDE_3", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_3", - "location": { - "column": "9", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@3988@macro@DAC_TRIANGLEAMPLITUDE_7", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_7", - "location": { - "column": "9", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4143@macro@DAC_TRIANGLEAMPLITUDE_15", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_15", - "location": { - "column": "9", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4299@macro@DAC_TRIANGLEAMPLITUDE_31", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_31", - "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_31", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4455@macro@DAC_TRIANGLEAMPLITUDE_63", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_63", - "location": { - "column": "9", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_63", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4611@macro@DAC_TRIANGLEAMPLITUDE_127", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_127", - "location": { - "column": "9", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_127", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4768@macro@DAC_TRIANGLEAMPLITUDE_255", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_255", - "location": { - "column": "9", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_255", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@4925@macro@DAC_TRIANGLEAMPLITUDE_511", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_511", - "location": { - "column": "9", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_511", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@5082@macro@DAC_TRIANGLEAMPLITUDE_1023", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_1023", - "location": { - "column": "9", - "line": "76", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_1023", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@5240@macro@DAC_TRIANGLEAMPLITUDE_2047", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_2047", - "location": { - "column": "9", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_2047", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@5398@macro@DAC_TRIANGLEAMPLITUDE_4095", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_TRIANGLEAMPLITUDE_4095", - "location": { - "column": "9", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_TRIANGLEAMPLITUDE_4095", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@5968@macro@IS_DAC_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_TRIGGER", - "location": { - "column": "9", - "line": "97", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@9593@macro@IS_DAC_SAMPLETIME", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_SAMPLETIME", - "location": { - "column": "9", - "line": "146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_SAMPLETIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@9652@macro@IS_DAC_HOLDTIME", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_HOLDTIME", - "location": { - "column": "9", - "line": "148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_HOLDTIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@9711@macro@IS_DAC_SAMPLEANDHOLD", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_SAMPLEANDHOLD", - "location": { - "column": "9", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_SAMPLEANDHOLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@9868@macro@IS_DAC_TRIMMINGVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_TRIMMINGVALUE", - "location": { - "column": "9", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_TRIMMINGVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@9942@macro@IS_DAC_NEWTRIMMINGVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_NEWTRIMMINGVALUE", - "location": { - "column": "9", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_NEWTRIMMINGVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@10019@macro@IS_DAC_CHIP_CONNECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_CHIP_CONNECTION", - "location": { - "column": "9", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_CHIP_CONNECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@10188@macro@IS_DAC_TRIMMING", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_TRIMMING", - "location": { - "column": "9", - "line": "160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_TRIMMING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dac_ex.h@10341@macro@IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", - "location": { - "column": "9", - "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_TriangleWaveGenerate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_TriangleWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_TriangleWaveGenerate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_TriangleWaveGenerate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_TriangleWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_TriangleWaveGenerate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_NoiseWaveGenerate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_NoiseWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_NoiseWaveGenerate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_NoiseWaveGenerate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_NoiseWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_NoiseWaveGenerate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DualSetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_DualSetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DualSetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DualSetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_DualSetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DualSetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DualGetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DACEx_DualGetValue(DAC_HandleTypeDef *)", - "location": { - "column": "10", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DualGetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DualGetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DACEx_DualGetValue(DAC_HandleTypeDef *)", - "location": { - "column": "10", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DualGetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ConvCpltCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ConvCpltCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ConvCpltCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ConvCpltCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ConvHalfCpltCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ConvHalfCpltCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ConvHalfCpltCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ConvHalfCpltCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ErrorCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ErrorCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_ErrorCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_ErrorCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DMAUnderrunCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_DMAUnderrunCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DMAUnderrunCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_DMAUnderrunCallbackCh2", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DACEx_DMAUnderrunCallbackCh2(DAC_HandleTypeDef *)", - "location": { - "column": "6", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_DMAUnderrunCallbackCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_SelfCalibrate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_SelfCalibrate(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_SelfCalibrate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_SelfCalibrate", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_SelfCalibrate(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_SelfCalibrate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_SetUserTrimming", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_SetUserTrimming(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_SetUserTrimming", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_SetUserTrimming", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DACEx_SetUserTrimming(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_SetUserTrimming", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_GetTrimOffset", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DACEx_GetTrimOffset(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_GetTrimOffset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DACEx_GetTrimOffset", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DACEx_GetTrimOffset(DAC_HandleTypeDef *, uint32_t)", - "location": { - "column": "10", - "line": "241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "HAL_DACEx_GetTrimOffset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAConvCpltCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAConvCpltCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "262", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAConvCpltCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAConvCpltCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAConvCpltCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "262", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAConvCpltCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAErrorCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAErrorCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "263", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAErrorCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAErrorCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAErrorCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "263", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAErrorCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAHalfConvCpltCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAHalfConvCpltCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAHalfConvCpltCh2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DAC_DMAHalfConvCpltCh2", - "What": "Function", - "defdec": "Dec", - "display": "void DAC_DMAHalfConvCpltCh2(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" - }, - "name": "DAC_DMAHalfConvCpltCh2", - "origin": "user_include", - "scope": null - }, { "ID": "c:stm32l4xx_hal_gpio.h@804@macro@STM32L4xx_HAL_GPIO_H", "What": "MacroDef", @@ -294010,2457 +279708,1207 @@ "scope": null }, { - "ID": "c:string.h@100@macro@_STRING", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRING", + "ID": "c:@lora_out_buff", + "What": "Variable", + "defdec": "Dec", + "display": "lora_out_buff", "location": { - "column": "9", - "line": "4", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + "column": "17", + "line": "6", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "_STRING", - "origin": "system_include", + "name": "lora_out_buff", + "origin": "project_file", "scope": null }, { - "ID": "c:string.h@344@macro@NULL", - "What": "MacroDef", + "ID": "c:@uart_devices", + "What": "Variable", + "defdec": "Dec", + "display": "uart_devices", + "location": { + "column": "25", + "line": "7", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "uart_devices", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@send_uart_pack", + "What": "Function", + "defdec": "Dec", + "display": "void send_uart_pack(device_handle, FRT_MsgFunctionCode_e, const void *, u_int16_t)", + "location": { + "column": "13", + "line": "10", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "send_uart_pack", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_MsgProc_ReadRegister", + "What": "Function", + "defdec": "Dec", + "display": "void FRT_MsgProc_ReadRegister(device_handle, void *)", + "location": { + "column": "13", + "line": "11", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_MsgProc_ReadRegister", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_MsgProc_WriteRegister", + "What": "Function", + "defdec": "Dec", + "display": "void FRT_MsgProc_WriteRegister(device_handle, void *)", + "location": { + "column": "13", + "line": "12", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_MsgProc_WriteRegister", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadReg", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadReg(unsigned char)", + "location": { + "column": "18", + "line": "13", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadReg", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegCurrent", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegCurrent(void *)", + "location": { + "column": "18", + "line": "15", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegMaxCurrent", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegMaxCurrent(void *)", + "location": { + "column": "18", + "line": "16", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegMaxCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegPulseCount", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegPulseCount(void *)", + "location": { + "column": "18", + "line": "17", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegPulseCount", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_V", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegBat_V(void *)", + "location": { + "column": "18", + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegBat_V", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_Charge", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegBat_Charge(void *)", + "location": { + "column": "18", + "line": "19", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegBat_Charge", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegMACINFO", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_ReadRegMACINFO(void *)", + "location": { + "column": "18", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegMACINFO", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegDeviceAddr", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_WriteRegDeviceAddr(void *)", + "location": { + "column": "18", + "line": "22", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegDeviceAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegNetId", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_WriteRegNetId(void *)", + "location": { + "column": "18", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegNetId", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegMaxCurrent", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_WriteRegMaxCurrent(void *)", + "location": { + "column": "18", + "line": "24", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegMaxCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegPulseCount", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_WriteRegPulseCount(void *)", + "location": { + "column": "18", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegPulseCount", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegReboot", + "What": "Function", + "defdec": "Dec", + "display": "u_int16_t FRT_WriteRegReboot(void *)", + "location": { + "column": "18", + "line": "26", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegReboot", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@pdebug_mcs_info", + "What": "Function", + "defdec": "Dec", + "display": "void pdebug_mcs_info(void)", + "location": { + "column": "13", + "line": "28", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pdebug_mcs_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@g_stMcs_Para", + "What": "Variable", "defdec": "Def", - "display": "NULL", + "display": "g_stMcs_Para", + "location": { + "column": "10", + "line": "30", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "g_stMcs_Para", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@g_MsgTbl", + "What": "Variable", + "defdec": "Def", + "display": "g_MsgTbl", + "location": { + "column": "27", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "g_MsgTbl", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@g_RegTbl", + "What": "Variable", + "defdec": "Def", + "display": "g_RegTbl", + "location": { + "column": "20", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "g_RegTbl", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@g_Write_RegTbl", + "What": "Variable", + "defdec": "Def", + "display": "g_Write_RegTbl", + "location": { + "column": "20", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "g_Write_RegTbl", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@CRC16", + "What": "Function", + "defdec": "Def", + "display": "unsigned short CRC16(unsigned char *, unsigned char)", + "location": { + "column": "16", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "CRC16", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@2728@F@CRC16@crc", + "What": "Variable", + "defdec": "Def", + "display": "crc", + "location": { + "column": "17", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "crc", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@2757@F@CRC16@i", + "What": "Variable", + "defdec": "Def", + "display": "i", + "location": { + "column": "16", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "i", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@2757@F@CRC16@j", + "What": "Variable", + "defdec": "Dec", + "display": "j", + "location": { + "column": "19", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "j", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_swap_endian_16", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_swap_endian_16(u_int16_t)", + "location": { + "column": "18", + "line": "89", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_swap_endian_16", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegCurrent", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegCurrent(void *)", + "location": { + "column": "18", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@3341@F@FRT_ReadRegCurrent@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "101", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegMaxCurrent", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegMaxCurrent(void *)", + "location": { + "column": "18", + "line": "110", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegMaxCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@3611@F@FRT_ReadRegMaxCurrent@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegPulseCount", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegPulseCount(void *)", + "location": { + "column": "18", + "line": "121", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegPulseCount", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@3891@F@FRT_ReadRegPulseCount@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_V", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegBat_V(void *)", + "location": { + "column": "18", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegBat_V", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@4134@F@FRT_ReadRegBat_V@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "134", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegBat_Charge", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegBat_Charge(void *)", + "location": { + "column": "18", + "line": "143", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegBat_Charge", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@4472@F@FRT_ReadRegBat_Charge@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadRegMACINFO", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadRegMACINFO(void *)", + "location": { + "column": "18", + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_ReadRegMACINFO", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@4713@F@FRT_ReadRegMACINFO@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "17", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegDeviceAddr", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_WriteRegDeviceAddr(void *)", + "location": { + "column": "18", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegDeviceAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5010@F@FRT_WriteRegDeviceAddr@pMsgAddr", + "What": "Variable", + "defdec": "Def", + "display": "pMsgAddr", + "location": { + "column": "15", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pMsgAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5054@F@FRT_WriteRegDeviceAddr@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegNetId", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_WriteRegNetId(void *)", + "location": { + "column": "18", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegNetId", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5384@F@FRT_WriteRegNetId@pMsgAddr", + "What": "Variable", + "defdec": "Def", + "display": "pMsgAddr", + "location": { + "column": "15", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pMsgAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5428@F@FRT_WriteRegNetId@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegMaxCurrent", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_WriteRegMaxCurrent(void *)", + "location": { + "column": "18", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegMaxCurrent", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5744@F@FRT_WriteRegMaxCurrent@pMsgAddr", + "What": "Variable", + "defdec": "Def", + "display": "pMsgAddr", + "location": { + "column": "15", + "line": "208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pMsgAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@5788@F@FRT_WriteRegMaxCurrent@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "209", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegPulseCount", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_WriteRegPulseCount(void *)", + "location": { + "column": "18", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegPulseCount", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@6051@F@FRT_WriteRegPulseCount@pMsgAddr", + "What": "Variable", + "defdec": "Def", + "display": "pMsgAddr", + "location": { + "column": "15", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pMsgAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@6095@F@FRT_WriteRegPulseCount@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_WriteRegReboot", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_WriteRegReboot(void *)", + "location": { + "column": "18", + "line": "236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "FRT_WriteRegReboot", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@6349@F@FRT_WriteRegReboot@pMsgAddr", + "What": "Variable", + "defdec": "Def", + "display": "pMsgAddr", + "location": { + "column": "15", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pMsgAddr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@6393@F@FRT_WriteRegReboot@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@send_uart_pack", + "What": "Function", + "defdec": "Def", + "display": "void send_uart_pack(device_handle, FRT_MsgFunctionCode_e, const void *, u_int16_t)", + "location": { + "column": "13", + "line": "257", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "send_uart_pack", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@6861@F@send_uart_pack@pack", + "What": "Variable", + "defdec": "Def", + "display": "pack", + "location": { + "column": "29", + "line": "260", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pack", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_ReadReg", + "What": "Function", + "defdec": "Def", + "display": "u_int16_t FRT_ReadReg(unsigned char)", "location": { "column": "11", - "line": "20", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + "line": "279", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "NULL", - "origin": "system_include", + "name": "FRT_ReadReg", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@memcmp", + "ID": "c:frt_protocol.c@7614@F@FRT_ReadReg@i", + "What": "Variable", + "defdec": "Def", + "display": "i", + "location": { + "column": "19", + "line": "281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "i", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_MsgProc_ReadRegister", "What": "Function", - "defdec": "Dec", - "display": "int memcmp(const void *, const void *, size_t)", + "defdec": "Def", + "display": "void FRT_MsgProc_ReadRegister(device_handle, void *)", "location": { - "column": "45", - "line": "38", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + "column": "6", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "memcmp", - "origin": "system_include", + "name": "FRT_MsgProc_ReadRegister", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@memcpy", + "ID": "c:frt_protocol.c@8050@F@FRT_MsgProc_ReadRegister@data", + "What": "Variable", + "defdec": "Def", + "display": "data", + "location": { + "column": "14", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@8090@F@FRT_MsgProc_ReadRegister@start_reg_addr", + "What": "Variable", + "defdec": "Def", + "display": "start_reg_addr", + "location": { + "column": "15", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "start_reg_addr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@8147@F@FRT_MsgProc_ReadRegister@reg_num", + "What": "Variable", + "defdec": "Def", + "display": "reg_num", + "location": { + "column": "15", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "reg_num", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@8551@F@FRT_MsgProc_ReadRegister@reg_value_buff", + "What": "Variable", + "defdec": "Def", + "display": "reg_value_buff", + "location": { + "column": "21", + "line": "313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "reg_value_buff", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@8663@F@FRT_MsgProc_ReadRegister@pos", + "What": "Variable", + "defdec": "Def", + "display": "pos", + "location": { + "column": "19", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "pos", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@FRT_MsgProc_WriteRegister", "What": "Function", - "defdec": "Dec", - "display": "void * memcpy(void *restrict, const void *restrict, size_t)", - "location": { - "column": "45", - "line": "40", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "memcpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memmove", - "What": "Function", - "defdec": "Dec", - "display": "void * memmove(void *, const void *, size_t)", - "location": { - "column": "45", - "line": "43", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "memmove", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memset", - "What": "Function", - "defdec": "Dec", - "display": "void * memset(void *, int, size_t)", - "location": { - "column": "45", - "line": "45", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "memset", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcat", - "What": "Function", - "defdec": "Dec", - "display": "char * strcat(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "46", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcat", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcmp", - "What": "Function", - "defdec": "Dec", - "display": "int strcmp(const char *, const char *)", - "location": { - "column": "45", - "line": "48", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcoll", - "What": "Function", - "defdec": "Dec", - "display": "int strcoll(const char *, const char *)", - "location": { - "column": "45", - "line": "49", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcoll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcpy", - "What": "Function", - "defdec": "Dec", - "display": "char * strcpy(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "50", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcspn", - "What": "Function", - "defdec": "Dec", - "display": "size_t strcspn(const char *, const char *)", - "location": { - "column": "45", - "line": "52", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcspn", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strerror", - "What": "Function", - "defdec": "Dec", - "display": "char * strerror(int)", - "location": { - "column": "45", - "line": "53", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strerror", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strlen", - "What": "Function", - "defdec": "Dec", - "display": "size_t strlen(const char *)", - "location": { - "column": "45", - "line": "54", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strlen", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncat", - "What": "Function", - "defdec": "Dec", - "display": "char * strncat(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "55", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strncat", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncmp", - "What": "Function", - "defdec": "Dec", - "display": "int strncmp(const char *, const char *, size_t)", - "location": { - "column": "45", - "line": "58", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strncmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncpy", - "What": "Function", - "defdec": "Dec", - "display": "char * strncpy(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "60", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strncpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strspn", - "What": "Function", - "defdec": "Dec", - "display": "size_t strspn(const char *, const char *)", - "location": { - "column": "45", - "line": "63", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strspn", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtok", - "What": "Function", - "defdec": "Dec", - "display": "char * strtok(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "64", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strtok", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strxfrm", - "What": "Function", - "defdec": "Dec", - "display": "size_t strxfrm(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "66", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strxfrm", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strdup", - "What": "Function", - "defdec": "Dec", - "display": "char * strdup(const char *)", - "location": { - "column": "45", - "line": "70", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strdup", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcasecmp", - "What": "Function", - "defdec": "Dec", - "display": "int strcasecmp(const char *, const char *)", - "location": { - "column": "45", - "line": "71", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strcasecmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncasecmp", - "What": "Function", - "defdec": "Dec", - "display": "int strncasecmp(const char *, const char *, size_t)", - "location": { - "column": "45", - "line": "73", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strncasecmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtok_r", - "What": "Function", - "defdec": "Dec", - "display": "char * strtok_r(char *, const char *, char **)", - "location": { - "column": "45", - "line": "75", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strtok_r", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strnlen", - "What": "Function", - "defdec": "Dec", - "display": "size_t strnlen(const char *, size_t)", - "location": { - "column": "45", - "line": "77", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strnlen", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memchr", - "What": "Function", - "defdec": "Dec", - "display": "void * memchr(const void *, int, size_t)", - "location": { - "column": "37", - "line": "171", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "memchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strchr", - "What": "Function", - "defdec": "Dec", - "display": "char * strchr(const char *, int)", - "location": { - "column": "37", - "line": "172", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strpbrk", - "What": "Function", - "defdec": "Dec", - "display": "char * strpbrk(const char *, const char *)", - "location": { - "column": "37", - "line": "173", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strpbrk", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strrchr", - "What": "Function", - "defdec": "Dec", - "display": "char * strrchr(const char *, int)", - "location": { - "column": "37", - "line": "174", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strrchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strstr", - "What": "Function", - "defdec": "Dec", - "display": "char * strstr(const char *, const char *)", - "location": { - "column": "37", - "line": "175", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" - }, - "name": "strstr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@816@macro@STM32L4xx_HAL_ADC_EX_H", - "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_ADC_EX_H", + "display": "void FRT_MsgProc_WriteRegister(device_handle, void *)", "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "6", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "STM32L4xx_HAL_ADC_EX_H", - "origin": "user_include", + "name": "FRT_MsgProc_WriteRegister", + "origin": "project_file", "scope": null }, { - "ID": "c:@SA@ADC_InjOversamplingTypeDef", - "What": "Struct", + "ID": "c:frt_protocol.c@9332@F@FRT_MsgProc_WriteRegister@data", + "What": "Variable", "defdec": "Def", - "display": "", + "display": "data", "location": { - "column": "9", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "14", + "line": "339", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "members": [ - { - "ID": "c:@SA@ADC_InjOversamplingTypeDef@FI@Ratio", - "What": "FieldDecl", - "defdec": "Def", - "display": "Ratio", - "location": { - "column": "12", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "Ratio", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_46_9" - }, - { - "ID": "c:@SA@ADC_InjOversamplingTypeDef@FI@RightBitShift", - "What": "FieldDecl", - "defdec": "Def", - "display": "RightBitShift", - "location": { - "column": "12", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "RightBitShift", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_46_9" - } - ], - "name": "", - "origin": "user_include", + "name": "data", + "origin": "project_file", "scope": null }, { - "ID": "c:@T@ADC_InjOversamplingTypeDef", - "What": "Typedef", + "ID": "c:frt_protocol.c@9372@F@FRT_MsgProc_WriteRegister@start_reg_addr", + "What": "Variable", "defdec": "Def", - "display": "struct ADC_InjOversamplingTypeDef", + "display": "start_reg_addr", "location": { - "column": "3", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "15", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "ADC_InjOversamplingTypeDef", - "origin": "user_include", + "name": "start_reg_addr", + "origin": "project_file", "scope": null }, { - "ID": "c:@SA@ADC_InjectionConfTypeDef", - "What": "Struct", + "ID": "c:frt_protocol.c@9429@F@FRT_MsgProc_WriteRegister@reg_num", + "What": "Variable", "defdec": "Def", - "display": "", + "display": "reg_num", "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "15", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "members": [ - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedChannel", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedChannel", - "location": { - "column": "12", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedChannel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedRank", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedRank", - "location": { - "column": "12", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedRank", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedSamplingTime", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedSamplingTime", - "location": { - "column": "12", - "line": "82", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedSamplingTime", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedSingleDiff", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedSingleDiff", - "location": { - "column": "12", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedSingleDiff", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedOffsetNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedOffsetNumber", - "location": { - "column": "12", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedOffsetNumber", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedOffset", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedOffset", - "location": { - "column": "12", - "line": "109", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedOffset", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedNbrOfConversion", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedNbrOfConversion", - "location": { - "column": "12", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedNbrOfConversion", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedDiscontinuousConvMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjectedDiscontinuousConvMode", - "location": { - "column": "19", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjectedDiscontinuousConvMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@AutoInjectedConv", - "What": "FieldDecl", - "defdec": "Def", - "display": "AutoInjectedConv", - "location": { - "column": "19", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "AutoInjectedConv", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@QueueInjectedContext", - "What": "FieldDecl", - "defdec": "Def", - "display": "QueueInjectedContext", - "location": { - "column": "19", - "line": "141", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "QueueInjectedContext", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@ExternalTrigInjecConv", - "What": "FieldDecl", - "defdec": "Def", - "display": "ExternalTrigInjecConv", - "location": { - "column": "12", - "line": "152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ExternalTrigInjecConv", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@ExternalTrigInjecConvEdge", - "What": "FieldDecl", - "defdec": "Def", - "display": "ExternalTrigInjecConvEdge", - "location": { - "column": "12", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ExternalTrigInjecConvEdge", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjecOversamplingMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjecOversamplingMode", - "location": { - "column": "19", - "line": "164", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjecOversamplingMode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - }, - { - "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjecOversampling", - "What": "FieldDecl", - "defdec": "Def", - "display": "InjecOversampling", - "location": { - "column": "31", - "line": "168", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "InjecOversampling", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" - } - ], - "name": "", - "origin": "user_include", + "name": "reg_num", + "origin": "project_file", "scope": null }, { - "ID": "c:@T@ADC_InjectionConfTypeDef", - "What": "Typedef", + "ID": "c:frt_protocol.c@9478@F@FRT_MsgProc_WriteRegister@byte_num", + "What": "Variable", "defdec": "Def", - "display": "struct ADC_InjectionConfTypeDef", + "display": "byte_num", "location": { - "column": "3", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_InjectionConfTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@17300@macro@ADC_INJECTED_SOFTWARE_START", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_SOFTWARE_START", - "location": { - "column": "9", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_SOFTWARE_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@17440@macro@ADC_EXTERNALTRIGINJEC_T1_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T1_TRGO", - "location": { - "column": "9", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T1_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@17656@macro@ADC_EXTERNALTRIGINJEC_T1_TRGO2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T1_TRGO2", - "location": { - "column": "9", - "line": "212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T1_TRGO2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@17873@macro@ADC_EXTERNALTRIGINJEC_T1_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T1_CC4", - "location": { - "column": "9", - "line": "213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T1_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@18151@macro@ADC_EXTERNALTRIGINJEC_T2_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T2_TRGO", - "location": { - "column": "9", - "line": "214", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T2_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@18367@macro@ADC_EXTERNALTRIGINJEC_T2_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T2_CC1", - "location": { - "column": "9", - "line": "215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T2_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@18645@macro@ADC_EXTERNALTRIGINJEC_T3_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T3_TRGO", - "location": { - "column": "9", - "line": "216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T3_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@18861@macro@ADC_EXTERNALTRIGINJEC_T3_CC1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T3_CC1", - "location": { - "column": "9", - "line": "217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T3_CC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@19139@macro@ADC_EXTERNALTRIGINJEC_T3_CC3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T3_CC3", - "location": { - "column": "9", - "line": "218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T3_CC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@19417@macro@ADC_EXTERNALTRIGINJEC_T3_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T3_CC4", - "location": { - "column": "9", - "line": "219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T3_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@19695@macro@ADC_EXTERNALTRIGINJEC_T4_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T4_TRGO", - "location": { - "column": "9", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T4_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@19911@macro@ADC_EXTERNALTRIGINJEC_T6_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T6_TRGO", - "location": { - "column": "9", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T6_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@20127@macro@ADC_EXTERNALTRIGINJEC_T8_CC4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T8_CC4", - "location": { - "column": "9", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T8_CC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@20405@macro@ADC_EXTERNALTRIGINJEC_T8_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T8_TRGO", - "location": { - "column": "9", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T8_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@20621@macro@ADC_EXTERNALTRIGINJEC_T8_TRGO2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T8_TRGO2", - "location": { - "column": "9", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T8_TRGO2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@20838@macro@ADC_EXTERNALTRIGINJEC_T15_TRGO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_T15_TRGO", - "location": { - "column": "9", - "line": "225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_T15_TRGO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@21055@macro@ADC_EXTERNALTRIGINJEC_EXT_IT15", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJEC_EXT_IT15", - "location": { - "column": "9", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJEC_EXT_IT15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@21441@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", - "location": { - "column": "9", - "line": "234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@21611@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", - "location": { - "column": "9", - "line": "235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@21781@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", - "location": { - "column": "9", - "line": "236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@21951@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", - "location": { - "column": "9", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@22250@macro@ADC_SINGLE_ENDED", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SINGLE_ENDED", - "location": { - "column": "9", - "line": "245", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_SINGLE_ENDED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@22412@macro@ADC_DIFFERENTIAL_ENDED", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DIFFERENTIAL_ENDED", - "location": { - "column": "9", - "line": "246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_DIFFERENTIAL_ENDED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@22675@macro@ADC_OFFSET_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_NONE", - "location": { - "column": "9", - "line": "254", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@22812@macro@ADC_OFFSET_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_1", - "location": { - "column": "9", - "line": "255", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@23046@macro@ADC_OFFSET_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_2", - "location": { - "column": "9", - "line": "256", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@23280@macro@ADC_OFFSET_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_3", - "location": { - "column": "9", - "line": "257", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@23514@macro@ADC_OFFSET_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_4", - "location": { - "column": "9", - "line": "258", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@23854@macro@ADC_INJECTED_RANK_1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_RANK_1", - "location": { - "column": "9", - "line": "266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_RANK_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@23962@macro@ADC_INJECTED_RANK_2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_RANK_2", - "location": { - "column": "9", - "line": "267", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_RANK_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@24070@macro@ADC_INJECTED_RANK_3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_RANK_3", - "location": { - "column": "9", - "line": "268", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_RANK_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@24178@macro@ADC_INJECTED_RANK_4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_RANK_4", - "location": { - "column": "9", - "line": "269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_RANK_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@28475@macro@ADC_REGULAR_GROUP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_GROUP", - "location": { - "column": "9", - "line": "324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_REGULAR_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@28611@macro@ADC_INJECTED_GROUP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INJECTED_GROUP", - "location": { - "column": "9", - "line": "325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_INJECTED_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@28751@macro@ADC_REGULAR_INJECTED_GROUP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_REGULAR_INJECTED_GROUP", - "location": { - "column": "9", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_REGULAR_INJECTED_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@29565@macro@ADC_CFGR_FIELDS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_FIELDS", - "location": { - "column": "9", + "column": "15", "line": "342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "ADC_CFGR_FIELDS", - "origin": "user_include", + "name": "byte_num", + "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_adc_ex.h@30554@macro@ADC_SMPR1_FIELDS", - "What": "MacroDef", + "ID": "c:frt_protocol.c@9512@F@FRT_MsgProc_WriteRegister@return_crc_value", + "What": "Variable", "defdec": "Def", - "display": "ADC_SMPR1_FIELDS", + "display": "return_crc_value", "location": { - "column": "9", - "line": "362", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "20", + "line": "343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "ADC_SMPR1_FIELDS", - "origin": "user_include", + "name": "return_crc_value", + "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_adc_ex.h@31243@macro@ADC_CFGR_FIELDS_2", - "What": "MacroDef", + "ID": "c:frt_protocol.c@9945@F@FRT_MsgProc_WriteRegister@Trans_data", + "What": "Variable", "defdec": "Def", - "display": "ADC_CFGR_FIELDS_2", + "display": "Trans_data", "location": { - "column": "9", - "line": "379", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "13", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "ADC_CFGR_FIELDS_2", - "origin": "user_include", + "name": "Trans_data", + "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_adc_ex.h@33852@macro@ADC_IS_SOFTWARE_START_INJECTED", - "What": "MacroDef", + "ID": "c:frt_protocol.c@10570@F@FRT_MsgProc_WriteRegister@content", + "What": "Variable", "defdec": "Def", - "display": "ADC_IS_SOFTWARE_START_INJECTED", + "display": "content", "location": { - "column": "9", - "line": "443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "14", + "line": "376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "ADC_IS_SOFTWARE_START_INJECTED", - "origin": "user_include", + "name": "content", + "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_adc_ex.h@34198@macro@ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", - "What": "MacroDef", + "ID": "c:frt_protocol.c@10608@F@FRT_MsgProc_WriteRegister@var", + "What": "Variable", "defdec": "Def", - "display": "ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", - "location": { - "column": "9", - "line": "451", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@34590@macro@ADC_IS_CONVERSION_ONGOING_INJECTED", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IS_CONVERSION_ONGOING_INJECTED", - "location": { - "column": "9", - "line": "460", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_IS_CONVERSION_ONGOING_INJECTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@35783@macro@ADC_IS_INDEPENDENT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_IS_INDEPENDENT", - "location": { - "column": "9", - "line": "478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_IS_INDEPENDENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@36324@macro@ADC_JSQR_RK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_JSQR_RK", - "location": { - "column": "9", - "line": "489", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_JSQR_RK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@36711@macro@ADC_CFGR_INJECT_CONTEXT_QUEUE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_INJECT_CONTEXT_QUEUE", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_INJECT_CONTEXT_QUEUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@37012@macro@ADC_CFGR_INJECT_DISCCONTINUOUS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_INJECT_DISCCONTINUOUS", - "location": { - "column": "9", - "line": "504", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_INJECT_DISCCONTINUOUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@37314@macro@ADC_CFGR_REG_DISCONTINUOUS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_REG_DISCONTINUOUS", - "location": { - "column": "9", - "line": "511", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_REG_DISCONTINUOUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@37620@macro@ADC_CFGR_DISCONTINUOUS_NUM", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_DISCONTINUOUS_NUM", - "location": { - "column": "9", - "line": "518", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_DISCONTINUOUS_NUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@37884@macro@ADC_CFGR_AUTOWAIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_AUTOWAIT", - "location": { - "column": "9", - "line": "525", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_AUTOWAIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@38099@macro@ADC_CFGR_CONTINUOUS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_CONTINUOUS", - "location": { - "column": "9", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_CONTINUOUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@38340@macro@ADC_CFGR_DMACONTREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_DMACONTREQ", - "location": { - "column": "9", - "line": "539", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_DMACONTREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@38574@macro@ADC_OFR_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFR_CHANNEL", - "location": { - "column": "9", - "line": "546", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFR_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@38807@macro@ADC_DIFSEL_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DIFSEL_CHANNEL", - "location": { - "column": "9", - "line": "553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_DIFSEL_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@39062@macro@ADC_CALFACT_DIFF_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALFACT_DIFF_SET", - "location": { - "column": "9", - "line": "560", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CALFACT_DIFF_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@39478@macro@ADC_CALFACT_DIFF_GET", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALFACT_DIFF_GET", - "location": { - "column": "9", - "line": "568", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CALFACT_DIFF_GET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@39751@macro@ADC_TRX_HIGHTHRESHOLD", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_TRX_HIGHTHRESHOLD", - "location": { - "column": "9", - "line": "575", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_TRX_HIGHTHRESHOLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@40759@macro@ADC_OFFSET_SHIFT_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_OFFSET_SHIFT_RESOLUTION", - "location": { - "column": "9", - "line": "598", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_OFFSET_SHIFT_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@41515@macro@ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", - "location": { - "column": "9", - "line": "613", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@42251@macro@ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", - "location": { - "column": "9", - "line": "627", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@43727@macro@ADC_CLEAR_COMMON_CONTROL_REGISTER", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLEAR_COMMON_CONTROL_REGISTER", - "location": { - "column": "9", - "line": "650", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CLEAR_COMMON_CONTROL_REGISTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@46037@macro@ADC_TEMPERATURE_SENSOR_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_TEMPERATURE_SENSOR_INSTANCE", - "location": { - "column": "9", - "line": "679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_TEMPERATURE_SENSOR_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@47764@macro@ADC_BATTERY_VOLTAGE_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_BATTERY_VOLTAGE_INSTANCE", - "location": { - "column": "9", - "line": "693", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_BATTERY_VOLTAGE_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@49060@macro@ADC_VREFINT_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_VREFINT_INSTANCE", - "location": { - "column": "9", - "line": "706", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_VREFINT_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@49427@macro@IS_ADC_INJECTED_NB_CONV", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_INJECTED_NB_CONV", - "location": { - "column": "9", - "line": "713", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_INJECTED_NB_CONV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@49783@macro@IS_ADC_CALFACT", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_CALFACT", - "location": { - "column": "9", - "line": "720", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_CALFACT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@50437@macro@IS_ADC_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_CHANNEL", - "location": { - "column": "9", - "line": "730", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@68007@macro@IS_ADC_DIFF_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_DIFF_CHANNEL", - "location": { - "column": "9", - "line": "904", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_DIFF_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@73412@macro@IS_ADC_SINGLE_DIFFERENTIAL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_SINGLE_DIFFERENTIAL", - "location": { - "column": "9", - "line": "959", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_SINGLE_DIFFERENTIAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@73817@macro@IS_ADC_OFFSET_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_OFFSET_NUMBER", - "location": { - "column": "9", - "line": "967", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_OFFSET_NUMBER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@74493@macro@IS_ADC_INJECTED_RANK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_INJECTED_RANK", - "location": { - "column": "9", - "line": "978", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_INJECTED_RANK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@75118@macro@IS_ADC_EXTTRIGINJEC", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EXTTRIGINJEC", - "location": { - "column": "9", - "line": "989", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_EXTTRIGINJEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@77251@macro@IS_ADC_EXTTRIGINJEC_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EXTTRIGINJEC_EDGE", - "location": { - "column": "9", - "line": "1012", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_EXTTRIGINJEC_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@80733@macro@IS_ADC_ANALOG_WATCHDOG_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_ANALOG_WATCHDOG_NUMBER", - "location": { - "column": "9", - "line": "1065", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_ANALOG_WATCHDOG_NUMBER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@81263@macro@IS_ADC_ANALOG_WATCHDOG_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_ANALOG_WATCHDOG_MODE", - "location": { - "column": "9", - "line": "1074", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_ANALOG_WATCHDOG_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@82334@macro@IS_ADC_CONVERSION_GROUP", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_CONVERSION_GROUP", - "location": { - "column": "9", - "line": "1087", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_CONVERSION_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@82797@macro@IS_ADC_EVENT_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_EVENT_TYPE", - "location": { - "column": "9", - "line": "1096", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_EVENT_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@83457@macro@IS_ADC_OVERSAMPLING_RATIO", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_OVERSAMPLING_RATIO", - "location": { - "column": "9", - "line": "1108", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_OVERSAMPLING_RATIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@84464@macro@IS_ADC_RIGHT_BIT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_RIGHT_BIT_SHIFT", - "location": { - "column": "9", - "line": "1122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_RIGHT_BIT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@85526@macro@IS_ADC_TRIGGERED_OVERSAMPLING_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_TRIGGERED_OVERSAMPLING_MODE", - "location": { - "column": "9", - "line": "1137", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_TRIGGERED_OVERSAMPLING_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@86002@macro@IS_ADC_REGOVERSAMPLING_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_REGOVERSAMPLING_MODE", - "location": { - "column": "9", - "line": "1145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_REGOVERSAMPLING_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@86892@macro@IS_ADC_DFSDMCFG_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_ADC_DFSDMCFG_MODE", - "location": { - "column": "9", - "line": "1160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "IS_ADC_DFSDMCFG_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_adc_ex.h@87473@macro@ADC_CFGR_DFSDM", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CFGR_DFSDM", - "location": { - "column": "9", - "line": "1174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "ADC_CFGR_DFSDM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADCEx_Calibration_GetValue(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_GetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADCEx_Calibration_GetValue(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_GetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_SetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_SetValue(ADC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "25", - "line": "1195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_SetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_Calibration_SetValue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_SetValue(ADC_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "25", - "line": "1195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_Calibration_SetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStart", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedPollForConversion", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedPollForConversion(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1201", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedPollForConversion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedPollForConversion", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedPollForConversion(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1201", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedPollForConversion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStart_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStart_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStart_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStart_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedStop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop_IT(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedStop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedGetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADCEx_InjectedGetValue(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedGetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedGetValue", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_ADCEx_InjectedGetValue(ADC_HandleTypeDef *, uint32_t)", - "location": { - "column": "25", - "line": "1215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedGetValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedConvCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedConvCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedConvCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedConvCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedQueueOverflowCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_InjectedQueueOverflowCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedQueueOverflowCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_InjectedQueueOverflowCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_InjectedQueueOverflowCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_InjectedQueueOverflowCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow2Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_LevelOutOfWindow2Callback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_LevelOutOfWindow2Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow2Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_LevelOutOfWindow2Callback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_LevelOutOfWindow2Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow3Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_LevelOutOfWindow3Callback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_LevelOutOfWindow3Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow3Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_LevelOutOfWindow3Callback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_LevelOutOfWindow3Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_EndOfSamplingCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_EndOfSamplingCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_EndOfSamplingCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_EndOfSamplingCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_ADCEx_EndOfSamplingCallback(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_EndOfSamplingCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_RegularStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop(ADC_HandleTypeDef *)", + "display": "var", "location": { "column": "19", - "line": "1225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "line": "377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop", - "origin": "user_include", + "name": "var", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_RegularStop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop(ADC_HandleTypeDef *)", + "ID": "c:frt_protocol.c@10749@F@FRT_MsgProc_WriteRegister@pos", + "What": "Variable", + "defdec": "Def", + "display": "pos", "location": { "column": "19", - "line": "1225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "line": "382", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop", - "origin": "user_include", + "name": "pos", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_RegularStop_IT", + "ID": "c:frt_protocol.c@10808@F@FRT_MsgProc_WriteRegister@i", + "What": "Variable", + "defdec": "Def", + "display": "i", + "location": { + "column": "23", + "line": "384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "i", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@F@uart_read_frt_climate_pack", "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_IT(ADC_HandleTypeDef *)", + "defdec": "Def", + "display": "int uart_read_frt_climate_pack(device_handle, u_int8_t *, u_int32_t)", + "location": { + "column": "12", + "line": "400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "uart_read_frt_climate_pack", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@11261@F@uart_read_frt_climate_pack@offset", + "What": "Variable", + "defdec": "Def", + "display": "offset", + "location": { + "column": "15", + "line": "402", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "offset", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@11288@F@uart_read_frt_climate_pack@c", + "What": "Variable", + "defdec": "Def", + "display": "c", + "location": { + "column": "10", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" + }, + "name": "c", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:frt_protocol.c@11370@F@uart_read_frt_climate_pack@new_buff", + "What": "Variable", + "defdec": "Def", + "display": "new_buff", "location": { "column": "19", - "line": "1226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "line": "406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop_IT", - "origin": "user_include", + "name": "new_buff", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_RegularStop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_IT(ADC_HandleTypeDef *)", + "ID": "c:frt_protocol.c@11463@F@uart_read_frt_climate_pack@offset", + "What": "Variable", + "defdec": "Def", + "display": "offset", "location": { - "column": "19", - "line": "1226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "16", + "line": "409", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop_IT", - "origin": "user_include", + "name": "offset", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_RegularStop_DMA", + "ID": "c:@F@FRT_MsgHandler", "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_DMA(ADC_HandleTypeDef *)", + "defdec": "Def", + "display": "void FRT_MsgHandler(device_handle, u_int8_t *, u_int32_t)", "location": { - "column": "19", - "line": "1227", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "6", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop_DMA", - "origin": "user_include", + "name": "FRT_MsgHandler", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_RegularStop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_DMA(ADC_HandleTypeDef *)", + "ID": "c:frt_protocol.c@12870@F@FRT_MsgHandler@i", + "What": "Variable", + "defdec": "Def", + "display": "i", "location": { - "column": "19", - "line": "1227", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "20", + "line": "456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_RegularStop_DMA", - "origin": "user_include", + "name": "i", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_InjectedConfigChannel", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedConfigChannel(ADC_HandleTypeDef *, ADC_InjectionConfTypeDef *)", + "ID": "c:frt_protocol.c@rs485_buff", + "What": "Variable", + "defdec": "Def", + "display": "rs485_buff", "location": { - "column": "25", - "line": "1240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "17", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_InjectedConfigChannel", - "origin": "user_include", + "name": "rs485_buff", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_InjectedConfigChannel", + "ID": "c:@F@read_and_process_uart_data", "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedConfigChannel(ADC_HandleTypeDef *, ADC_InjectionConfTypeDef *)", + "defdec": "Def", + "display": "void read_and_process_uart_data(device_handle)", "location": { - "column": "25", - "line": "1240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "6", + "line": "469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_InjectedConfigChannel", - "origin": "user_include", + "name": "read_and_process_uart_data", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_EnableInjectedQueue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_EnableInjectedQueue(ADC_HandleTypeDef *)", + "ID": "c:frt_protocol.c@13534@F@read_and_process_uart_data@ret", + "What": "Variable", + "defdec": "Def", + "display": "ret", "location": { - "column": "25", - "line": "1245", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "10", + "line": "480", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_EnableInjectedQueue", - "origin": "user_include", + "name": "ret", + "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_ADCEx_EnableInjectedQueue", + "ID": "c:frt_protocol.c@F@pdebug_mcs_info", "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_EnableInjectedQueue(ADC_HandleTypeDef *)", + "defdec": "Def", + "display": "void pdebug_mcs_info(void)", "location": { - "column": "25", - "line": "1245", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + "column": "13", + "line": "488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\frt_protocol.c" }, - "name": "HAL_ADCEx_EnableInjectedQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_DisableInjectedQueue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_DisableInjectedQueue(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_DisableInjectedQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_DisableInjectedQueue", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_DisableInjectedQueue(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_DisableInjectedQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_DisableVoltageRegulator", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_DisableVoltageRegulator(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1247", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_DisableVoltageRegulator", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_DisableVoltageRegulator", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_DisableVoltageRegulator(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1247", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_DisableVoltageRegulator", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_EnterADCDeepPowerDownMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_EnterADCDeepPowerDownMode(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_EnterADCDeepPowerDownMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_ADCEx_EnterADCDeepPowerDownMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_ADCEx_EnterADCDeepPowerDownMode(ADC_HandleTypeDef *)", - "location": { - "column": "25", - "line": "1248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" - }, - "name": "HAL_ADCEx_EnterADCDeepPowerDownMode", - "origin": "user_include", + "name": "pdebug_mcs_info", + "origin": "project_file", "scope": null }, { @@ -301539,6 +285987,14688 @@ "origin": "user_include", "scope": null }, + { + "ID": "c:stm32l4xx_hal_dma.h@801@macro@STM32L4xx_HAL_DMA_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_DMA_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "STM32L4xx_HAL_DMA_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@DMA_InitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "members": [ + { + "ID": "c:@SA@DMA_InitTypeDef@FI@Request", + "What": "FieldDecl", + "defdec": "Def", + "display": "Request", + "location": { + "column": "12", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Request", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@Direction", + "What": "FieldDecl", + "defdec": "Def", + "display": "Direction", + "location": { + "column": "12", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Direction", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@PeriphInc", + "What": "FieldDecl", + "defdec": "Def", + "display": "PeriphInc", + "location": { + "column": "12", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "PeriphInc", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@MemInc", + "What": "FieldDecl", + "defdec": "Def", + "display": "MemInc", + "location": { + "column": "12", + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "MemInc", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@PeriphDataAlignment", + "What": "FieldDecl", + "defdec": "Def", + "display": "PeriphDataAlignment", + "location": { + "column": "12", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "PeriphDataAlignment", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@MemDataAlignment", + "What": "FieldDecl", + "defdec": "Def", + "display": "MemDataAlignment", + "location": { + "column": "12", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "MemDataAlignment", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@Mode", + "What": "FieldDecl", + "defdec": "Def", + "display": "Mode", + "location": { + "column": "12", + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Mode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + }, + { + "ID": "c:@SA@DMA_InitTypeDef@FI@Priority", + "What": "FieldDecl", + "defdec": "Def", + "display": "Priority", + "location": { + "column": "12", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Priority", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@DMA_InitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct DMA_InitTypeDef", + "location": { + "column": "3", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_InitTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_StateTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_RESET", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_STATE_RESET", + "location": { + "column": "3", + "line": "81", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_READY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_STATE_READY", + "location": { + "column": "3", + "line": "82", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_STATE_BUSY", + "location": { + "column": "3", + "line": "83", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_STATE_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_TIMEOUT", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_STATE_TIMEOUT", + "location": { + "column": "3", + "line": "84", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_STATE_TIMEOUT", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef@HAL_DMA_FULL_TRANSFER", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_FULL_TRANSFER", + "location": { + "column": "3", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_FULL_TRANSFER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef@HAL_DMA_HALF_TRANSFER", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_HALF_TRANSFER", + "location": { + "column": "3", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_HALF_TRANSFER", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_CPLT_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_XFER_CPLT_CB_ID", + "location": { + "column": "3", + "line": "102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_XFER_CPLT_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_HALFCPLT_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_XFER_HALFCPLT_CB_ID", + "location": { + "column": "3", + "line": "103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_XFER_HALFCPLT_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ERROR_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_XFER_ERROR_CB_ID", + "location": { + "column": "3", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_XFER_ERROR_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ABORT_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_XFER_ABORT_CB_ID", + "location": { + "column": "3", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_XFER_ABORT_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ALL_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DMA_XFER_ALL_CB_ID", + "location": { + "column": "3", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_XFER_ALL_CB_ID", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@__DMA_HandleTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "__DMA_HandleTypeDef", + "location": { + "column": "16", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "members": [ + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@Instance", + "What": "FieldDecl", + "defdec": "Def", + "display": "Instance", + "location": { + "column": "27", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Instance", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@Init", + "What": "FieldDecl", + "defdec": "Def", + "display": "Init", + "location": { + "column": "25", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Init", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@Lock", + "What": "FieldDecl", + "defdec": "Def", + "display": "Lock", + "location": { + "column": "25", + "line": "118", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Lock", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@State", + "What": "FieldDecl", + "defdec": "Def", + "display": "State", + "location": { + "column": "30", + "line": "120", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "State", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@Parent", + "What": "FieldDecl", + "defdec": "Def", + "display": "Parent", + "location": { + "column": "26", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "Parent", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@XferCpltCallback", + "What": "FieldDecl", + "defdec": "Def", + "display": "XferCpltCallback", + "location": { + "column": "28", + "line": "124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "XferCpltCallback", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@XferHalfCpltCallback", + "What": "FieldDecl", + "defdec": "Def", + "display": "XferHalfCpltCallback", + "location": { + "column": "28", + "line": "126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "XferHalfCpltCallback", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@XferErrorCallback", + "What": "FieldDecl", + "defdec": "Def", + "display": "XferErrorCallback", + "location": { + "column": "28", + "line": "128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "XferErrorCallback", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@XferAbortCallback", + "What": "FieldDecl", + "defdec": "Def", + "display": "XferAbortCallback", + "location": { + "column": "28", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "XferAbortCallback", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@ErrorCode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ErrorCode", + "location": { + "column": "25", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "ErrorCode", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@DmaBaseAddress", + "What": "FieldDecl", + "defdec": "Def", + "display": "DmaBaseAddress", + "location": { + "column": "26", + "line": "134", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DmaBaseAddress", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:@S@__DMA_HandleTypeDef@FI@ChannelIndex", + "What": "FieldDecl", + "defdec": "Def", + "display": "ChannelIndex", + "location": { + "column": "25", + "line": "136", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "ChannelIndex", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + }, + { + "ID": "c:stm32l4xx_hal_dma.h@T@DMA_HandleTypeDef", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct __DMA_HandleTypeDef", + "location": { + "column": "2", + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_HandleTypeDef", + "origin": "user_include", + "scope": "__DMA_HandleTypeDef" + } + ], + "name": "__DMA_HandleTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7389@macro@HAL_DMA_ERROR_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_NONE", + "location": { + "column": "9", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7496@macro@HAL_DMA_ERROR_TE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_TE", + "location": { + "column": "9", + "line": "168", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_TE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7603@macro@HAL_DMA_ERROR_NO_XFER", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_NO_XFER", + "location": { + "column": "9", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_NO_XFER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7710@macro@HAL_DMA_ERROR_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_TIMEOUT", + "location": { + "column": "9", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7817@macro@HAL_DMA_ERROR_NOT_SUPPORTED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_NOT_SUPPORTED", + "location": { + "column": "9", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_NOT_SUPPORTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@7924@macro@HAL_DMA_ERROR_SYNC", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_SYNC", + "location": { + "column": "9", + "line": "172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_SYNC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8031@macro@HAL_DMA_ERROR_REQGEN", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_ERROR_REQGEN", + "location": { + "column": "9", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_ERROR_REQGEN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8240@macro@DMA_REQUEST_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_0", + "location": { + "column": "9", + "line": "184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8286@macro@DMA_REQUEST_1", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_1", + "location": { + "column": "9", + "line": "185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8332@macro@DMA_REQUEST_2", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_2", + "location": { + "column": "9", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8378@macro@DMA_REQUEST_3", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_3", + "location": { + "column": "9", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8424@macro@DMA_REQUEST_4", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_4", + "location": { + "column": "9", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8470@macro@DMA_REQUEST_5", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_5", + "location": { + "column": "9", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8516@macro@DMA_REQUEST_6", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_6", + "location": { + "column": "9", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@8562@macro@DMA_REQUEST_7", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_REQUEST_7", + "location": { + "column": "9", + "line": "191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_REQUEST_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24126@macro@DMA_PERIPH_TO_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PERIPH_TO_MEMORY", + "location": { + "column": "9", + "line": "439", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PERIPH_TO_MEMORY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24222@macro@DMA_MEMORY_TO_PERIPH", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MEMORY_TO_PERIPH", + "location": { + "column": "9", + "line": "440", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MEMORY_TO_PERIPH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24318@macro@DMA_MEMORY_TO_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MEMORY_TO_MEMORY", + "location": { + "column": "9", + "line": "441", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MEMORY_TO_MEMORY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24528@macro@DMA_PINC_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PINC_ENABLE", + "location": { + "column": "9", + "line": "449", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PINC_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24621@macro@DMA_PINC_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PINC_DISABLE", + "location": { + "column": "9", + "line": "450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PINC_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24821@macro@DMA_MINC_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MINC_ENABLE", + "location": { + "column": "9", + "line": "458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MINC_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@24912@macro@DMA_MINC_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MINC_DISABLE", + "location": { + "column": "9", + "line": "459", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MINC_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25103@macro@DMA_PDATAALIGN_BYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PDATAALIGN_BYTE", + "location": { + "column": "9", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PDATAALIGN_BYTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25204@macro@DMA_PDATAALIGN_HALFWORD", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PDATAALIGN_HALFWORD", + "location": { + "column": "9", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PDATAALIGN_HALFWORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25305@macro@DMA_PDATAALIGN_WORD", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PDATAALIGN_WORD", + "location": { + "column": "9", + "line": "469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PDATAALIGN_WORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25498@macro@DMA_MDATAALIGN_BYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MDATAALIGN_BYTE", + "location": { + "column": "9", + "line": "477", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MDATAALIGN_BYTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25595@macro@DMA_MDATAALIGN_HALFWORD", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MDATAALIGN_HALFWORD", + "location": { + "column": "9", + "line": "478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MDATAALIGN_HALFWORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25692@macro@DMA_MDATAALIGN_WORD", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_MDATAALIGN_WORD", + "location": { + "column": "9", + "line": "479", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_MDATAALIGN_WORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25857@macro@DMA_NORMAL", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_NORMAL", + "location": { + "column": "9", + "line": "487", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_NORMAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@25948@macro@DMA_CIRCULAR", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_CIRCULAR", + "location": { + "column": "9", + "line": "488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_CIRCULAR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26127@macro@DMA_PRIORITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PRIORITY_LOW", + "location": { + "column": "9", + "line": "496", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PRIORITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26216@macro@DMA_PRIORITY_MEDIUM", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PRIORITY_MEDIUM", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PRIORITY_MEDIUM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26305@macro@DMA_PRIORITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PRIORITY_HIGH", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PRIORITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26394@macro@DMA_PRIORITY_VERY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_PRIORITY_VERY_HIGH", + "location": { + "column": "9", + "line": "499", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_PRIORITY_VERY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26601@macro@DMA_IT_TC", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_IT_TC", + "location": { + "column": "9", + "line": "508", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_IT_TC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26657@macro@DMA_IT_HT", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_IT_HT", + "location": { + "column": "9", + "line": "509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_IT_HT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26713@macro@DMA_IT_TE", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_IT_TE", + "location": { + "column": "9", + "line": "510", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_IT_TE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26861@macro@DMA_FLAG_GL1", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL1", + "location": { + "column": "9", + "line": "518", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26917@macro@DMA_FLAG_TC1", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC1", + "location": { + "column": "9", + "line": "519", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@26974@macro@DMA_FLAG_HT1", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT1", + "location": { + "column": "9", + "line": "520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27031@macro@DMA_FLAG_TE1", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE1", + "location": { + "column": "9", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27088@macro@DMA_FLAG_GL2", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL2", + "location": { + "column": "9", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27144@macro@DMA_FLAG_TC2", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC2", + "location": { + "column": "9", + "line": "523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27201@macro@DMA_FLAG_HT2", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT2", + "location": { + "column": "9", + "line": "524", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27258@macro@DMA_FLAG_TE2", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE2", + "location": { + "column": "9", + "line": "525", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27315@macro@DMA_FLAG_GL3", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL3", + "location": { + "column": "9", + "line": "526", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27371@macro@DMA_FLAG_TC3", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC3", + "location": { + "column": "9", + "line": "527", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27428@macro@DMA_FLAG_HT3", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT3", + "location": { + "column": "9", + "line": "528", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27485@macro@DMA_FLAG_TE3", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE3", + "location": { + "column": "9", + "line": "529", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27542@macro@DMA_FLAG_GL4", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL4", + "location": { + "column": "9", + "line": "530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27598@macro@DMA_FLAG_TC4", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC4", + "location": { + "column": "9", + "line": "531", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27655@macro@DMA_FLAG_HT4", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT4", + "location": { + "column": "9", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27712@macro@DMA_FLAG_TE4", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE4", + "location": { + "column": "9", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27769@macro@DMA_FLAG_GL5", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL5", + "location": { + "column": "9", + "line": "534", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27825@macro@DMA_FLAG_TC5", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC5", + "location": { + "column": "9", + "line": "535", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27882@macro@DMA_FLAG_HT5", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT5", + "location": { + "column": "9", + "line": "536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27939@macro@DMA_FLAG_TE5", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE5", + "location": { + "column": "9", + "line": "537", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@27996@macro@DMA_FLAG_GL6", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL6", + "location": { + "column": "9", + "line": "538", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28052@macro@DMA_FLAG_TC6", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC6", + "location": { + "column": "9", + "line": "539", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28109@macro@DMA_FLAG_HT6", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT6", + "location": { + "column": "9", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28166@macro@DMA_FLAG_TE6", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE6", + "location": { + "column": "9", + "line": "541", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28223@macro@DMA_FLAG_GL7", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_GL7", + "location": { + "column": "9", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_GL7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28279@macro@DMA_FLAG_TC7", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TC7", + "location": { + "column": "9", + "line": "543", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TC7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28336@macro@DMA_FLAG_HT7", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_HT7", + "location": { + "column": "9", + "line": "544", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_HT7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28393@macro@DMA_FLAG_TE7", + "What": "MacroDef", + "defdec": "Def", + "display": "DMA_FLAG_TE7", + "location": { + "column": "9", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "DMA_FLAG_TE7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28741@macro@__HAL_DMA_RESET_HANDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_RESET_HANDLE_STATE", + "location": { + "column": "9", + "line": "563", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_RESET_HANDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@28948@macro@__HAL_DMA_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_ENABLE", + "location": { + "column": "9", + "line": "570", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@29152@macro@__HAL_DMA_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_DISABLE", + "location": { + "column": "9", + "line": "577", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@29457@macro@__HAL_DMA_GET_TC_FLAG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_TC_FLAG_INDEX", + "location": { + "column": "9", + "line": "588", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_TC_FLAG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@30729@macro@__HAL_DMA_GET_HT_FLAG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_HT_FLAG_INDEX", + "location": { + "column": "9", + "line": "608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_HT_FLAG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@31984@macro@__HAL_DMA_GET_TE_FLAG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_TE_FLAG_INDEX", + "location": { + "column": "9", + "line": "628", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_TE_FLAG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@33241@macro@__HAL_DMA_GET_GI_FLAG_INDEX", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_GI_FLAG_INDEX", + "location": { + "column": "9", + "line": "648", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_GI_FLAG_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@34906@macro@__HAL_DMA_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_FLAG", + "location": { + "column": "9", + "line": "675", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@35635@macro@__HAL_DMA_CLEAR_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_CLEAR_FLAG", + "location": { + "column": "9", + "line": "690", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_CLEAR_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@36303@macro@__HAL_DMA_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_ENABLE_IT", + "location": { + "column": "9", + "line": "703", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@36902@macro@__HAL_DMA_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_DISABLE_IT", + "location": { + "column": "9", + "line": "715", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@37526@macro@__HAL_DMA_GET_IT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_IT_SOURCE", + "location": { + "column": "9", + "line": "727", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_IT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@37862@macro@__HAL_DMA_GET_COUNTER", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DMA_GET_COUNTER", + "location": { + "column": "9", + "line": "734", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "__HAL_DMA_GET_COUNTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "765", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "765", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "766", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "766", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "767", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Abort", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "767", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Abort", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Abort_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_Abort_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_PollForTransfer", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", + "location": { + "column": "19", + "line": "769", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_PollForTransfer", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_PollForTransfer", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", + "location": { + "column": "19", + "line": "769", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_PollForTransfer", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "770", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "770", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_RegisterCallback", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", + "location": { + "column": "19", + "line": "771", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_RegisterCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_RegisterCallback", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", + "location": { + "column": "19", + "line": "771", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_RegisterCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_UnRegisterCallback", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", + "location": { + "column": "19", + "line": "772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_UnRegisterCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_UnRegisterCallback", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", + "location": { + "column": "19", + "line": "772", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_UnRegisterCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", + "location": { + "column": "22", + "line": "782", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", + "location": { + "column": "22", + "line": "782", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", + "location": { + "column": "22", + "line": "783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", + "location": { + "column": "22", + "line": "783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "HAL_DMA_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@39953@macro@IS_DMA_DIRECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_DIRECTION", + "location": { + "column": "9", + "line": "797", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_DIRECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@40196@macro@IS_DMA_BUFFER_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_BUFFER_SIZE", + "location": { + "column": "9", + "line": "801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_BUFFER_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@40274@macro@IS_DMA_PERIPHERAL_INC_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_PERIPHERAL_INC_STATE", + "location": { + "column": "9", + "line": "803", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_PERIPHERAL_INC_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@40431@macro@IS_DMA_MEMORY_INC_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_MEMORY_INC_STATE", + "location": { + "column": "9", + "line": "806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_MEMORY_INC_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@40607@macro@IS_DMA_ALL_REQUEST", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_ALL_REQUEST", + "location": { + "column": "9", + "line": "811", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_ALL_REQUEST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@41310@macro@IS_DMA_PERIPHERAL_DATA_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_PERIPHERAL_DATA_SIZE", + "location": { + "column": "9", + "line": "827", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_PERIPHERAL_DATA_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@41559@macro@IS_DMA_MEMORY_DATA_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_MEMORY_DATA_SIZE", + "location": { + "column": "9", + "line": "831", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_MEMORY_DATA_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@41797@macro@IS_DMA_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_MODE", + "location": { + "column": "9", + "line": "835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.h@41911@macro@IS_DMA_PRIORITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DMA_PRIORITY", + "location": { + "column": "9", + "line": "838", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" + }, + "name": "IS_DMA_PRIORITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.h@903@macro@__SYSTEM_STM32L4XX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "__SYSTEM_STM32L4XX_H", + "location": { + "column": "9", + "line": "31", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "__SYSTEM_STM32L4XX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SystemCoreClock", + "What": "Variable", + "defdec": "Dec", + "display": "SystemCoreClock", + "location": { + "column": "17", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemCoreClock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SystemCoreClock", + "What": "Variable", + "defdec": "Dec", + "display": "SystemCoreClock", + "location": { + "column": "17", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemCoreClock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@AHBPrescTable", + "What": "Variable", + "defdec": "Dec", + "display": "AHBPrescTable", + "location": { + "column": "23", + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "AHBPrescTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@AHBPrescTable", + "What": "Variable", + "defdec": "Dec", + "display": "AHBPrescTable", + "location": { + "column": "23", + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "AHBPrescTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@APBPrescTable", + "What": "Variable", + "defdec": "Dec", + "display": "APBPrescTable", + "location": { + "column": "23", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "APBPrescTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@APBPrescTable", + "What": "Variable", + "defdec": "Dec", + "display": "APBPrescTable", + "location": { + "column": "23", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "APBPrescTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@MSIRangeTable", + "What": "Variable", + "defdec": "Dec", + "display": "MSIRangeTable", + "location": { + "column": "23", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "MSIRangeTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@MSIRangeTable", + "What": "Variable", + "defdec": "Dec", + "display": "MSIRangeTable", + "location": { + "column": "23", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "MSIRangeTable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@SystemInit", + "What": "Function", + "defdec": "Dec", + "display": "void SystemInit(void)", + "location": { + "column": "13", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@SystemInit", + "What": "Function", + "defdec": "Dec", + "display": "void SystemInit(void)", + "location": { + "column": "13", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@SystemCoreClockUpdate", + "What": "Function", + "defdec": "Dec", + "display": "void SystemCoreClockUpdate(void)", + "location": { + "column": "13", + "line": "88", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemCoreClockUpdate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@SystemCoreClockUpdate", + "What": "Function", + "defdec": "Dec", + "display": "void SystemCoreClockUpdate(void)", + "location": { + "column": "13", + "line": "88", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" + }, + "name": "SystemCoreClockUpdate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@1193@macro@__CMSIS_ICCARM_H__", + "What": "MacroDef", + "defdec": "Def", + "display": "__CMSIS_ICCARM_H__", + "location": { + "column": "9", + "line": "28", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__CMSIS_ICCARM_H__", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@1333@macro@__IAR_FT", + "What": "MacroDef", + "defdec": "Def", + "display": "__IAR_FT", + "location": { + "column": "9", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__IAR_FT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@1418@macro@__ICCARM_V8", + "What": "MacroDef", + "defdec": "Def", + "display": "__ICCARM_V8", + "location": { + "column": "11", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ICCARM_V8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@1525@macro@__ALIGNED", + "What": "MacroDef", + "defdec": "Def", + "display": "__ALIGNED", + "location": { + "column": "13", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ALIGNED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@2417@macro@__ARM_ARCH_7EM__", + "What": "MacroDef", + "defdec": "Def", + "display": "__ARM_ARCH_7EM__", + "location": { + "column": "17", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ARM_ARCH_7EM__", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@3636@macro@__IAR_M0_FAMILY", + "What": "MacroDef", + "defdec": "Def", + "display": "__IAR_M0_FAMILY", + "location": { + "column": "11", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__IAR_M0_FAMILY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@3693@macro@__ASM", + "What": "MacroDef", + "defdec": "Def", + "display": "__ASM", + "location": { + "column": "11", + "line": "111", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ASM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@3756@macro@__COMPILER_BARRIER", + "What": "MacroDef", + "defdec": "Def", + "display": "__COMPILER_BARRIER", + "location": { + "column": "11", + "line": "115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__COMPILER_BARRIER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@3846@macro@__INLINE", + "What": "MacroDef", + "defdec": "Def", + "display": "__INLINE", + "location": { + "column": "11", + "line": "119", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__INLINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@3927@macro@__NO_RETURN", + "What": "MacroDef", + "defdec": "Def", + "display": "__NO_RETURN", + "location": { + "column": "13", + "line": "124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__NO_RETURN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@4114@macro@__PACKED", + "What": "MacroDef", + "defdec": "Def", + "display": "__PACKED", + "location": { + "column": "13", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PACKED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@4319@macro@__PACKED_STRUCT", + "What": "MacroDef", + "defdec": "Def", + "display": "__PACKED_STRUCT", + "location": { + "column": "13", + "line": "141", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PACKED_STRUCT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@4551@macro@__PACKED_UNION", + "What": "MacroDef", + "defdec": "Def", + "display": "__PACKED_UNION", + "location": { + "column": "13", + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PACKED_UNION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@4775@macro@__RESTRICT", + "What": "MacroDef", + "defdec": "Def", + "display": "__RESTRICT", + "location": { + "column": "13", + "line": "159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__RESTRICT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@4960@macro@__STATIC_INLINE", + "What": "MacroDef", + "defdec": "Def", + "display": "__STATIC_INLINE", + "location": { + "column": "11", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STATIC_INLINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@5042@macro@__FORCEINLINE", + "What": "MacroDef", + "defdec": "Def", + "display": "__FORCEINLINE", + "location": { + "column": "11", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__FORCEINLINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@5142@macro@__STATIC_FORCEINLINE", + "What": "MacroDef", + "defdec": "Def", + "display": "__STATIC_FORCEINLINE", + "location": { + "column": "11", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STATIC_FORCEINLINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__iar_uint16_read", + "What": "Function", + "defdec": "Def", + "display": "uint16_t __iar_uint16_read(const void *)", + "location": { + "column": "19", + "line": "181", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__iar_uint16_read", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@5420@macro@__UNALIGNED_UINT16_READ", + "What": "MacroDef", + "defdec": "Def", + "display": "__UNALIGNED_UINT16_READ", + "location": { + "column": "9", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UNALIGNED_UINT16_READ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__iar_uint16_write", + "What": "Function", + "defdec": "Def", + "display": "void __iar_uint16_write(const void *, uint16_t)", + "location": { + "column": "15", + "line": "193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__iar_uint16_write", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@5712@macro@__UNALIGNED_UINT16_WRITE", + "What": "MacroDef", + "defdec": "Def", + "display": "__UNALIGNED_UINT16_WRITE", + "location": { + "column": "9", + "line": "198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UNALIGNED_UINT16_WRITE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__iar_uint32_read", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __iar_uint32_read(const void *)", + "location": { + "column": "19", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__iar_uint32_read", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@6000@macro@__UNALIGNED_UINT32_READ", + "What": "MacroDef", + "defdec": "Def", + "display": "__UNALIGNED_UINT32_READ", + "location": { + "column": "9", + "line": "209", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UNALIGNED_UINT32_READ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__iar_uint32_write", + "What": "Function", + "defdec": "Def", + "display": "void __iar_uint32_write(const void *, uint32_t)", + "location": { + "column": "15", + "line": "215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__iar_uint32_write", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@6290@macro@__UNALIGNED_UINT32_WRITE", + "What": "MacroDef", + "defdec": "Def", + "display": "__UNALIGNED_UINT32_WRITE", + "location": { + "column": "9", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UNALIGNED_UINT32_WRITE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@__iar_u32", + "What": "Struct", + "defdec": "Def", + "display": "__iar_u32", + "location": { + "column": "18", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "members": [ + { + "ID": "c:@S@__iar_u32@FI@v", + "What": "FieldDecl", + "defdec": "Def", + "display": "v", + "location": { + "column": "39", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "v", + "origin": "user_include", + "scope": "__iar_u32" + } + ], + "name": "__iar_u32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@6539@macro@__UNALIGNED_UINT32", + "What": "MacroDef", + "defdec": "Def", + "display": "__UNALIGNED_UINT32", + "location": { + "column": "9", + "line": "228", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UNALIGNED_UINT32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@6656@macro@__USED", + "What": "MacroDef", + "defdec": "Def", + "display": "__USED", + "location": { + "column": "13", + "line": "233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@6932@macro@__PROGRAM_START", + "What": "MacroDef", + "defdec": "Def", + "display": "__PROGRAM_START", + "location": { + "column": "9", + "line": "248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PROGRAM_START", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7019@macro@__INITIAL_SP", + "What": "MacroDef", + "defdec": "Def", + "display": "__INITIAL_SP", + "location": { + "column": "9", + "line": "252", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__INITIAL_SP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7101@macro@__STACK_LIMIT", + "What": "MacroDef", + "defdec": "Def", + "display": "__STACK_LIMIT", + "location": { + "column": "9", + "line": "256", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STACK_LIMIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7183@macro@__VECTOR_TABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__VECTOR_TABLE", + "location": { + "column": "9", + "line": "260", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__VECTOR_TABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7277@macro@__VECTOR_TABLE_ATTRIBUTE", + "What": "MacroDef", + "defdec": "Def", + "display": "__VECTOR_TABLE_ATTRIBUTE", + "location": { + "column": "9", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__VECTOR_TABLE_ATTRIBUTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7765@macro@__disable_fault_irq", + "What": "MacroDef", + "defdec": "Def", + "display": "__disable_fault_irq", + "location": { + "column": "11", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__disable_fault_irq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7822@macro@__disable_irq", + "What": "MacroDef", + "defdec": "Def", + "display": "__disable_irq", + "location": { + "column": "11", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__disable_irq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7885@macro@__enable_fault_irq", + "What": "MacroDef", + "defdec": "Def", + "display": "__enable_fault_irq", + "location": { + "column": "11", + "line": "293", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__enable_fault_irq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@7941@macro@__enable_irq", + "What": "MacroDef", + "defdec": "Def", + "display": "__enable_irq", + "location": { + "column": "11", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__enable_irq", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8003@macro@__arm_rsr", + "What": "MacroDef", + "defdec": "Def", + "display": "__arm_rsr", + "location": { + "column": "11", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__arm_rsr", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8052@macro@__arm_wsr", + "What": "MacroDef", + "defdec": "Def", + "display": "__arm_wsr", + "location": { + "column": "11", + "line": "296", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__arm_wsr", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8105@macro@__get_APSR", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_APSR", + "location": { + "column": "11", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_APSR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8164@macro@__get_BASEPRI", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_BASEPRI", + "location": { + "column": "11", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_BASEPRI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8226@macro@__get_CONTROL", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_CONTROL", + "location": { + "column": "11", + "line": "301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_CONTROL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8288@macro@__get_FAULTMASK", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_FAULTMASK", + "location": { + "column": "11", + "line": "302", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_FAULTMASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8485@macro@__get_FPSCR", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_FPSCR", + "location": { + "column": "13", + "line": "306", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_FPSCR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8545@macro@__set_FPSCR", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_FPSCR", + "location": { + "column": "13", + "line": "307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_FPSCR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8731@macro@__get_IPSR", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_IPSR", + "location": { + "column": "11", + "line": "313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_IPSR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@8790@macro@__get_MSP", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_MSP", + "location": { + "column": "11", + "line": "314", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_MSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9063@macro@__get_MSPLIM", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_MSPLIM", + "location": { + "column": "13", + "line": "318", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_MSPLIM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9185@macro@__get_PRIMASK", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_PRIMASK", + "location": { + "column": "11", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_PRIMASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9247@macro@__get_PSP", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_PSP", + "location": { + "column": "11", + "line": "323", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_PSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9522@macro@__get_PSPLIM", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_PSPLIM", + "location": { + "column": "13", + "line": "328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_PSPLIM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9646@macro@__get_xPSR", + "What": "MacroDef", + "defdec": "Def", + "display": "__get_xPSR", + "location": { + "column": "11", + "line": "333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__get_xPSR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9707@macro@__set_BASEPRI", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_BASEPRI", + "location": { + "column": "11", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_BASEPRI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9778@macro@__set_BASEPRI_MAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_BASEPRI_MAX", + "location": { + "column": "11", + "line": "336", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_BASEPRI_MAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9853@macro@__set_CONTROL", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_CONTROL", + "location": { + "column": "11", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_CONTROL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9924@macro@__set_FAULTMASK", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_FAULTMASK", + "location": { + "column": "11", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_FAULTMASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@9997@macro@__set_MSP", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_MSP", + "location": { + "column": "11", + "line": "339", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_MSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10281@macro@__set_MSPLIM", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_MSPLIM", + "location": { + "column": "13", + "line": "344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_MSPLIM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10423@macro@__set_PRIMASK", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_PRIMASK", + "location": { + "column": "11", + "line": "348", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_PRIMASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10494@macro@__set_PSP", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_PSP", + "location": { + "column": "11", + "line": "349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_PSP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10776@macro@__set_PSPLIM", + "What": "MacroDef", + "defdec": "Def", + "display": "__set_PSPLIM", + "location": { + "column": "13", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__set_PSPLIM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10920@macro@__TZ_get_CONTROL_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_CONTROL_NS", + "location": { + "column": "11", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_CONTROL_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@10985@macro@__TZ_set_CONTROL_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_CONTROL_NS", + "location": { + "column": "11", + "line": "359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_CONTROL_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11059@macro@__TZ_get_PSP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_PSP_NS", + "location": { + "column": "11", + "line": "360", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_PSP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11120@macro@__TZ_set_PSP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_PSP_NS", + "location": { + "column": "11", + "line": "361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_PSP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11190@macro@__TZ_get_MSP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_MSP_NS", + "location": { + "column": "11", + "line": "362", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_MSP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11251@macro@__TZ_set_MSP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_MSP_NS", + "location": { + "column": "11", + "line": "363", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_MSP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11321@macro@__TZ_get_SP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_SP_NS", + "location": { + "column": "11", + "line": "364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_SP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11381@macro@__TZ_set_SP_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_SP_NS", + "location": { + "column": "11", + "line": "365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_SP_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11450@macro@__TZ_get_PRIMASK_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_PRIMASK_NS", + "location": { + "column": "11", + "line": "366", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_PRIMASK_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11515@macro@__TZ_set_PRIMASK_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_PRIMASK_NS", + "location": { + "column": "11", + "line": "367", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_PRIMASK_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11589@macro@__TZ_get_BASEPRI_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_BASEPRI_NS", + "location": { + "column": "11", + "line": "368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_BASEPRI_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11654@macro@__TZ_set_BASEPRI_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_BASEPRI_NS", + "location": { + "column": "11", + "line": "369", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_BASEPRI_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11728@macro@__TZ_get_FAULTMASK_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_FAULTMASK_NS", + "location": { + "column": "11", + "line": "370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_FAULTMASK_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@11795@macro@__TZ_set_FAULTMASK_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_FAULTMASK_NS", + "location": { + "column": "11", + "line": "371", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_FAULTMASK_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12088@macro@__TZ_get_PSPLIM_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_PSPLIM_NS", + "location": { + "column": "13", + "line": "376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_PSPLIM_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12132@macro@__TZ_set_PSPLIM_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_PSPLIM_NS", + "location": { + "column": "13", + "line": "377", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_PSPLIM_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12343@macro@__TZ_get_MSPLIM_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_get_MSPLIM_NS", + "location": { + "column": "11", + "line": "383", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_get_MSPLIM_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12407@macro@__TZ_set_MSPLIM_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__TZ_set_MSPLIM_NS", + "location": { + "column": "11", + "line": "384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__TZ_set_MSPLIM_NS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12482@macro@__NOP", + "What": "MacroDef", + "defdec": "Def", + "display": "__NOP", + "location": { + "column": "11", + "line": "386", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__NOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12532@macro@__CLZ", + "What": "MacroDef", + "defdec": "Def", + "display": "__CLZ", + "location": { + "column": "11", + "line": "388", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__CLZ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12571@macro@__CLREX", + "What": "MacroDef", + "defdec": "Def", + "display": "__CLREX", + "location": { + "column": "11", + "line": "389", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__CLREX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12614@macro@__DMB", + "What": "MacroDef", + "defdec": "Def", + "display": "__DMB", + "location": { + "column": "11", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__DMB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12653@macro@__DSB", + "What": "MacroDef", + "defdec": "Def", + "display": "__DSB", + "location": { + "column": "11", + "line": "392", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__DSB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12692@macro@__ISB", + "What": "MacroDef", + "defdec": "Def", + "display": "__ISB", + "location": { + "column": "11", + "line": "393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ISB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12733@macro@__LDREXB", + "What": "MacroDef", + "defdec": "Def", + "display": "__LDREXB", + "location": { + "column": "11", + "line": "395", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDREXB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12775@macro@__LDREXH", + "What": "MacroDef", + "defdec": "Def", + "display": "__LDREXH", + "location": { + "column": "11", + "line": "396", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDREXH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12817@macro@__LDREXW", + "What": "MacroDef", + "defdec": "Def", + "display": "__LDREXW", + "location": { + "column": "11", + "line": "397", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDREXW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12860@macro@__RBIT", + "What": "MacroDef", + "defdec": "Def", + "display": "__RBIT", + "location": { + "column": "11", + "line": "399", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__RBIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12900@macro@__REV", + "What": "MacroDef", + "defdec": "Def", + "display": "__REV", + "location": { + "column": "11", + "line": "400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__REV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@12939@macro@__REV16", + "What": "MacroDef", + "defdec": "Def", + "display": "__REV16", + "location": { + "column": "11", + "line": "401", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__REV16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__REVSH", + "What": "Function", + "defdec": "Def", + "display": "int16_t __REVSH(int16_t)", + "location": { + "column": "20", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__REVSH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13083@macro@__ROR", + "What": "MacroDef", + "defdec": "Def", + "display": "__ROR", + "location": { + "column": "11", + "line": "408", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__ROR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13122@macro@__RRX", + "What": "MacroDef", + "defdec": "Def", + "display": "__RRX", + "location": { + "column": "11", + "line": "409", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__RRX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13163@macro@__SEV", + "What": "MacroDef", + "defdec": "Def", + "display": "__SEV", + "location": { + "column": "11", + "line": "411", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SEV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13230@macro@__SSAT", + "What": "MacroDef", + "defdec": "Def", + "display": "__SSAT", + "location": { + "column": "13", + "line": "414", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SSAT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13282@macro@__STREXB", + "What": "MacroDef", + "defdec": "Def", + "display": "__STREXB", + "location": { + "column": "11", + "line": "417", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STREXB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13324@macro@__STREXH", + "What": "MacroDef", + "defdec": "Def", + "display": "__STREXH", + "location": { + "column": "11", + "line": "418", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STREXH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13366@macro@__STREXW", + "What": "MacroDef", + "defdec": "Def", + "display": "__STREXW", + "location": { + "column": "11", + "line": "419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STREXW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13435@macro@__USAT", + "What": "MacroDef", + "defdec": "Def", + "display": "__USAT", + "location": { + "column": "13", + "line": "422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USAT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13487@macro@__WFE", + "What": "MacroDef", + "defdec": "Def", + "display": "__WFE", + "location": { + "column": "11", + "line": "425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__WFE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13526@macro@__WFI", + "What": "MacroDef", + "defdec": "Def", + "display": "__WFI", + "location": { + "column": "11", + "line": "426", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__WFI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13590@macro@__SADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__SADD8", + "location": { + "column": "13", + "line": "429", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13633@macro@__QADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__QADD8", + "location": { + "column": "13", + "line": "430", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13676@macro@__SHADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHADD8", + "location": { + "column": "13", + "line": "431", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13720@macro@__UADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__UADD8", + "location": { + "column": "13", + "line": "432", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13763@macro@__UQADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQADD8", + "location": { + "column": "13", + "line": "433", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13807@macro@__UHADD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHADD8", + "location": { + "column": "13", + "line": "434", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHADD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13851@macro@__SSUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__SSUB8", + "location": { + "column": "13", + "line": "435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SSUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13894@macro@__QSUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__QSUB8", + "location": { + "column": "13", + "line": "436", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QSUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13937@macro@__SHSUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHSUB8", + "location": { + "column": "13", + "line": "437", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHSUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@13981@macro@__USUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__USUB8", + "location": { + "column": "13", + "line": "438", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14024@macro@__UQSUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQSUB8", + "location": { + "column": "13", + "line": "439", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQSUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14068@macro@__UHSUB8", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHSUB8", + "location": { + "column": "13", + "line": "440", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHSUB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14112@macro@__SADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SADD16", + "location": { + "column": "13", + "line": "441", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14156@macro@__QADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__QADD16", + "location": { + "column": "13", + "line": "442", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14200@macro@__SHADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHADD16", + "location": { + "column": "13", + "line": "443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14245@macro@__UADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UADD16", + "location": { + "column": "13", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14289@macro@__UQADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQADD16", + "location": { + "column": "13", + "line": "445", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14334@macro@__UHADD16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHADD16", + "location": { + "column": "13", + "line": "446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHADD16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14379@macro@__SSUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SSUB16", + "location": { + "column": "13", + "line": "447", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SSUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14423@macro@__QSUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__QSUB16", + "location": { + "column": "13", + "line": "448", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QSUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14467@macro@__SHSUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHSUB16", + "location": { + "column": "13", + "line": "449", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHSUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14512@macro@__USUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__USUB16", + "location": { + "column": "13", + "line": "450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14556@macro@__UQSUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQSUB16", + "location": { + "column": "13", + "line": "451", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQSUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14601@macro@__UHSUB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHSUB16", + "location": { + "column": "13", + "line": "452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHSUB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14646@macro@__SASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SASX", + "location": { + "column": "13", + "line": "453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14688@macro@__QASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__QASX", + "location": { + "column": "13", + "line": "454", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14730@macro@__SHASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHASX", + "location": { + "column": "13", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14773@macro@__UASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__UASX", + "location": { + "column": "13", + "line": "456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14815@macro@__UQASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQASX", + "location": { + "column": "13", + "line": "457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14858@macro@__UHASX", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHASX", + "location": { + "column": "13", + "line": "458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHASX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14901@macro@__SSAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SSAX", + "location": { + "column": "13", + "line": "459", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SSAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14943@macro@__QSAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__QSAX", + "location": { + "column": "13", + "line": "460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QSAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@14985@macro@__SHSAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SHSAX", + "location": { + "column": "13", + "line": "461", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SHSAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15028@macro@__USAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__USAX", + "location": { + "column": "13", + "line": "462", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15070@macro@__UQSAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__UQSAX", + "location": { + "column": "13", + "line": "463", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UQSAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15113@macro@__UHSAX", + "What": "MacroDef", + "defdec": "Def", + "display": "__UHSAX", + "location": { + "column": "13", + "line": "464", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UHSAX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15156@macro@__USAD8", + "What": "MacroDef", + "defdec": "Def", + "display": "__USAD8", + "location": { + "column": "13", + "line": "465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USAD8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15199@macro@__USADA8", + "What": "MacroDef", + "defdec": "Def", + "display": "__USADA8", + "location": { + "column": "13", + "line": "466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USADA8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15243@macro@__SSAT16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SSAT16", + "location": { + "column": "13", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SSAT16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15287@macro@__USAT16", + "What": "MacroDef", + "defdec": "Def", + "display": "__USAT16", + "location": { + "column": "13", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__USAT16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15331@macro@__UXTB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UXTB16", + "location": { + "column": "13", + "line": "469", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UXTB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15375@macro@__UXTAB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__UXTAB16", + "location": { + "column": "13", + "line": "470", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__UXTAB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15420@macro@__SXTB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SXTB16", + "location": { + "column": "13", + "line": "471", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SXTB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15464@macro@__SXTAB16", + "What": "MacroDef", + "defdec": "Def", + "display": "__SXTAB16", + "location": { + "column": "13", + "line": "472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SXTAB16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15509@macro@__SMUAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMUAD", + "location": { + "column": "13", + "line": "473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMUAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15552@macro@__SMUADX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMUADX", + "location": { + "column": "13", + "line": "474", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMUADX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15596@macro@__SMMLA", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMMLA", + "location": { + "column": "13", + "line": "475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMMLA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15639@macro@__SMLAD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLAD", + "location": { + "column": "13", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLAD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15682@macro@__SMLADX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLADX", + "location": { + "column": "13", + "line": "477", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLADX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15726@macro@__SMLALD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLALD", + "location": { + "column": "13", + "line": "478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLALD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15770@macro@__SMLALDX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLALDX", + "location": { + "column": "13", + "line": "479", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLALDX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15815@macro@__SMUSD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMUSD", + "location": { + "column": "13", + "line": "480", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMUSD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15858@macro@__SMUSDX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMUSDX", + "location": { + "column": "13", + "line": "481", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMUSDX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15902@macro@__SMLSD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLSD", + "location": { + "column": "13", + "line": "482", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLSD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15945@macro@__SMLSDX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLSDX", + "location": { + "column": "13", + "line": "483", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLSDX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@15989@macro@__SMLSLD", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLSLD", + "location": { + "column": "13", + "line": "484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLSLD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16033@macro@__SMLSLDX", + "What": "MacroDef", + "defdec": "Def", + "display": "__SMLSLDX", + "location": { + "column": "13", + "line": "485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SMLSLDX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16078@macro@__SEL", + "What": "MacroDef", + "defdec": "Def", + "display": "__SEL", + "location": { + "column": "13", + "line": "486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__SEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16119@macro@__QADD", + "What": "MacroDef", + "defdec": "Def", + "display": "__QADD", + "location": { + "column": "13", + "line": "487", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QADD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16161@macro@__QSUB", + "What": "MacroDef", + "defdec": "Def", + "display": "__QSUB", + "location": { + "column": "13", + "line": "488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__QSUB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16203@macro@__PKHBT", + "What": "MacroDef", + "defdec": "Def", + "display": "__PKHBT", + "location": { + "column": "13", + "line": "489", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PKHBT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@16246@macro@__PKHTB", + "What": "MacroDef", + "defdec": "Def", + "display": "__PKHTB", + "location": { + "column": "13", + "line": "490", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__PKHTB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@24670@macro@__BKPT", + "What": "MacroDef", + "defdec": "Def", + "display": "__BKPT", + "location": { + "column": "9", + "line": "794", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__BKPT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__LDRBT", + "What": "Function", + "defdec": "Def", + "display": "uint8_t __LDRBT(volatile uint8_t *)", + "location": { + "column": "20", + "line": "835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDRBT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@25613@F@__LDRBT@res", + "What": "Variable", + "defdec": "Def", + "display": "res", + "location": { + "column": "14", + "line": "837", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "res", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__LDRHT", + "What": "Function", + "defdec": "Def", + "display": "uint16_t __LDRHT(volatile uint16_t *)", + "location": { + "column": "21", + "line": "842", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDRHT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@25793@F@__LDRHT@res", + "What": "Variable", + "defdec": "Def", + "display": "res", + "location": { + "column": "14", + "line": "844", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "res", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__LDRT", + "What": "Function", + "defdec": "Def", + "display": "uint32_t __LDRT(volatile uint32_t *)", + "location": { + "column": "21", + "line": "849", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__LDRT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:cmsis_iccarm.h@25973@F@__LDRT@res", + "What": "Variable", + "defdec": "Def", + "display": "res", + "location": { + "column": "14", + "line": "851", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "res", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__STRBT", + "What": "Function", + "defdec": "Def", + "display": "void __STRBT(uint8_t, volatile uint8_t *)", + "location": { + "column": "17", + "line": "856", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STRBT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__STRHT", + "What": "Function", + "defdec": "Def", + "display": "void __STRHT(uint16_t, volatile uint16_t *)", + "location": { + "column": "17", + "line": "861", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STRHT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@__STRT", + "What": "Function", + "defdec": "Def", + "display": "void __STRT(uint32_t, volatile uint32_t *)", + "location": { + "column": "17", + "line": "866", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Include\\cmsis_iccarm.h" + }, + "name": "__STRT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@802@macro@STM32L4xx_HAL_FLASH_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_FLASH_H", + "location": { + "column": "9", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "STM32L4xx_HAL_FLASH_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@FLASH_EraseInitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "members": [ + { + "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@TypeErase", + "What": "FieldDecl", + "defdec": "Def", + "display": "TypeErase", + "location": { + "column": "12", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "TypeErase", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" + }, + { + "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@Banks", + "What": "FieldDecl", + "defdec": "Def", + "display": "Banks", + "location": { + "column": "12", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Banks", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" + }, + { + "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@Page", + "What": "FieldDecl", + "defdec": "Def", + "display": "Page", + "location": { + "column": "12", + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Page", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" + }, + { + "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@NbPages", + "What": "FieldDecl", + "defdec": "Def", + "display": "NbPages", + "location": { + "column": "12", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "NbPages", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FLASH_EraseInitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct FLASH_EraseInitTypeDef", + "location": { + "column": "3", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_EraseInitTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "members": [ + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@OptionType", + "What": "FieldDecl", + "defdec": "Def", + "display": "OptionType", + "location": { + "column": "12", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OptionType", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPArea", + "What": "FieldDecl", + "defdec": "Def", + "display": "WRPArea", + "location": { + "column": "12", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "WRPArea", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPStartOffset", + "What": "FieldDecl", + "defdec": "Def", + "display": "WRPStartOffset", + "location": { + "column": "12", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "WRPStartOffset", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPEndOffset", + "What": "FieldDecl", + "defdec": "Def", + "display": "WRPEndOffset", + "location": { + "column": "12", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "WRPEndOffset", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@RDPLevel", + "What": "FieldDecl", + "defdec": "Def", + "display": "RDPLevel", + "location": { + "column": "12", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "RDPLevel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@USERType", + "What": "FieldDecl", + "defdec": "Def", + "display": "USERType", + "location": { + "column": "12", + "line": "76", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "USERType", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@USERConfig", + "What": "FieldDecl", + "defdec": "Def", + "display": "USERConfig", + "location": { + "column": "12", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "USERConfig", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPConfig", + "What": "FieldDecl", + "defdec": "Def", + "display": "PCROPConfig", + "location": { + "column": "12", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "PCROPConfig", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPStartAddr", + "What": "FieldDecl", + "defdec": "Def", + "display": "PCROPStartAddr", + "location": { + "column": "12", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "PCROPStartAddr", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + }, + { + "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPEndAddr", + "What": "FieldDecl", + "defdec": "Def", + "display": "PCROPEndAddr", + "location": { + "column": "12", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "PCROPEndAddr", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FLASH_OBProgramInitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct FLASH_OBProgramInitTypeDef", + "location": { + "column": "3", + "line": "95", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_OBProgramInitTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_ProcedureTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_NONE", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_PROC_NONE", + "location": { + "column": "3", + "line": "102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PROC_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PAGE_ERASE", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_PROC_PAGE_ERASE", + "location": { + "column": "3", + "line": "103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PROC_PAGE_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_MASS_ERASE", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_PROC_MASS_ERASE", + "location": { + "column": "3", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PROC_MASS_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PROGRAM", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_PROC_PROGRAM", + "location": { + "column": "3", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PROC_PROGRAM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PROGRAM_LAST", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_PROC_PROGRAM_LAST", + "location": { + "column": "3", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PROC_PROGRAM_LAST", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FLASH_ProcedureTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum FLASH_ProcedureTypeDef", + "location": { + "column": "3", + "line": "107", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_ProcedureTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_CacheTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_DISABLED", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_CACHE_DISABLED", + "location": { + "column": "3", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_CACHE_DISABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_ICACHE_ENABLED", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_CACHE_ICACHE_ENABLED", + "location": { + "column": "3", + "line": "115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_CACHE_ICACHE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_DCACHE_ENABLED", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_CACHE_DCACHE_ENABLED", + "location": { + "column": "3", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_CACHE_DCACHE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_ICACHE_DCACHE_ENABLED", + "What": "Enumerator", + "defdec": "Def", + "display": "FLASH_CACHE_ICACHE_DCACHE_ENABLED", + "location": { + "column": "3", + "line": "117", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_CACHE_ICACHE_DCACHE_ENABLED", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FLASH_CacheTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum FLASH_CacheTypeDef", + "location": { + "column": "3", + "line": "118", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_CacheTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "members": [ + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Lock", + "What": "FieldDecl", + "defdec": "Def", + "display": "Lock", + "location": { + "column": "31", + "line": "125", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Lock", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@ErrorCode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ErrorCode", + "location": { + "column": "31", + "line": "126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "ErrorCode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@ProcedureOnGoing", + "What": "FieldDecl", + "defdec": "Def", + "display": "ProcedureOnGoing", + "location": { + "column": "31", + "line": "127", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "ProcedureOnGoing", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Address", + "What": "FieldDecl", + "defdec": "Def", + "display": "Address", + "location": { + "column": "31", + "line": "128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Address", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Bank", + "What": "FieldDecl", + "defdec": "Def", + "display": "Bank", + "location": { + "column": "31", + "line": "129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Bank", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Page", + "What": "FieldDecl", + "defdec": "Def", + "display": "Page", + "location": { + "column": "31", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "Page", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@NbPagesToErase", + "What": "FieldDecl", + "defdec": "Def", + "display": "NbPagesToErase", + "location": { + "column": "31", + "line": "131", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "NbPagesToErase", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@SA@FLASH_ProcessTypeDef@FI@CacheToReactivate", + "What": "FieldDecl", + "defdec": "Def", + "display": "CacheToReactivate", + "location": { + "column": "31", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "CacheToReactivate", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + }, + { + "ID": "c:@T@FLASH_ProcessTypeDef", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct FLASH_ProcessTypeDef", + "location": { + "column": "2", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_ProcessTypeDef", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@6900@macro@HAL_FLASH_ERROR_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_NONE", + "location": { + "column": "9", + "line": "147", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@6947@macro@HAL_FLASH_ERROR_OP", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_OP", + "location": { + "column": "9", + "line": "148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_OP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@6999@macro@HAL_FLASH_ERROR_PROG", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_PROG", + "location": { + "column": "9", + "line": "149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_PROG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7053@macro@HAL_FLASH_ERROR_WRP", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_WRP", + "location": { + "column": "9", + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_WRP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7106@macro@HAL_FLASH_ERROR_PGA", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_PGA", + "location": { + "column": "9", + "line": "151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_PGA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7159@macro@HAL_FLASH_ERROR_SIZ", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_SIZ", + "location": { + "column": "9", + "line": "152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_SIZ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7212@macro@HAL_FLASH_ERROR_PGS", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_PGS", + "location": { + "column": "9", + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_PGS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7265@macro@HAL_FLASH_ERROR_MIS", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_MIS", + "location": { + "column": "9", + "line": "154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_MIS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7318@macro@HAL_FLASH_ERROR_FAST", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_FAST", + "location": { + "column": "9", + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_FAST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7372@macro@HAL_FLASH_ERROR_RD", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_RD", + "location": { + "column": "9", + "line": "156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_RD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7424@macro@HAL_FLASH_ERROR_OPTV", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_OPTV", + "location": { + "column": "9", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_OPTV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7478@macro@HAL_FLASH_ERROR_ECCC", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_ECCC", + "location": { + "column": "9", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_ECCC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@7529@macro@HAL_FLASH_ERROR_ECCD", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_ECCD", + "location": { + "column": "9", + "line": "159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_ECCD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@8103@macro@HAL_FLASH_ERROR_PEMPTY", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_ERROR_PEMPTY", + "location": { + "column": "9", + "line": "164", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_ERROR_PEMPTY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@8248@macro@FLASH_TYPEERASE_PAGES", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TYPEERASE_PAGES", + "location": { + "column": "9", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TYPEERASE_PAGES", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@8324@macro@FLASH_TYPEERASE_MASSERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TYPEERASE_MASSERASE", + "location": { + "column": "9", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TYPEERASE_MASSERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@8485@macro@FLASH_BANK_1", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_BANK_1", + "location": { + "column": "9", + "line": "182", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_BANK_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@9173@macro@FLASH_BANK_BOTH", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_BANK_BOTH", + "location": { + "column": "9", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_BANK_BOTH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@9365@macro@FLASH_TYPEPROGRAM_DOUBLEWORD", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TYPEPROGRAM_DOUBLEWORD", + "location": { + "column": "9", + "line": "199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TYPEPROGRAM_DOUBLEWORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@9485@macro@FLASH_TYPEPROGRAM_FAST", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TYPEPROGRAM_FAST", + "location": { + "column": "9", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TYPEPROGRAM_FAST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@9743@macro@FLASH_TYPEPROGRAM_FAST_AND_LAST", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TYPEPROGRAM_FAST_AND_LAST", + "location": { + "column": "9", + "line": "202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TYPEPROGRAM_FAST_AND_LAST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10090@macro@OPTIONBYTE_WRP", + "What": "MacroDef", + "defdec": "Def", + "display": "OPTIONBYTE_WRP", + "location": { + "column": "9", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OPTIONBYTE_WRP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10181@macro@OPTIONBYTE_RDP", + "What": "MacroDef", + "defdec": "Def", + "display": "OPTIONBYTE_RDP", + "location": { + "column": "9", + "line": "212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OPTIONBYTE_RDP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10272@macro@OPTIONBYTE_USER", + "What": "MacroDef", + "defdec": "Def", + "display": "OPTIONBYTE_USER", + "location": { + "column": "9", + "line": "213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OPTIONBYTE_USER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10364@macro@OPTIONBYTE_PCROP", + "What": "MacroDef", + "defdec": "Def", + "display": "OPTIONBYTE_PCROP", + "location": { + "column": "9", + "line": "214", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OPTIONBYTE_PCROP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10540@macro@OB_WRPAREA_BANK1_AREAA", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_WRPAREA_BANK1_AREAA", + "location": { + "column": "9", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_WRPAREA_BANK1_AREAA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@10621@macro@OB_WRPAREA_BANK1_AREAB", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_WRPAREA_BANK1_AREAB", + "location": { + "column": "9", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_WRPAREA_BANK1_AREAB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@11373@macro@OB_RDP_LEVEL_0", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_RDP_LEVEL_0", + "location": { + "column": "9", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_RDP_LEVEL_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@11425@macro@OB_RDP_LEVEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_RDP_LEVEL_1", + "location": { + "column": "9", + "line": "238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_RDP_LEVEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@11477@macro@OB_RDP_LEVEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_RDP_LEVEL_2", + "location": { + "column": "9", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_RDP_LEVEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@11788@macro@OB_USER_BOR_LEV", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_BOR_LEV", + "location": { + "column": "9", + "line": "248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_BOR_LEV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@11884@macro@OB_USER_nRST_STOP", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nRST_STOP", + "location": { + "column": "9", + "line": "249", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nRST_STOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@12008@macro@OB_USER_nRST_STDBY", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nRST_STDBY", + "location": { + "column": "9", + "line": "250", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nRST_STDBY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@12135@macro@OB_USER_IWDG_SW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_IWDG_SW", + "location": { + "column": "9", + "line": "251", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_IWDG_SW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@12246@macro@OB_USER_IWDG_STOP", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_IWDG_STOP", + "location": { + "column": "9", + "line": "252", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_IWDG_STOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@12375@macro@OB_USER_IWDG_STDBY", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_IWDG_STDBY", + "location": { + "column": "9", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_IWDG_STDBY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@12507@macro@OB_USER_WWDG_SW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_WWDG_SW", + "location": { + "column": "9", + "line": "254", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_WWDG_SW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@13530@macro@OB_USER_nBOOT1", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nBOOT1", + "location": { + "column": "9", + "line": "265", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nBOOT1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@13629@macro@OB_USER_SRAM2_PE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_SRAM2_PE", + "location": { + "column": "9", + "line": "266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_SRAM2_PE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@13735@macro@OB_USER_SRAM2_RST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_SRAM2_RST", + "location": { + "column": "9", + "line": "267", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_SRAM2_RST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@13845@macro@OB_USER_nRST_SHDW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nRST_SHDW", + "location": { + "column": "9", + "line": "268", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nRST_SHDW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@14496@macro@OB_USER_nSWBOOT0", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nSWBOOT0", + "location": { + "column": "9", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nSWBOOT0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@14591@macro@OB_USER_nBOOT0", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_USER_nBOOT0", + "location": { + "column": "9", + "line": "274", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_USER_nBOOT0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15157@macro@OB_BOR_LEVEL_0", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOR_LEVEL_0", + "location": { + "column": "9", + "line": "286", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOR_LEVEL_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15274@macro@OB_BOR_LEVEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOR_LEVEL_1", + "location": { + "column": "9", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOR_LEVEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15391@macro@OB_BOR_LEVEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOR_LEVEL_2", + "location": { + "column": "9", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOR_LEVEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15508@macro@OB_BOR_LEVEL_3", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOR_LEVEL_3", + "location": { + "column": "9", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOR_LEVEL_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15625@macro@OB_BOR_LEVEL_4", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOR_LEVEL_4", + "location": { + "column": "9", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOR_LEVEL_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15854@macro@OB_STOP_RST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_STOP_RST", + "location": { + "column": "9", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_STOP_RST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@15978@macro@OB_STOP_NORST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_STOP_NORST", + "location": { + "column": "9", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_STOP_NORST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@16223@macro@OB_STANDBY_RST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_STANDBY_RST", + "location": { + "column": "9", + "line": "307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_STANDBY_RST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@16350@macro@OB_STANDBY_NORST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_STANDBY_NORST", + "location": { + "column": "9", + "line": "308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_STANDBY_NORST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@16600@macro@OB_SHUTDOWN_RST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SHUTDOWN_RST", + "location": { + "column": "9", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SHUTDOWN_RST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@16728@macro@OB_SHUTDOWN_NORST", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SHUTDOWN_NORST", + "location": { + "column": "9", + "line": "317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SHUTDOWN_NORST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@16965@macro@OB_IWDG_HW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_HW", + "location": { + "column": "9", + "line": "325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_HW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@17075@macro@OB_IWDG_SW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_SW", + "location": { + "column": "9", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_SW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@17301@macro@OB_IWDG_STOP_FREEZE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_STOP_FREEZE", + "location": { + "column": "9", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_STOP_FREEZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@17433@macro@OB_IWDG_STOP_RUN", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_STOP_RUN", + "location": { + "column": "9", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_STOP_RUN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@17688@macro@OB_IWDG_STDBY_FREEZE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_STDBY_FREEZE", + "location": { + "column": "9", + "line": "343", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_STDBY_FREEZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@17823@macro@OB_IWDG_STDBY_RUN", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_IWDG_STDBY_RUN", + "location": { + "column": "9", + "line": "344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_IWDG_STDBY_RUN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@18065@macro@OB_WWDG_HW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_WWDG_HW", + "location": { + "column": "9", + "line": "352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_WWDG_HW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@18170@macro@OB_WWDG_SW", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_WWDG_SW", + "location": { + "column": "9", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_WWDG_SW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@20497@macro@OB_BOOT1_SRAM", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT1_SRAM", + "location": { + "column": "9", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT1_SRAM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@20631@macro@OB_BOOT1_SYSTEM", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT1_SYSTEM", + "location": { + "column": "9", + "line": "404", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT1_SYSTEM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@20885@macro@OB_SRAM2_PARITY_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SRAM2_PARITY_ENABLE", + "location": { + "column": "9", + "line": "412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SRAM2_PARITY_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@20991@macro@OB_SRAM2_PARITY_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SRAM2_PARITY_DISABLE", + "location": { + "column": "9", + "line": "413", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SRAM2_PARITY_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@21222@macro@OB_SRAM2_RST_ERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SRAM2_RST_ERASE", + "location": { + "column": "9", + "line": "421", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SRAM2_RST_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@21342@macro@OB_SRAM2_RST_NOT_ERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_SRAM2_RST_NOT_ERASE", + "location": { + "column": "9", + "line": "422", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_SRAM2_RST_NOT_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22104@macro@OB_BOOT0_FROM_OB", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT0_FROM_OB", + "location": { + "column": "9", + "line": "434", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT0_FROM_OB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22223@macro@OB_BOOT0_FROM_PIN", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT0_FROM_PIN", + "location": { + "column": "9", + "line": "435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT0_FROM_PIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22447@macro@OB_BOOT0_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT0_RESET", + "location": { + "column": "9", + "line": "443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT0_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22538@macro@OB_BOOT0_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_BOOT0_SET", + "location": { + "column": "9", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_BOOT0_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22749@macro@OB_PCROP_RDP_NOT_ERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_PCROP_RDP_NOT_ERASE", + "location": { + "column": "9", + "line": "453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_PCROP_RDP_NOT_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@22987@macro@OB_PCROP_RDP_ERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "OB_PCROP_RDP_ERASE", + "location": { + "column": "9", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "OB_PCROP_RDP_ERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@23317@macro@FLASH_LATENCY_0", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_LATENCY_0", + "location": { + "column": "9", + "line": "464", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_LATENCY_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@23419@macro@FLASH_LATENCY_1", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_LATENCY_1", + "location": { + "column": "9", + "line": "465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_LATENCY_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@23520@macro@FLASH_LATENCY_2", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_LATENCY_2", + "location": { + "column": "9", + "line": "466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_LATENCY_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@23622@macro@FLASH_LATENCY_3", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_LATENCY_3", + "location": { + "column": "9", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_LATENCY_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@23726@macro@FLASH_LATENCY_4", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_LATENCY_4", + "location": { + "column": "9", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_LATENCY_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@25255@macro@FLASH_KEY1", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_KEY1", + "location": { + "column": "9", + "line": "489", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_KEY1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@25346@macro@FLASH_KEY2", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_KEY2", + "location": { + "column": "9", + "line": "490", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_KEY2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@25575@macro@FLASH_PDKEY1", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_PDKEY1", + "location": { + "column": "9", + "line": "493", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PDKEY1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@25677@macro@FLASH_PDKEY2", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_PDKEY2", + "location": { + "column": "9", + "line": "494", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PDKEY2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@25920@macro@FLASH_OPTKEY1", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_OPTKEY1", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_OPTKEY1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26023@macro@FLASH_OPTKEY2", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_OPTKEY2", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_OPTKEY2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26346@macro@FLASH_FLAG_EOP", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_EOP", + "location": { + "column": "9", + "line": "507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_EOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26454@macro@FLASH_FLAG_OPERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_OPERR", + "location": { + "column": "9", + "line": "508", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_OPERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26561@macro@FLASH_FLAG_PROGERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_PROGERR", + "location": { + "column": "9", + "line": "509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_PROGERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26670@macro@FLASH_FLAG_WRPERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_WRPERR", + "location": { + "column": "9", + "line": "510", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_WRPERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26784@macro@FLASH_FLAG_PGAERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_PGAERR", + "location": { + "column": "9", + "line": "511", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_PGAERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@26903@macro@FLASH_FLAG_SIZERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_SIZERR", + "location": { + "column": "9", + "line": "512", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_SIZERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27006@macro@FLASH_FLAG_PGSERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_PGSERR", + "location": { + "column": "9", + "line": "513", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_PGSERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27124@macro@FLASH_FLAG_MISERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_MISERR", + "location": { + "column": "9", + "line": "514", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_MISERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27248@macro@FLASH_FLAG_FASTERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_FASTERR", + "location": { + "column": "9", + "line": "515", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_FASTERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27362@macro@FLASH_FLAG_RDERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_RDERR", + "location": { + "column": "9", + "line": "516", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_RDERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27470@macro@FLASH_FLAG_OPTVERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_OPTVERR", + "location": { + "column": "9", + "line": "517", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_OPTVERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@27584@macro@FLASH_FLAG_BSY", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_BSY", + "location": { + "column": "9", + "line": "518", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_BSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@28153@macro@FLASH_FLAG_PEMPTY", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_PEMPTY", + "location": { + "column": "9", + "line": "523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_PEMPTY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@28253@macro@FLASH_FLAG_SR_ERRORS", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_SR_ERRORS", + "location": { + "column": "9", + "line": "524", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_SR_ERRORS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@29417@macro@FLASH_FLAG_ECCC", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_ECCC", + "location": { + "column": "9", + "line": "539", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_ECCC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@29518@macro@FLASH_FLAG_ECCD", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_ECCD", + "location": { + "column": "9", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_ECCD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@29626@macro@FLASH_FLAG_ECCR_ERRORS", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_ECCR_ERRORS", + "location": { + "column": "9", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_ECCR_ERRORS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@29699@macro@FLASH_FLAG_ALL_ERRORS", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_FLAG_ALL_ERRORS", + "location": { + "column": "9", + "line": "544", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_FLAG_ALL_ERRORS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@30224@macro@FLASH_IT_EOP", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_IT_EOP", + "location": { + "column": "9", + "line": "556", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_IT_EOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@30344@macro@FLASH_IT_OPERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_IT_OPERR", + "location": { + "column": "9", + "line": "557", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_IT_OPERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@30447@macro@FLASH_IT_RDERR", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_IT_RDERR", + "location": { + "column": "9", + "line": "558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_IT_RDERR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@30560@macro@FLASH_IT_ECCC", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_IT_ECCC", + "location": { + "column": "9", + "line": "559", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_IT_ECCC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@31330@macro@__HAL_FLASH_SET_LATENCY", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_SET_LATENCY", + "location": { + "column": "9", + "line": "581", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_SET_LATENCY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@31846@macro@__HAL_FLASH_GET_LATENCY", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_GET_LATENCY", + "location": { + "column": "9", + "line": "593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_GET_LATENCY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32013@macro@__HAL_FLASH_PREFETCH_BUFFER_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_PREFETCH_BUFFER_ENABLE", + "location": { + "column": "9", + "line": "599", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_PREFETCH_BUFFER_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32179@macro@__HAL_FLASH_PREFETCH_BUFFER_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_PREFETCH_BUFFER_DISABLE", + "location": { + "column": "9", + "line": "605", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_PREFETCH_BUFFER_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32348@macro@__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", + "location": { + "column": "9", + "line": "611", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32514@macro@__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", + "location": { + "column": "9", + "line": "617", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32674@macro@__HAL_FLASH_DATA_CACHE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_DATA_CACHE_ENABLE", + "location": { + "column": "9", + "line": "623", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_DATA_CACHE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@32833@macro@__HAL_FLASH_DATA_CACHE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_DATA_CACHE_DISABLE", + "location": { + "column": "9", + "line": "629", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_DATA_CACHE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@33084@macro@__HAL_FLASH_INSTRUCTION_CACHE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_INSTRUCTION_CACHE_RESET", + "location": { + "column": "9", + "line": "636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_INSTRUCTION_CACHE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@33490@macro@__HAL_FLASH_DATA_CACHE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_DATA_CACHE_RESET", + "location": { + "column": "9", + "line": "645", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_DATA_CACHE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@33978@macro@__HAL_FLASH_POWER_DOWN_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_POWER_DOWN_ENABLE", + "location": { + "column": "9", + "line": "654", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_POWER_DOWN_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@34564@macro@__HAL_FLASH_POWER_DOWN_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_POWER_DOWN_DISABLE", + "location": { + "column": "9", + "line": "664", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_POWER_DOWN_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@35017@macro@__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", + "location": { + "column": "9", + "line": "673", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@35207@macro@__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", + "location": { + "column": "9", + "line": "679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@35853@macro@__HAL_FLASH_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_ENABLE_IT", + "location": { + "column": "9", + "line": "700", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@36643@macro@__HAL_FLASH_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_DISABLE_IT", + "location": { + "column": "9", + "line": "714", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@38333@macro@__HAL_FLASH_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_GET_FLAG", + "location": { + "column": "9", + "line": "739", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@39763@macro@__HAL_FLASH_CLEAR_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_FLASH_CLEAR_FLAG", + "location": { + "column": "9", + "line": "763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "__HAL_FLASH_CLEAR_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "20", + "line": "783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Program", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "20", + "line": "783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Program", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "20", + "line": "784", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Program_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "20", + "line": "784", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Program_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_IRQHandler(void)", + "location": { + "column": "20", + "line": "786", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_IRQHandler(void)", + "location": { + "column": "20", + "line": "786", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", + "location": { + "column": "20", + "line": "788", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_EndOfOperationCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", + "location": { + "column": "20", + "line": "788", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_EndOfOperationCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OperationErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", + "location": { + "column": "20", + "line": "789", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OperationErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OperationErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", + "location": { + "column": "20", + "line": "789", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OperationErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Unlock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", + "location": { + "column": "20", + "line": "798", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Unlock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Unlock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", + "location": { + "column": "20", + "line": "798", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Unlock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Lock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", + "location": { + "column": "20", + "line": "799", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Lock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Lock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", + "location": { + "column": "20", + "line": "799", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_Lock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Unlock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", + "location": { + "column": "20", + "line": "801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Unlock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Unlock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", + "location": { + "column": "20", + "line": "801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Unlock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Lock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", + "location": { + "column": "20", + "line": "802", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Lock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Lock", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", + "location": { + "column": "20", + "line": "802", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Lock", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Launch", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", + "location": { + "column": "20", + "line": "803", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Launch", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Launch", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", + "location": { + "column": "20", + "line": "803", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_OB_Launch", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_FLASH_GetError(void)", + "location": { + "column": "10", + "line": "812", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_FLASH_GetError(void)", + "location": { + "column": "10", + "line": "812", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "HAL_FLASH_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@pFlash", + "What": "Variable", + "defdec": "Dec", + "display": "pFlash", + "location": { + "column": "29", + "line": "825", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "pFlash", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@pFlash", + "What": "Variable", + "defdec": "Dec", + "display": "pFlash", + "location": { + "column": "29", + "line": "825", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "pFlash", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_WaitForLastOperation", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", + "location": { + "column": "19", + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_WaitForLastOperation", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_WaitForLastOperation", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", + "location": { + "column": "19", + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_WaitForLastOperation", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@42802@macro@FLASH_BANK_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_BANK_SIZE", + "location": { + "column": "9", + "line": "848", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_BANK_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@43204@macro@FLASH_PAGE_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_PAGE_SIZE", + "location": { + "column": "9", + "line": "855", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_PAGE_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@43276@macro@FLASH_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "858", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "FLASH_TIMEOUT_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@43523@macro@IS_FLASH_TYPEERASE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_TYPEERASE", + "location": { + "column": "9", + "line": "868", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_TYPEERASE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@44468@macro@IS_FLASH_BANK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_BANK", + "location": { + "column": "9", + "line": "881", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_BANK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@44539@macro@IS_FLASH_BANK_EXCLUSIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_BANK_EXCLUSIVE", + "location": { + "column": "9", + "line": "883", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_BANK_EXCLUSIVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@44618@macro@IS_FLASH_TYPEPROGRAM", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_TYPEPROGRAM", + "location": { + "column": "9", + "line": "886", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_TYPEPROGRAM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@45163@macro@IS_FLASH_MAIN_MEM_ADDRESS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_MAIN_MEM_ADDRESS", + "location": { + "column": "9", + "line": "893", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_MAIN_MEM_ADDRESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@45926@macro@IS_FLASH_OTP_ADDRESS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_OTP_ADDRESS", + "location": { + "column": "9", + "line": "900", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_OTP_ADDRESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@46031@macro@IS_FLASH_PROGRAM_ADDRESS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_PROGRAM_ADDRESS", + "location": { + "column": "9", + "line": "902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_PROGRAM_ADDRESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@47480@macro@IS_FLASH_PAGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_PAGE", + "location": { + "column": "9", + "line": "916", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_PAGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@47826@macro@IS_OPTIONBYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OPTIONBYTE", + "location": { + "column": "9", + "line": "921", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OPTIONBYTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@48602@macro@IS_OB_WRPAREA", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_WRPAREA", + "location": { + "column": "9", + "line": "929", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_WRPAREA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@48733@macro@IS_OB_RDP_LEVEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_RDP_LEVEL", + "location": { + "column": "9", + "line": "932", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_RDP_LEVEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@49538@macro@IS_OB_USER_TYPE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_TYPE", + "location": { + "column": "9", + "line": "941", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_TYPE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@49670@macro@IS_OB_USER_BOR_LEVEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_BOR_LEVEL", + "location": { + "column": "9", + "line": "944", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_BOR_LEVEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@49964@macro@IS_OB_USER_STOP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_STOP", + "location": { + "column": "9", + "line": "948", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_STOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50067@macro@IS_OB_USER_STANDBY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_STANDBY", + "location": { + "column": "9", + "line": "950", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_STANDBY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50176@macro@IS_OB_USER_SHUTDOWN", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_SHUTDOWN", + "location": { + "column": "9", + "line": "952", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_SHUTDOWN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50287@macro@IS_OB_USER_IWDG", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_IWDG", + "location": { + "column": "9", + "line": "954", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_IWDG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50386@macro@IS_OB_USER_IWDG_STOP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_IWDG_STOP", + "location": { + "column": "9", + "line": "956", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_IWDG_STOP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50500@macro@IS_OB_USER_IWDG_STDBY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_IWDG_STDBY", + "location": { + "column": "9", + "line": "958", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_IWDG_STDBY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@50616@macro@IS_OB_USER_WWDG", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_WWDG", + "location": { + "column": "9", + "line": "960", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_WWDG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@51607@macro@IS_OB_USER_BOOT1", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_BOOT1", + "location": { + "column": "9", + "line": "974", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_BOOT1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@51714@macro@IS_OB_USER_SRAM2_PARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_SRAM2_PARITY", + "location": { + "column": "9", + "line": "976", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_SRAM2_PARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@51838@macro@IS_OB_USER_SRAM2_RST", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_SRAM2_RST", + "location": { + "column": "9", + "line": "978", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_SRAM2_RST", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@52480@macro@IS_OB_USER_SWBOOT0", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_SWBOOT0", + "location": { + "column": "9", + "line": "984", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_SWBOOT0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@52592@macro@IS_OB_USER_BOOT0", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_USER_BOOT0", + "location": { + "column": "9", + "line": "986", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_USER_BOOT0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@52705@macro@IS_OB_PCROP_RDP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_OB_PCROP_RDP", + "location": { + "column": "9", + "line": "989", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_OB_PCROP_RDP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.h@53955@macro@IS_FLASH_LATENCY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FLASH_LATENCY", + "location": { + "column": "9", + "line": "1001", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" + }, + "name": "IS_FLASH_LATENCY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:yvals.h@120@macro@_YVALS", + "What": "MacroDef", + "defdec": "Def", + "display": "_YVALS", + "location": { + "column": "9", + "line": "5", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_YVALS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@223@macro@_GLUE_B", + "What": "MacroDef", + "defdec": "Def", + "display": "_GLUE_B", + "location": { + "column": "9", + "line": "12", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_GLUE_B", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@250@macro@_GLUE", + "What": "MacroDef", + "defdec": "Def", + "display": "_GLUE", + "location": { + "column": "9", + "line": "13", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_GLUE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@285@macro@_GLUE3_B", + "What": "MacroDef", + "defdec": "Def", + "display": "_GLUE3_B", + "location": { + "column": "9", + "line": "15", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_GLUE3_B", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@318@macro@_GLUE3", + "What": "MacroDef", + "defdec": "Def", + "display": "_GLUE3", + "location": { + "column": "9", + "line": "16", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_GLUE3", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@359@macro@_STRINGIFY_B", + "What": "MacroDef", + "defdec": "Def", + "display": "_STRINGIFY_B", + "location": { + "column": "9", + "line": "18", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_STRINGIFY_B", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@387@macro@_STRINGIFY", + "What": "MacroDef", + "defdec": "Def", + "display": "_STRINGIFY", + "location": { + "column": "9", + "line": "19", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_STRINGIFY", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@486@macro@_ABINAME", + "What": "MacroDef", + "defdec": "Def", + "display": "_ABINAME", + "location": { + "column": "9", + "line": "22", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_ABINAME", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@552@macro@_CPPLIB_VER", + "What": "MacroDef", + "defdec": "Def", + "display": "_CPPLIB_VER", + "location": { + "column": "9", + "line": "25", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_CPPLIB_VER", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@634@macro@__IAR_SYSTEMS_LIB__", + "What": "MacroDef", + "defdec": "Def", + "display": "__IAR_SYSTEMS_LIB__", + "location": { + "column": "11", + "line": "29", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__IAR_SYSTEMS_LIB__", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@1770@macro@__EFF_NS", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NS", + "location": { + "column": "9", + "line": "62", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@1862@macro@__EFF_NSNW1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NSNW1", + "location": { + "column": "9", + "line": "63", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NSNW1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@1967@macro@__EFF_NE", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NE", + "location": { + "column": "9", + "line": "64", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2046@macro@__EFF_NENR1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENR1", + "location": { + "column": "9", + "line": "65", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENR1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2137@macro@__EFF_NENR1R1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENR1R1", + "location": { + "column": "9", + "line": "66", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENR1R1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2239@macro@__EFF_NENR2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENR2", + "location": { + "column": "9", + "line": "67", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENR2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2330@macro@__EFF_NENR1NW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENR1NW2", + "location": { + "column": "9", + "line": "68", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENR1NW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2434@macro@__EFF_NENR1NW2R1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENR1NW2R1", + "location": { + "column": "9", + "line": "69", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENR1NW2R1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2551@macro@__EFF_NENW1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENW1", + "location": { + "column": "9", + "line": "70", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENW1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2643@macro@__EFF_NENW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENW2", + "location": { + "column": "9", + "line": "71", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2735@macro@__EFF_NENW2R1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENW2R1", + "location": { + "column": "9", + "line": "72", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENW2R1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2838@macro@__EFF_NENW1NW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NENW1NW2", + "location": { + "column": "9", + "line": "73", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NENW1NW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@2932@macro@__EFF_NR1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NR1", + "location": { + "column": "9", + "line": "74", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NR1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3013@macro@__EFF_NR1NW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NR1NW2", + "location": { + "column": "9", + "line": "75", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NR1NW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3107@macro@__EFF_NR1NW3", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NR1NW3", + "location": { + "column": "9", + "line": "76", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NR1NW3", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3201@macro@__EFF_NW1", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NW1", + "location": { + "column": "9", + "line": "77", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NW1", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3283@macro@__EFF_NW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NW2", + "location": { + "column": "9", + "line": "78", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3365@macro@__EFF_NW1NR2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NW1NR2", + "location": { + "column": "9", + "line": "79", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NW1NR2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3459@macro@__EFF_NW1NW2", + "What": "MacroDef", + "defdec": "Def", + "display": "__EFF_NW1NW2", + "location": { + "column": "9", + "line": "80", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__EFF_NW1NW2", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3585@macro@__ATTRIBUTES", + "What": "MacroDef", + "defdec": "Def", + "display": "__ATTRIBUTES", + "location": { + "column": "9", + "line": "83", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__ATTRIBUTES", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3642@macro@__ATTRIBUTES_CAN_THROW", + "What": "MacroDef", + "defdec": "Def", + "display": "__ATTRIBUTES_CAN_THROW", + "location": { + "column": "9", + "line": "84", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__ATTRIBUTES_CAN_THROW", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3688@macro@__ATTRIBUTES_NORETURN", + "What": "MacroDef", + "defdec": "Def", + "display": "__ATTRIBUTES_NORETURN", + "location": { + "column": "9", + "line": "85", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__ATTRIBUTES_NORETURN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3756@macro@__ATTRIBUTES_NORETURN_CAN_THROW", + "What": "MacroDef", + "defdec": "Def", + "display": "__ATTRIBUTES_NORETURN_CAN_THROW", + "location": { + "column": "9", + "line": "86", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__ATTRIBUTES_NORETURN_CAN_THROW", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@3991@macro@_EXTERN_C", + "What": "MacroDef", + "defdec": "Def", + "display": "_EXTERN_C", + "location": { + "column": "11", + "line": "95", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_EXTERN_C", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@4012@macro@_EXTERN_C_END", + "What": "MacroDef", + "defdec": "Def", + "display": "_EXTERN_C_END", + "location": { + "column": "11", + "line": "96", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_EXTERN_C_END", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@4037@macro@_GLB", + "What": "MacroDef", + "defdec": "Def", + "display": "_GLB", + "location": { + "column": "11", + "line": "97", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_GLB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@4660@macro@_DLIB_ONLY_C89", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ONLY_C89", + "location": { + "column": "13", + "line": "119", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_DLIB_ONLY_C89", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@4801@macro@_DLIB_ADD_EXTRA_SYMBOLS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ADD_EXTRA_SYMBOLS", + "location": { + "column": "11", + "line": "126", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_DLIB_ADD_EXTRA_SYMBOLS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@4896@macro@__STDC_WANT_LIB_EXT1__", + "What": "MacroDef", + "defdec": "Def", + "display": "__STDC_WANT_LIB_EXT1__", + "location": { + "column": "11", + "line": "131", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__STDC_WANT_LIB_EXT1__", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@5185@macro@__DEPREC", + "What": "MacroDef", + "defdec": "Def", + "display": "__DEPREC", + "location": { + "column": "11", + "line": "140", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__DEPREC", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@5213@macro@__DEPREC_ATTRS", + "What": "MacroDef", + "defdec": "Def", + "display": "__DEPREC_ATTRS", + "location": { + "column": "9", + "line": "143", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__DEPREC_ATTRS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@5269@macro@__DEPREC_ATTRS_CAN_THROW", + "What": "MacroDef", + "defdec": "Def", + "display": "__DEPREC_ATTRS_CAN_THROW", + "location": { + "column": "9", + "line": "144", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__DEPREC_ATTRS_CAN_THROW", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@6617@macro@_NOEXCEPT", + "What": "MacroDef", + "defdec": "Def", + "display": "_NOEXCEPT", + "location": { + "column": "11", + "line": "190", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_NOEXCEPT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@6733@macro@_THREAD_LOCAL", + "What": "MacroDef", + "defdec": "Def", + "display": "_THREAD_LOCAL", + "location": { + "column": "15", + "line": "196", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_THREAD_LOCAL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@6862@macro@_Restrict", + "What": "MacroDef", + "defdec": "Def", + "display": "_Restrict", + "location": { + "column": "13", + "line": "201", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Restrict", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7018@macro@_MBMAX", + "What": "MacroDef", + "defdec": "Def", + "display": "_MBMAX", + "location": { + "column": "9", + "line": "208", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_MBMAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7075@macro@_MAX_EXP_DIG", + "What": "MacroDef", + "defdec": "Def", + "display": "_MAX_EXP_DIG", + "location": { + "column": "9", + "line": "211", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_MAX_EXP_DIG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7102@macro@_MAX_INT_DIG", + "What": "MacroDef", + "defdec": "Def", + "display": "_MAX_INT_DIG", + "location": { + "column": "9", + "line": "212", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_MAX_INT_DIG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7130@macro@_MAX_SIG_DIG", + "What": "MacroDef", + "defdec": "Def", + "display": "_MAX_SIG_DIG", + "location": { + "column": "9", + "line": "213", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_MAX_SIG_DIG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@_Wchart", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "28", + "line": "221", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Wchart", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@_Wintt", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "28", + "line": "222", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Wintt", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7576@macro@_WCMIN", + "What": "MacroDef", + "defdec": "Def", + "display": "_WCMIN", + "location": { + "column": "11", + "line": "233", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_WCMIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7597@macro@_WIMIN", + "What": "MacroDef", + "defdec": "Def", + "display": "_WIMIN", + "location": { + "column": "11", + "line": "234", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_WIMIN", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7624@macro@_WCMAX", + "What": "MacroDef", + "defdec": "Def", + "display": "_WCMAX", + "location": { + "column": "9", + "line": "236", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_WCMAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7657@macro@_WIMAX", + "What": "MacroDef", + "defdec": "Def", + "display": "_WIMAX", + "location": { + "column": "9", + "line": "237", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_WIMAX", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@7718@macro@_NULL", + "What": "MacroDef", + "defdec": "Def", + "display": "_NULL", + "location": { + "column": "9", + "line": "240", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_NULL", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@_Sizet", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "29", + "line": "243", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Sizet", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__int8_t", + "What": "Typedef", + "defdec": "Def", + "display": "signed char", + "location": { + "column": "27", + "line": "246", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__int8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__uint8_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "27", + "line": "247", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__uint8_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__int16_t", + "What": "Typedef", + "defdec": "Def", + "display": "short", + "location": { + "column": "28", + "line": "248", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__int16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__uint16_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "28", + "line": "249", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__uint16_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__int32_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "28", + "line": "250", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__int32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__uint32_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "28", + "line": "251", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__uint32_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__int64_t", + "What": "Typedef", + "defdec": "Def", + "display": "long long", + "location": { + "column": "31", + "line": "253", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__int64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__uint64_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long long", + "location": { + "column": "31", + "line": "254", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__uint64_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__intptr_t", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "29", + "line": "259", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__intptr_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__uintptr_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "29", + "line": "260", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__uintptr_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@S@_Mbstatet", + "What": "Struct", + "defdec": "Def", + "display": "_Mbstatet", + "location": { + "column": "16", + "line": "263", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "members": [ + { + "ID": "c:@S@_Mbstatet@FI@_Wchar", + "What": "FieldDecl", + "defdec": "Def", + "display": "_Wchar", + "location": { + "column": "18", + "line": "266", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Wchar", + "origin": "system_include", + "scope": "_Mbstatet" + }, + { + "ID": "c:@S@_Mbstatet@FI@_State", + "What": "FieldDecl", + "defdec": "Def", + "display": "_State", + "location": { + "column": "18", + "line": "267", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_State", + "origin": "system_include", + "scope": "_Mbstatet" + } + ], + "name": "_Mbstatet", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@_Mbstatet", + "What": "Typedef", + "defdec": "Def", + "display": "struct _Mbstatet", + "location": { + "column": "3", + "line": "299", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Mbstatet", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@9575@macro@_Mbstinit", + "What": "MacroDef", + "defdec": "Def", + "display": "_Mbstinit", + "location": { + "column": "11", + "line": "303", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Mbstinit", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@9648@macro@_HAS_PRAGMA_PRINTF_ARGS", + "What": "MacroDef", + "defdec": "Def", + "display": "_HAS_PRAGMA_PRINTF_ARGS", + "location": { + "column": "9", + "line": "307", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_HAS_PRAGMA_PRINTF_ARGS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@S@__va_list", + "What": "Struct", + "defdec": "Dec", + "display": "__va_list", + "location": { + "column": "11", + "line": "321", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "members": [], + "name": "__va_list", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__Va_list", + "What": "Typedef", + "defdec": "Def", + "display": "struct __va_list", + "location": { + "column": "20", + "line": "321", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__Va_list", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@S@__FILE", + "What": "Struct", + "defdec": "Dec", + "display": "__FILE", + "location": { + "column": "20", + "line": "332", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "members": [], + "name": "__FILE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@_Filet", + "What": "Typedef", + "defdec": "Def", + "display": "struct __FILE", + "location": { + "column": "27", + "line": "332", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Filet", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@SA@_Fpost", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "337", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "members": [ + { + "ID": "c:@SA@_Fpost@FI@_Off", + "What": "FieldDecl", + "defdec": "Def", + "display": "_Off", + "location": { + "column": "15", + "line": "340", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Off", + "origin": "system_include", + "scope": "_anonymous_yvals_h_337_9" + }, + { + "ID": "c:@SA@_Fpost@FI@_Wstate", + "What": "FieldDecl", + "defdec": "Def", + "display": "_Wstate", + "location": { + "column": "13", + "line": "344", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Wstate", + "origin": "system_include", + "scope": "_anonymous_yvals_h_337_9" + } + ], + "name": "", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@T@_Fpost", + "What": "Typedef", + "defdec": "Def", + "display": "struct _Fpost", + "location": { + "column": "3", + "line": "345", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_Fpost", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@10462@macro@_FPOSOFF", + "What": "MacroDef", + "defdec": "Def", + "display": "_FPOSOFF", + "location": { + "column": "11", + "line": "348", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_FPOSOFF", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@10540@macro@_MULTI_THREAD", + "What": "MacroDef", + "defdec": "Def", + "display": "_MULTI_THREAD", + "location": { + "column": "9", + "line": "352", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "_MULTI_THREAD", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Locksyslock_Malloc", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Locksyslock_Malloc(void)", + "location": { + "column": "28", + "line": "358", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Locksyslock_Malloc", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Locksyslock_Stream", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Locksyslock_Stream(void)", + "location": { + "column": "28", + "line": "359", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Locksyslock_Stream", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Locksyslock_Debug", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Locksyslock_Debug(void)", + "location": { + "column": "28", + "line": "360", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Locksyslock_Debug", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Locksyslock_StaticGuard", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Locksyslock_StaticGuard(void)", + "location": { + "column": "28", + "line": "361", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Locksyslock_StaticGuard", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlocksyslock_Malloc", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlocksyslock_Malloc(void)", + "location": { + "column": "28", + "line": "362", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlocksyslock_Malloc", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlocksyslock_Stream", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlocksyslock_Stream(void)", + "location": { + "column": "28", + "line": "363", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlocksyslock_Stream", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlocksyslock_Debug", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlocksyslock_Debug(void)", + "location": { + "column": "28", + "line": "364", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlocksyslock_Debug", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlocksyslock_StaticGuard", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlocksyslock_StaticGuard(void)", + "location": { + "column": "28", + "line": "365", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlocksyslock_StaticGuard", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Lockfilelock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Lockfilelock(_Filet *)", + "location": { + "column": "32", + "line": "369", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Lockfilelock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlockfilelock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlockfilelock(_Filet *)", + "location": { + "column": "32", + "line": "370", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlockfilelock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:yvals.h@T@__iar_Rmtx", + "What": "Typedef", + "defdec": "Def", + "display": "void *", + "location": { + "column": "17", + "line": "374", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Rmtx", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Initdynamiclock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Initdynamiclock(__iar_Rmtx *)", + "location": { + "column": "28", + "line": "376", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Initdynamiclock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Dstdynamiclock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Dstdynamiclock(__iar_Rmtx *)", + "location": { + "column": "28", + "line": "377", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Dstdynamiclock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Lockdynamiclock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Lockdynamiclock(__iar_Rmtx *)", + "location": { + "column": "28", + "line": "378", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Lockdynamiclock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__iar_Unlockdynamiclock", + "What": "Function", + "defdec": "Dec", + "display": "void __iar_Unlockdynamiclock(__iar_Rmtx *)", + "location": { + "column": "28", + "line": "379", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\yvals.h" + }, + "name": "__iar_Unlockdynamiclock", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@36@macro@_FRT_PROTOCOL_H_", + "What": "MacroDef", + "defdec": "Def", + "display": "_FRT_PROTOCOL_H_", + "location": { + "column": "10", + "line": "2", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "_FRT_PROTOCOL_H_", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_mcs_para", + "What": "Struct", + "defdec": "Def", + "display": "_mcs_para", + "location": { + "column": "16", + "line": "14", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "members": [ + { + "ID": "c:@S@_mcs_para@FI@current", + "What": "FieldDecl", + "defdec": "Def", + "display": "current", + "location": { + "column": "13", + "line": "15", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "current", + "origin": "user_include", + "scope": "_mcs_para" + }, + { + "ID": "c:@S@_mcs_para@FI@max_current", + "What": "FieldDecl", + "defdec": "Def", + "display": "max_current", + "location": { + "column": "13", + "line": "16", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "max_current", + "origin": "user_include", + "scope": "_mcs_para" + }, + { + "ID": "c:@S@_mcs_para@FI@pulse_count", + "What": "FieldDecl", + "defdec": "Def", + "display": "pulse_count", + "location": { + "column": "13", + "line": "17", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "pulse_count", + "origin": "user_include", + "scope": "_mcs_para" + }, + { + "ID": "c:@S@_mcs_para@FI@bat_v", + "What": "FieldDecl", + "defdec": "Def", + "display": "bat_v", + "location": { + "column": "13", + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "bat_v", + "origin": "user_include", + "scope": "_mcs_para" + }, + { + "ID": "c:@S@_mcs_para@FI@bat_charge", + "What": "FieldDecl", + "defdec": "Def", + "display": "bat_charge", + "location": { + "column": "11", + "line": "19", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "bat_charge", + "origin": "user_include", + "scope": "_mcs_para" + }, + { + "ID": "c:frt_protocol.h@T@mcs_para", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct _mcs_para", + "location": { + "column": "2", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "mcs_para", + "origin": "user_include", + "scope": "_mcs_para" + } + ], + "name": "_mcs_para", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgFunctionCode_e", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@FRT_MsgFunctionCode_e@FRT_FUNCTION_CODE_READ_REGISTER", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_FUNCTION_CODE_READ_REGISTER", + "location": { + "column": "4", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_FUNCTION_CODE_READ_REGISTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgFunctionCode_e@FRT_FUNCTION_CODE_WRITE_REGISTER", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_FUNCTION_CODE_WRITE_REGISTER", + "location": { + "column": "4", + "line": "26", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_FUNCTION_CODE_WRITE_REGISTER", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@FRT_MsgFunctionCode_e", + "What": "Typedef", + "defdec": "Def", + "display": "enum FRT_MsgFunctionCode_e", + "location": { + "column": "3", + "line": "27", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_MsgFunctionCode_e", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CURRENT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_CURRENT", + "location": { + "column": "4", + "line": "32", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_CURRENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_MAX_CURRENT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_MAX_CURRENT", + "location": { + "column": "4", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_MAX_CURRENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_PULSE_COUNT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_PULSE_COUNT", + "location": { + "column": "4", + "line": "34", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_PULSE_COUNT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_BAT_V", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_BAT_V", + "location": { + "column": "4", + "line": "35", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_BAT_V", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_BAT_CHARGE", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_BAT_CHARGE", + "location": { + "column": "4", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_BAT_CHARGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_MAC_INFO", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_MAC_INFO", + "location": { + "column": "4", + "line": "37", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_MAC_INFO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_DEVICE_ADDR", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_DEVICE_ADDR", + "location": { + "column": "4", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_DEVICE_ADDR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_NET_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_NET_ID", + "location": { + "column": "4", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_NET_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CLEAR_MAX_CURRENT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_CLEAR_MAX_CURRENT", + "location": { + "column": "4", + "line": "41", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_CLEAR_MAX_CURRENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CLEAR_PULSE_COUNT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_CLEAR_PULSE_COUNT", + "location": { + "column": "4", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_CLEAR_PULSE_COUNT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_REBOOT", + "What": "Enumerator", + "defdec": "Def", + "display": "FRT_REGISTER_REBOOT", + "location": { + "column": "4", + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_REGISTER_REBOOT", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "30", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@1509@macro@FRT_CLIMATE_PACK_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "FRT_CLIMATE_PACK_SIZE", + "location": { + "column": "9", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_CLIMATE_PACK_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@1572@macro@FRT_CLIMATE_PACK_CRC16", + "What": "MacroDef", + "defdec": "Def", + "display": "FRT_CLIMATE_PACK_CRC16", + "location": { + "column": "9", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_CLIMATE_PACK_CRC16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@1652@macro@FRT_CLIMATE_BUFF_CRC16", + "What": "MacroDef", + "defdec": "Def", + "display": "FRT_CLIMATE_BUFF_CRC16", + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_CLIMATE_BUFF_CRC16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@T@MsgProcFunc", + "What": "Typedef", + "defdec": "Def", + "display": "void (*)(device_handle, void *)", + "location": { + "column": "16", + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "MsgProcFunc", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_FRT_FunctionMsgProcTable_s", + "What": "Struct", + "defdec": "Def", + "display": "_FRT_FunctionMsgProcTable_s", + "location": { + "column": "16", + "line": "54", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "members": [ + { + "ID": "c:@S@_FRT_FunctionMsgProcTable_s@FI@msgId", + "What": "FieldDecl", + "defdec": "Def", + "display": "msgId", + "location": { + "column": "18", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "msgId", + "origin": "user_include", + "scope": "_FRT_FunctionMsgProcTable_s" + }, + { + "ID": "c:@S@_FRT_FunctionMsgProcTable_s@FI@pMsgProc", + "What": "FieldDecl", + "defdec": "Def", + "display": "pMsgProc", + "location": { + "column": "17", + "line": "56", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "pMsgProc", + "origin": "user_include", + "scope": "_FRT_FunctionMsgProcTable_s" + } + ], + "name": "_FRT_FunctionMsgProcTable_s", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@T@FRT_FuncionMsgProcTable_s", + "What": "Typedef", + "defdec": "Def", + "display": "struct _FRT_FunctionMsgProcTable_s", + "location": { + "column": "3", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_FuncionMsgProcTable_s", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@T@RegProcFunc", + "What": "Typedef", + "defdec": "Def", + "display": "u_int16_t (*)(void *)", + "location": { + "column": "21", + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "RegProcFunc", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_FRT_RegProcTable_s", + "What": "Struct", + "defdec": "Def", + "display": "_FRT_RegProcTable_s", + "location": { + "column": "16", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "members": [ + { + "ID": "c:@S@_FRT_RegProcTable_s@FI@regId", + "What": "FieldDecl", + "defdec": "Def", + "display": "regId", + "location": { + "column": "18", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "regId", + "origin": "user_include", + "scope": "_FRT_RegProcTable_s" + }, + { + "ID": "c:@S@_FRT_RegProcTable_s@FI@pRegProc", + "What": "FieldDecl", + "defdec": "Def", + "display": "pRegProc", + "location": { + "column": "17", + "line": "63", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "pRegProc", + "origin": "user_include", + "scope": "_FRT_RegProcTable_s" + } + ], + "name": "_FRT_RegProcTable_s", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:frt_protocol.h@T@FRT_RegProcTable_s", + "What": "Typedef", + "defdec": "Def", + "display": "struct _FRT_RegProcTable_s", + "location": { + "column": "3", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "FRT_RegProcTable_s", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_frt_climate_pack_resp", + "What": "Struct", + "defdec": "Def", + "display": "_frt_climate_pack_resp", + "location": { + "column": "17", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "members": [ + { + "ID": "c:@S@_frt_climate_pack_resp@FI@up_addr_h", + "What": "FieldDecl", + "defdec": "Def", + "display": "up_addr_h", + "location": { + "column": "19", + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "up_addr_h", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@up_addr_l", + "What": "FieldDecl", + "defdec": "Def", + "display": "up_addr_l", + "location": { + "column": "19", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "up_addr_l", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@chanel", + "What": "FieldDecl", + "defdec": "Def", + "display": "chanel", + "location": { + "column": "19", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "chanel", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@addr", + "What": "FieldDecl", + "defdec": "Def", + "display": "addr", + "location": { + "column": "19", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "addr", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@func", + "What": "FieldDecl", + "defdec": "Def", + "display": "func", + "location": { + "column": "16", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "func", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@data_len", + "What": "FieldDecl", + "defdec": "Def", + "display": "data_len", + "location": { + "column": "16", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "data_len", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:@S@_frt_climate_pack_resp@FI@data", + "What": "FieldDecl", + "defdec": "Def", + "display": "data", + "location": { + "column": "19", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "data", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + }, + { + "ID": "c:frt_protocol.h@T@frt_climate_pack_resp", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct _frt_climate_pack_resp", + "location": { + "column": "2", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "frt_climate_pack_resp", + "origin": "user_include", + "scope": "_frt_climate_pack_resp" + } + ], + "name": "_frt_climate_pack_resp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@g_stMcs_Para", + "What": "Variable", + "defdec": "Dec", + "display": "g_stMcs_Para", + "location": { + "column": "17", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "g_stMcs_Para", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@g_stMcs_Para", + "What": "Variable", + "defdec": "Dec", + "display": "g_stMcs_Para", + "location": { + "column": "17", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "g_stMcs_Para", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@read_and_process_uart_data", + "What": "Function", + "defdec": "Dec", + "display": "void read_and_process_uart_data(device_handle)", + "location": { + "column": "6", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "read_and_process_uart_data", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@read_and_process_uart_data", + "What": "Function", + "defdec": "Dec", + "display": "void read_and_process_uart_data(device_handle)", + "location": { + "column": "6", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" + }, + "name": "read_and_process_uart_data", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@801@macro@STM32L4xx_HAL_ADC_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_ADC_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "STM32L4xx_HAL_ADC_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_OversamplingTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_OversamplingTypeDef@FI@Ratio", + "What": "FieldDecl", + "defdec": "Def", + "display": "Ratio", + "location": { + "column": "12", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Ratio", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" + }, + { + "ID": "c:@SA@ADC_OversamplingTypeDef@FI@RightBitShift", + "What": "FieldDecl", + "defdec": "Def", + "display": "RightBitShift", + "location": { + "column": "12", + "line": "54", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "RightBitShift", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" + }, + { + "ID": "c:@SA@ADC_OversamplingTypeDef@FI@TriggeredMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "TriggeredMode", + "location": { + "column": "12", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "TriggeredMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" + }, + { + "ID": "c:@SA@ADC_OversamplingTypeDef@FI@OversamplingStopReset", + "What": "FieldDecl", + "defdec": "Def", + "display": "OversamplingStopReset", + "location": { + "column": "12", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "OversamplingStopReset", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_49_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_OversamplingTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_OversamplingTypeDef", + "location": { + "column": "3", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OversamplingTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_InitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "86", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_InitTypeDef@FI@ClockPrescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "ClockPrescaler", + "location": { + "column": "12", + "line": "88", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ClockPrescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@Resolution", + "What": "FieldDecl", + "defdec": "Def", + "display": "Resolution", + "location": { + "column": "12", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Resolution", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@DataAlign", + "What": "FieldDecl", + "defdec": "Def", + "display": "DataAlign", + "location": { + "column": "12", + "line": "102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "DataAlign", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@ScanConvMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ScanConvMode", + "location": { + "column": "12", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ScanConvMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@EOCSelection", + "What": "FieldDecl", + "defdec": "Def", + "display": "EOCSelection", + "location": { + "column": "12", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "EOCSelection", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@LowPowerAutoWait", + "What": "FieldDecl", + "defdec": "Def", + "display": "LowPowerAutoWait", + "location": { + "column": "19", + "line": "117", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "LowPowerAutoWait", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@ContinuousConvMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ContinuousConvMode", + "location": { + "column": "19", + "line": "129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ContinuousConvMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@NbrOfConversion", + "What": "FieldDecl", + "defdec": "Def", + "display": "NbrOfConversion", + "location": { + "column": "12", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "NbrOfConversion", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@DiscontinuousConvMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "DiscontinuousConvMode", + "location": { + "column": "19", + "line": "139", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "DiscontinuousConvMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@NbrOfDiscConversion", + "What": "FieldDecl", + "defdec": "Def", + "display": "NbrOfDiscConversion", + "location": { + "column": "12", + "line": "145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "NbrOfDiscConversion", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@ExternalTrigConv", + "What": "FieldDecl", + "defdec": "Def", + "display": "ExternalTrigConv", + "location": { + "column": "12", + "line": "149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ExternalTrigConv", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@ExternalTrigConvEdge", + "What": "FieldDecl", + "defdec": "Def", + "display": "ExternalTrigConvEdge", + "location": { + "column": "12", + "line": "154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ExternalTrigConvEdge", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@DMAContinuousRequests", + "What": "FieldDecl", + "defdec": "Def", + "display": "DMAContinuousRequests", + "location": { + "column": "19", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "DMAContinuousRequests", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@Overrun", + "What": "FieldDecl", + "defdec": "Def", + "display": "Overrun", + "location": { + "column": "12", + "line": "163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Overrun", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@OversamplingMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "OversamplingMode", + "location": { + "column": "19", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "OversamplingMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + }, + { + "ID": "c:@SA@ADC_InitTypeDef@FI@Oversampling", + "What": "FieldDecl", + "defdec": "Def", + "display": "Oversampling", + "location": { + "column": "27", + "line": "178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Oversampling", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_86_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_InitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_InitTypeDef", + "location": { + "column": "3", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_InitTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Channel", + "What": "FieldDecl", + "defdec": "Def", + "display": "Channel", + "location": { + "column": "12", + "line": "202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Channel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Rank", + "What": "FieldDecl", + "defdec": "Def", + "display": "Rank", + "location": { + "column": "12", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Rank", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@SamplingTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "SamplingTime", + "location": { + "column": "12", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "SamplingTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@SingleDiff", + "What": "FieldDecl", + "defdec": "Def", + "display": "SingleDiff", + "location": { + "column": "12", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "SingleDiff", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@OffsetNumber", + "What": "FieldDecl", + "defdec": "Def", + "display": "OffsetNumber", + "location": { + "column": "12", + "line": "234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "OffsetNumber", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + }, + { + "ID": "c:@SA@ADC_ChannelConfTypeDef@FI@Offset", + "What": "FieldDecl", + "defdec": "Def", + "display": "Offset", + "location": { + "column": "12", + "line": "238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Offset", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_200_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_ChannelConfTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_ChannelConfTypeDef", + "location": { + "column": "3", + "line": "245", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ChannelConfTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@WatchdogNumber", + "What": "FieldDecl", + "defdec": "Def", + "display": "WatchdogNumber", + "location": { + "column": "12", + "line": "255", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "WatchdogNumber", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@WatchdogMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "WatchdogMode", + "location": { + "column": "12", + "line": "260", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "WatchdogMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@Channel", + "What": "FieldDecl", + "defdec": "Def", + "display": "Channel", + "location": { + "column": "12", + "line": "265", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Channel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@ITMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ITMode", + "location": { + "column": "19", + "line": "270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ITMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@HighThreshold", + "What": "FieldDecl", + "defdec": "Def", + "display": "HighThreshold", + "location": { + "column": "12", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HighThreshold", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + }, + { + "ID": "c:@SA@ADC_AnalogWDGConfTypeDef@FI@LowThreshold", + "What": "FieldDecl", + "defdec": "Def", + "display": "LowThreshold", + "location": { + "column": "12", + "line": "283", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "LowThreshold", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_253_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_AnalogWDGConfTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_AnalogWDGConfTypeDef", + "location": { + "column": "3", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_AnalogWDGConfTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_InjectionConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_InjectionConfigTypeDef@FI@ContextQueue", + "What": "FieldDecl", + "defdec": "Def", + "display": "ContextQueue", + "location": { + "column": "12", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ContextQueue", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_298_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfigTypeDef@FI@ChannelCount", + "What": "FieldDecl", + "defdec": "Def", + "display": "ChannelCount", + "location": { + "column": "12", + "line": "304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ChannelCount", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_298_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_InjectionConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_InjectionConfigTypeDef", + "location": { + "column": "3", + "line": "305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_InjectionConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@26587@macro@HAL_ADC_STATE_RESET", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_RESET", + "location": { + "column": "9", + "line": "320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@26689@macro@HAL_ADC_STATE_READY", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_READY", + "location": { + "column": "9", + "line": "321", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@26784@macro@HAL_ADC_STATE_BUSY_INTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_BUSY_INTERNAL", + "location": { + "column": "9", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_BUSY_INTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@26919@macro@HAL_ADC_STATE_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_TIMEOUT", + "location": { + "column": "9", + "line": "323", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27034@macro@HAL_ADC_STATE_ERROR_INTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_ERROR_INTERNAL", + "location": { + "column": "9", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_ERROR_INTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27126@macro@HAL_ADC_STATE_ERROR_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_ERROR_CONFIG", + "location": { + "column": "9", + "line": "327", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_ERROR_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27223@macro@HAL_ADC_STATE_ERROR_DMA", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_ERROR_DMA", + "location": { + "column": "9", + "line": "328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_ERROR_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27347@macro@HAL_ADC_STATE_REG_BUSY", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_REG_BUSY", + "location": { + "column": "9", + "line": "331", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_REG_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27681@macro@HAL_ADC_STATE_REG_EOC", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_REG_EOC", + "location": { + "column": "9", + "line": "333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_REG_EOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27790@macro@HAL_ADC_STATE_REG_OVR", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_REG_OVR", + "location": { + "column": "9", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_REG_OVR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@27875@macro@HAL_ADC_STATE_REG_EOSMP", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_REG_EOSMP", + "location": { + "column": "9", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_REG_EOSMP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28044@macro@HAL_ADC_STATE_INJ_BUSY", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_INJ_BUSY", + "location": { + "column": "9", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_INJ_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28383@macro@HAL_ADC_STATE_INJ_EOC", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_INJ_EOC", + "location": { + "column": "9", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_INJ_EOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28493@macro@HAL_ADC_STATE_INJ_JQOVF", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_INJ_JQOVF", + "location": { + "column": "9", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_INJ_JQOVF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28634@macro@HAL_ADC_STATE_AWD1", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_AWD1", + "location": { + "column": "9", + "line": "344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_AWD1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28750@macro@HAL_ADC_STATE_AWD2", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_AWD2", + "location": { + "column": "9", + "line": "345", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_AWD2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@28866@macro@HAL_ADC_STATE_AWD3", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_AWD3", + "location": { + "column": "9", + "line": "346", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_AWD3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@29016@macro@HAL_ADC_STATE_MULTIMODE_SLAVE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_STATE_MULTIMODE_SLAVE", + "location": { + "column": "9", + "line": "349", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_STATE_MULTIMODE_SLAVE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_HandleTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "361", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@Instance", + "What": "FieldDecl", + "defdec": "Def", + "display": "Instance", + "location": { + "column": "34", + "line": "364", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Instance", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@Init", + "What": "FieldDecl", + "defdec": "Def", + "display": "Init", + "location": { + "column": "33", + "line": "365", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Init", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@DMA_Handle", + "What": "FieldDecl", + "defdec": "Def", + "display": "DMA_Handle", + "location": { + "column": "34", + "line": "366", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "DMA_Handle", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@Lock", + "What": "FieldDecl", + "defdec": "Def", + "display": "Lock", + "location": { + "column": "33", + "line": "367", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "Lock", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@State", + "What": "FieldDecl", + "defdec": "Def", + "display": "State", + "location": { + "column": "33", + "line": "368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "State", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@ErrorCode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ErrorCode", + "location": { + "column": "33", + "line": "369", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ErrorCode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + }, + { + "ID": "c:@SA@ADC_HandleTypeDef@FI@InjectionConfig", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectionConfig", + "location": { + "column": "33", + "line": "370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "InjectionConfig", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_h_361_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_HandleTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_HandleTypeDef", + "location": { + "column": "3", + "line": "384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_HandleTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@33179@macro@HAL_ADC_ERROR_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_ERROR_NONE", + "location": { + "column": "9", + "line": "426", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ERROR_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@33282@macro@HAL_ADC_ERROR_INTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_ERROR_INTERNAL", + "location": { + "column": "9", + "line": "427", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ERROR_INTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@33493@macro@HAL_ADC_ERROR_OVR", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_ERROR_OVR", + "location": { + "column": "9", + "line": "429", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ERROR_OVR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@33596@macro@HAL_ADC_ERROR_DMA", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_ERROR_DMA", + "location": { + "column": "9", + "line": "430", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ERROR_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@33699@macro@HAL_ADC_ERROR_JQOVF", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_ERROR_JQOVF", + "location": { + "column": "9", + "line": "431", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ERROR_JQOVF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34080@macro@ADC_CLOCK_SYNC_PCLK_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_SYNC_PCLK_DIV1", + "location": { + "column": "9", + "line": "442", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_SYNC_PCLK_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34226@macro@ADC_CLOCK_SYNC_PCLK_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_SYNC_PCLK_DIV2", + "location": { + "column": "9", + "line": "443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_SYNC_PCLK_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34383@macro@ADC_CLOCK_SYNC_PCLK_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_SYNC_PCLK_DIV4", + "location": { + "column": "9", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_SYNC_PCLK_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34542@macro@ADC_CLOCK_ASYNC_DIV1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV1", + "location": { + "column": "9", + "line": "446", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34666@macro@ADC_CLOCK_ASYNC_DIV2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV2", + "location": { + "column": "9", + "line": "447", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34803@macro@ADC_CLOCK_ASYNC_DIV4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV4", + "location": { + "column": "9", + "line": "448", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@34940@macro@ADC_CLOCK_ASYNC_DIV6", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV6", + "location": { + "column": "9", + "line": "449", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35077@macro@ADC_CLOCK_ASYNC_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV8", + "location": { + "column": "9", + "line": "450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35214@macro@ADC_CLOCK_ASYNC_DIV10", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV10", + "location": { + "column": "9", + "line": "451", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV10", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35351@macro@ADC_CLOCK_ASYNC_DIV12", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV12", + "location": { + "column": "9", + "line": "452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV12", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35488@macro@ADC_CLOCK_ASYNC_DIV16", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV16", + "location": { + "column": "9", + "line": "453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35625@macro@ADC_CLOCK_ASYNC_DIV32", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV32", + "location": { + "column": "9", + "line": "454", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35762@macro@ADC_CLOCK_ASYNC_DIV64", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV64", + "location": { + "column": "9", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV64", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@35899@macro@ADC_CLOCK_ASYNC_DIV128", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV128", + "location": { + "column": "9", + "line": "456", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV128", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36036@macro@ADC_CLOCK_ASYNC_DIV256", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLOCK_ASYNC_DIV256", + "location": { + "column": "9", + "line": "457", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLOCK_ASYNC_DIV256", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36272@macro@ADC_RESOLUTION_12B", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RESOLUTION_12B", + "location": { + "column": "9", + "line": "465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RESOLUTION_12B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36372@macro@ADC_RESOLUTION_10B", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RESOLUTION_10B", + "location": { + "column": "9", + "line": "466", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RESOLUTION_10B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36472@macro@ADC_RESOLUTION_8B", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RESOLUTION_8B", + "location": { + "column": "9", + "line": "467", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RESOLUTION_8B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36572@macro@ADC_RESOLUTION_6B", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RESOLUTION_6B", + "location": { + "column": "9", + "line": "468", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RESOLUTION_6B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36774@macro@ADC_DATAALIGN_RIGHT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_DATAALIGN_RIGHT", + "location": { + "column": "9", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DATAALIGN_RIGHT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@36934@macro@ADC_DATAALIGN_LEFT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_DATAALIGN_LEFT", + "location": { + "column": "9", + "line": "477", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DATAALIGN_LEFT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@37188@macro@ADC_SCAN_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SCAN_DISABLE", + "location": { + "column": "9", + "line": "485", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SCAN_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@37270@macro@ADC_SCAN_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SCAN_ENABLE", + "location": { + "column": "9", + "line": "486", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SCAN_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@37534@macro@ADC_SOFTWARE_START", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SOFTWARE_START", + "location": { + "column": "9", + "line": "495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SOFTWARE_START", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@37681@macro@ADC_EXTERNALTRIG_T1_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T1_TRGO", + "location": { + "column": "9", + "line": "496", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T1_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@37896@macro@ADC_EXTERNALTRIG_T1_TRGO2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T1_TRGO2", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T1_TRGO2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@38112@macro@ADC_EXTERNALTRIG_T1_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T1_CC1", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T1_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@38389@macro@ADC_EXTERNALTRIG_T1_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T1_CC2", + "location": { + "column": "9", + "line": "499", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T1_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@38666@macro@ADC_EXTERNALTRIG_T1_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T1_CC3", + "location": { + "column": "9", + "line": "500", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T1_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@38943@macro@ADC_EXTERNALTRIG_T2_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T2_TRGO", + "location": { + "column": "9", + "line": "501", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T2_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@39158@macro@ADC_EXTERNALTRIG_T2_CC2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T2_CC2", + "location": { + "column": "9", + "line": "502", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T2_CC2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@39435@macro@ADC_EXTERNALTRIG_T3_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T3_TRGO", + "location": { + "column": "9", + "line": "503", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T3_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@39650@macro@ADC_EXTERNALTRIG_T3_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T3_CC4", + "location": { + "column": "9", + "line": "504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T3_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@39927@macro@ADC_EXTERNALTRIG_T4_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T4_TRGO", + "location": { + "column": "9", + "line": "505", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T4_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@40142@macro@ADC_EXTERNALTRIG_T4_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T4_CC4", + "location": { + "column": "9", + "line": "506", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T4_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@40419@macro@ADC_EXTERNALTRIG_T6_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T6_TRGO", + "location": { + "column": "9", + "line": "507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T6_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@40634@macro@ADC_EXTERNALTRIG_T8_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T8_TRGO", + "location": { + "column": "9", + "line": "508", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T8_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@40849@macro@ADC_EXTERNALTRIG_T8_TRGO2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T8_TRGO2", + "location": { + "column": "9", + "line": "509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T8_TRGO2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@41065@macro@ADC_EXTERNALTRIG_T15_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_T15_TRGO", + "location": { + "column": "9", + "line": "510", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_T15_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@41281@macro@ADC_EXTERNALTRIG_EXT_IT11", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIG_EXT_IT11", + "location": { + "column": "9", + "line": "511", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIG_EXT_IT11", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@41664@macro@ADC_EXTERNALTRIGCONVEDGE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGCONVEDGE_NONE", + "location": { + "column": "9", + "line": "519", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIGCONVEDGE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@41813@macro@ADC_EXTERNALTRIGCONVEDGE_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGCONVEDGE_RISING", + "location": { + "column": "9", + "line": "520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIGCONVEDGE_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@41971@macro@ADC_EXTERNALTRIGCONVEDGE_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGCONVEDGE_FALLING", + "location": { + "column": "9", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIGCONVEDGE_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@42130@macro@ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", + "location": { + "column": "9", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@42437@macro@ADC_EOC_SINGLE_CONV", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EOC_SINGLE_CONV", + "location": { + "column": "9", + "line": "530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EOC_SINGLE_CONV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@42544@macro@ADC_EOC_SEQ_CONV", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EOC_SEQ_CONV", + "location": { + "column": "9", + "line": "531", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EOC_SEQ_CONV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@42795@macro@ADC_OVR_DATA_PRESERVED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVR_DATA_PRESERVED", + "location": { + "column": "9", + "line": "539", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVR_DATA_PRESERVED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@42944@macro@ADC_OVR_DATA_OVERWRITTEN", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVR_DATA_OVERWRITTEN", + "location": { + "column": "9", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVR_DATA_OVERWRITTEN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43207@macro@ADC_REGULAR_RANK_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_1", + "location": { + "column": "9", + "line": "548", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43315@macro@ADC_REGULAR_RANK_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_2", + "location": { + "column": "9", + "line": "549", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43423@macro@ADC_REGULAR_RANK_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_3", + "location": { + "column": "9", + "line": "550", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43531@macro@ADC_REGULAR_RANK_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_4", + "location": { + "column": "9", + "line": "551", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43639@macro@ADC_REGULAR_RANK_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_5", + "location": { + "column": "9", + "line": "552", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43747@macro@ADC_REGULAR_RANK_6", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_6", + "location": { + "column": "9", + "line": "553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43855@macro@ADC_REGULAR_RANK_7", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_7", + "location": { + "column": "9", + "line": "554", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@43963@macro@ADC_REGULAR_RANK_8", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_8", + "location": { + "column": "9", + "line": "555", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44071@macro@ADC_REGULAR_RANK_9", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_9", + "location": { + "column": "9", + "line": "556", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44179@macro@ADC_REGULAR_RANK_10", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_10", + "location": { + "column": "9", + "line": "557", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_10", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44288@macro@ADC_REGULAR_RANK_11", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_11", + "location": { + "column": "9", + "line": "558", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_11", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44397@macro@ADC_REGULAR_RANK_12", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_12", + "location": { + "column": "9", + "line": "559", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_12", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44506@macro@ADC_REGULAR_RANK_13", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_13", + "location": { + "column": "9", + "line": "560", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_13", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44615@macro@ADC_REGULAR_RANK_14", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_14", + "location": { + "column": "9", + "line": "561", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_14", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44724@macro@ADC_REGULAR_RANK_15", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_15", + "location": { + "column": "9", + "line": "562", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_15", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@44833@macro@ADC_REGULAR_RANK_16", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_RANK_16", + "location": { + "column": "9", + "line": "563", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGULAR_RANK_16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45049@macro@ADC_SAMPLETIME_2CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_2CYCLES_5", + "location": { + "column": "9", + "line": "571", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_2CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45169@macro@ADC_SAMPLETIME_6CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_6CYCLES_5", + "location": { + "column": "9", + "line": "572", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_6CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45289@macro@ADC_SAMPLETIME_12CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_12CYCLES_5", + "location": { + "column": "9", + "line": "573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_12CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45410@macro@ADC_SAMPLETIME_24CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_24CYCLES_5", + "location": { + "column": "9", + "line": "574", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_24CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45531@macro@ADC_SAMPLETIME_47CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_47CYCLES_5", + "location": { + "column": "9", + "line": "575", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_47CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45652@macro@ADC_SAMPLETIME_92CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_92CYCLES_5", + "location": { + "column": "9", + "line": "576", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_92CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45773@macro@ADC_SAMPLETIME_247CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_247CYCLES_5", + "location": { + "column": "9", + "line": "577", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_247CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@45895@macro@ADC_SAMPLETIME_640CYCLES_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SAMPLETIME_640CYCLES_5", + "location": { + "column": "9", + "line": "578", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_SAMPLETIME_640CYCLES_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@46620@macro@ADC_CHANNEL_0", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_0", + "location": { + "column": "9", + "line": "591", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@46768@macro@ADC_CHANNEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_1", + "location": { + "column": "9", + "line": "592", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@46916@macro@ADC_CHANNEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_2", + "location": { + "column": "9", + "line": "593", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47064@macro@ADC_CHANNEL_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_3", + "location": { + "column": "9", + "line": "594", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47212@macro@ADC_CHANNEL_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_4", + "location": { + "column": "9", + "line": "595", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47360@macro@ADC_CHANNEL_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_5", + "location": { + "column": "9", + "line": "596", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47508@macro@ADC_CHANNEL_6", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_6", + "location": { + "column": "9", + "line": "597", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47656@macro@ADC_CHANNEL_7", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_7", + "location": { + "column": "9", + "line": "598", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47804@macro@ADC_CHANNEL_8", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_8", + "location": { + "column": "9", + "line": "599", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@47952@macro@ADC_CHANNEL_9", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_9", + "location": { + "column": "9", + "line": "600", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48100@macro@ADC_CHANNEL_10", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_10", + "location": { + "column": "9", + "line": "601", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_10", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48248@macro@ADC_CHANNEL_11", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_11", + "location": { + "column": "9", + "line": "602", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_11", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48396@macro@ADC_CHANNEL_12", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_12", + "location": { + "column": "9", + "line": "603", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_12", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48544@macro@ADC_CHANNEL_13", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_13", + "location": { + "column": "9", + "line": "604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_13", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48692@macro@ADC_CHANNEL_14", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_14", + "location": { + "column": "9", + "line": "605", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_14", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48840@macro@ADC_CHANNEL_15", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_15", + "location": { + "column": "9", + "line": "606", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_15", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@48988@macro@ADC_CHANNEL_16", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_16", + "location": { + "column": "9", + "line": "607", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49136@macro@ADC_CHANNEL_17", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_17", + "location": { + "column": "9", + "line": "608", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_17", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49284@macro@ADC_CHANNEL_18", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_18", + "location": { + "column": "9", + "line": "609", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_18", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49432@macro@ADC_CHANNEL_VREFINT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_VREFINT", + "location": { + "column": "9", + "line": "610", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_VREFINT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49588@macro@ADC_CHANNEL_TEMPSENSOR", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_TEMPSENSOR", + "location": { + "column": "9", + "line": "611", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_TEMPSENSOR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49727@macro@ADC_CHANNEL_VBAT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_VBAT", + "location": { + "column": "9", + "line": "612", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_VBAT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@49975@macro@ADC_CHANNEL_DAC1CH1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_DAC1CH1", + "location": { + "column": "9", + "line": "614", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_DAC1CH1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@50290@macro@ADC_CHANNEL_DAC1CH2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CHANNEL_DAC1CH2", + "location": { + "column": "9", + "line": "615", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CHANNEL_DAC1CH2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@51431@macro@ADC_ANALOGWATCHDOG_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_1", + "location": { + "column": "9", + "line": "631", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@51526@macro@ADC_ANALOGWATCHDOG_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_2", + "location": { + "column": "9", + "line": "632", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@51621@macro@ADC_ANALOGWATCHDOG_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_3", + "location": { + "column": "9", + "line": "633", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@51816@macro@ADC_ANALOGWATCHDOG_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_NONE", + "location": { + "column": "9", + "line": "641", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52001@macro@ADC_ANALOGWATCHDOG_SINGLE_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_SINGLE_REG", + "location": { + "column": "9", + "line": "642", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_SINGLE_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52186@macro@ADC_ANALOGWATCHDOG_SINGLE_INJEC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_SINGLE_INJEC", + "location": { + "column": "9", + "line": "643", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_SINGLE_INJEC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52371@macro@ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", + "location": { + "column": "9", + "line": "644", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_SINGLE_REGINJEC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52556@macro@ADC_ANALOGWATCHDOG_ALL_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_ALL_REG", + "location": { + "column": "9", + "line": "645", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_ALL_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52741@macro@ADC_ANALOGWATCHDOG_ALL_INJEC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_ALL_INJEC", + "location": { + "column": "9", + "line": "646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_ALL_INJEC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@52926@macro@ADC_ANALOGWATCHDOG_ALL_REGINJEC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_ANALOGWATCHDOG_ALL_REGINJEC", + "location": { + "column": "9", + "line": "647", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ANALOGWATCHDOG_ALL_REGINJEC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@53204@macro@ADC_OVERSAMPLING_RATIO_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_2", + "location": { + "column": "9", + "line": "655", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@53458@macro@ADC_OVERSAMPLING_RATIO_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_4", + "location": { + "column": "9", + "line": "656", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@53712@macro@ADC_OVERSAMPLING_RATIO_8", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_8", + "location": { + "column": "9", + "line": "657", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@53966@macro@ADC_OVERSAMPLING_RATIO_16", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_16", + "location": { + "column": "9", + "line": "658", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_16", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@54222@macro@ADC_OVERSAMPLING_RATIO_32", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_32", + "location": { + "column": "9", + "line": "659", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@54478@macro@ADC_OVERSAMPLING_RATIO_64", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_64", + "location": { + "column": "9", + "line": "660", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_64", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@54734@macro@ADC_OVERSAMPLING_RATIO_128", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_128", + "location": { + "column": "9", + "line": "661", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_128", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@54992@macro@ADC_OVERSAMPLING_RATIO_256", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVERSAMPLING_RATIO_256", + "location": { + "column": "9", + "line": "662", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVERSAMPLING_RATIO_256", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@55348@macro@ADC_RIGHTBITSHIFT_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_NONE", + "location": { + "column": "9", + "line": "670", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@55552@macro@ADC_RIGHTBITSHIFT_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_1", + "location": { + "column": "9", + "line": "671", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@55759@macro@ADC_RIGHTBITSHIFT_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_2", + "location": { + "column": "9", + "line": "672", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@55966@macro@ADC_RIGHTBITSHIFT_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_3", + "location": { + "column": "9", + "line": "673", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@56173@macro@ADC_RIGHTBITSHIFT_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_4", + "location": { + "column": "9", + "line": "674", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@56381@macro@ADC_RIGHTBITSHIFT_5", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_5", + "location": { + "column": "9", + "line": "675", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@56589@macro@ADC_RIGHTBITSHIFT_6", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_6", + "location": { + "column": "9", + "line": "676", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@56797@macro@ADC_RIGHTBITSHIFT_7", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_7", + "location": { + "column": "9", + "line": "677", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@57006@macro@ADC_RIGHTBITSHIFT_8", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_RIGHTBITSHIFT_8", + "location": { + "column": "9", + "line": "678", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_RIGHTBITSHIFT_8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@57328@macro@ADC_TRIGGEREDMODE_SINGLE_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_TRIGGEREDMODE_SINGLE_TRIGGER", + "location": { + "column": "9", + "line": "686", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_TRIGGEREDMODE_SINGLE_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@57528@macro@ADC_TRIGGEREDMODE_MULTI_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_TRIGGEREDMODE_MULTI_TRIGGER", + "location": { + "column": "9", + "line": "687", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_TRIGGEREDMODE_MULTI_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@57855@macro@ADC_REGOVERSAMPLING_CONTINUED_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGOVERSAMPLING_CONTINUED_MODE", + "location": { + "column": "9", + "line": "695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGOVERSAMPLING_CONTINUED_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58002@macro@ADC_REGOVERSAMPLING_RESUMED_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGOVERSAMPLING_RESUMED_MODE", + "location": { + "column": "9", + "line": "696", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_REGOVERSAMPLING_RESUMED_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58229@macro@ADC_EOSMP_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EOSMP_EVENT", + "location": { + "column": "9", + "line": "704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_EOSMP_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58314@macro@ADC_AWD1_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD1_EVENT", + "location": { + "column": "9", + "line": "705", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_AWD1_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58453@macro@ADC_AWD2_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD2_EVENT", + "location": { + "column": "9", + "line": "706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_AWD2_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58602@macro@ADC_AWD3_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD3_EVENT", + "location": { + "column": "9", + "line": "707", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_AWD3_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58751@macro@ADC_OVR_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OVR_EVENT", + "location": { + "column": "9", + "line": "708", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_OVR_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58828@macro@ADC_JQOVF_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_JQOVF_EVENT", + "location": { + "column": "9", + "line": "709", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_JQOVF_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@58948@macro@ADC_AWD_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD_EVENT", + "location": { + "column": "9", + "line": "713", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_AWD_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59204@macro@ADC_IT_RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_RDY", + "location": { + "column": "9", + "line": "718", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59288@macro@ADC_IT_EOSMP", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_EOSMP", + "location": { + "column": "9", + "line": "719", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_EOSMP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59382@macro@ADC_IT_EOC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_EOC", + "location": { + "column": "9", + "line": "720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_EOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59486@macro@ADC_IT_EOS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_EOS", + "location": { + "column": "9", + "line": "721", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_EOS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59603@macro@ADC_IT_OVR", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_OVR", + "location": { + "column": "9", + "line": "722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_OVR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59689@macro@ADC_IT_JEOC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_JEOC", + "location": { + "column": "9", + "line": "723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_JEOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59794@macro@ADC_IT_JEOS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_JEOS", + "location": { + "column": "9", + "line": "724", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_JEOS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@59912@macro@ADC_IT_AWD1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_AWD1", + "location": { + "column": "9", + "line": "725", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_AWD1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60031@macro@ADC_IT_AWD2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_AWD2", + "location": { + "column": "9", + "line": "726", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_AWD2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60156@macro@ADC_IT_AWD3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_AWD3", + "location": { + "column": "9", + "line": "727", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_AWD3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60281@macro@ADC_IT_JQOVF", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_JQOVF", + "location": { + "column": "9", + "line": "728", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_JQOVF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60393@macro@ADC_IT_AWD", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IT_AWD", + "location": { + "column": "9", + "line": "730", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IT_AWD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60666@macro@ADC_FLAG_RDY", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_RDY", + "location": { + "column": "9", + "line": "739", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_RDY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60738@macro@ADC_FLAG_EOSMP", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_EOSMP", + "location": { + "column": "9", + "line": "740", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_EOSMP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60820@macro@ADC_FLAG_EOC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_EOC", + "location": { + "column": "9", + "line": "741", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_EOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@60912@macro@ADC_FLAG_EOS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_EOS", + "location": { + "column": "9", + "line": "742", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_EOS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61017@macro@ADC_FLAG_OVR", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_OVR", + "location": { + "column": "9", + "line": "743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_OVR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61091@macro@ADC_FLAG_JEOC", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_JEOC", + "location": { + "column": "9", + "line": "744", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_JEOC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61184@macro@ADC_FLAG_JEOS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_JEOS", + "location": { + "column": "9", + "line": "745", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_JEOS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61290@macro@ADC_FLAG_AWD1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_AWD1", + "location": { + "column": "9", + "line": "746", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_AWD1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61397@macro@ADC_FLAG_AWD2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_AWD2", + "location": { + "column": "9", + "line": "747", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_AWD2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61510@macro@ADC_FLAG_AWD3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_AWD3", + "location": { + "column": "9", + "line": "748", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_AWD3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61623@macro@ADC_FLAG_JQOVF", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_JQOVF", + "location": { + "column": "9", + "line": "749", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_JQOVF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61723@macro@ADC_FLAG_AWD", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_AWD", + "location": { + "column": "9", + "line": "751", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_AWD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@61892@macro@ADC_FLAG_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_ALL", + "location": { + "column": "9", + "line": "753", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@62265@macro@ADC_FLAG_POSTCONV_ALL", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_FLAG_POSTCONV_ALL", + "location": { + "column": "9", + "line": "758", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_FLAG_POSTCONV_ALL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@63100@macro@ADC_GET_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_GET_RESOLUTION", + "location": { + "column": "9", + "line": "783", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_GET_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@63378@macro@ADC_CLEAR_ERRORCODE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLEAR_ERRORCODE", + "location": { + "column": "9", + "line": "791", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_CLEAR_ERRORCODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@63628@macro@ADC_IS_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_ENABLE", + "location": { + "column": "9", + "line": "798", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IS_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@64114@macro@ADC_IS_CONVERSION_ONGOING_REGULAR", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_CONVERSION_ONGOING_REGULAR", + "location": { + "column": "9", + "line": "808", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_IS_CONVERSION_ONGOING_REGULAR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@64621@macro@ADC_STATE_CLR_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_STATE_CLR_SET", + "location": { + "column": "9", + "line": "818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_STATE_CLR_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@64999@macro@IS_ADC_RANGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_RANGE", + "location": { + "column": "9", + "line": "826", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_RANGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@65408@macro@IS_ADC_REGULAR_NB_CONV", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_REGULAR_NB_CONV", + "location": { + "column": "9", + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_REGULAR_NB_CONV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@65828@macro@IS_ADC_REGULAR_DISCONT_NUMBER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_REGULAR_DISCONT_NUMBER", + "location": { + "column": "9", + "line": "842", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_REGULAR_DISCONT_NUMBER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@66111@macro@IS_ADC_CLOCKPRESCALER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_CLOCKPRESCALER", + "location": { + "column": "9", + "line": "850", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_CLOCKPRESCALER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@67778@macro@IS_ADC_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_RESOLUTION", + "location": { + "column": "9", + "line": "871", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@68395@macro@IS_ADC_RESOLUTION_8_6_BITS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_RESOLUTION_8_6_BITS", + "location": { + "column": "9", + "line": "881", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_RESOLUTION_8_6_BITS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@68797@macro@IS_ADC_DATA_ALIGN", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_DATA_ALIGN", + "location": { + "column": "9", + "line": "889", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_DATA_ALIGN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@69139@macro@IS_ADC_SCAN_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_SCAN_MODE", + "location": { + "column": "9", + "line": "897", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_SCAN_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@69522@macro@IS_ADC_EXTTRIG_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EXTTRIG_EDGE", + "location": { + "column": "9", + "line": "905", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_EXTTRIG_EDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@70188@macro@IS_ADC_EXTTRIG", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EXTTRIG", + "location": { + "column": "9", + "line": "916", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_EXTTRIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@72146@macro@IS_ADC_EOC_SELECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EOC_SELECTION", + "location": { + "column": "9", + "line": "939", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_EOC_SELECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@72558@macro@IS_ADC_OVERRUN", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_OVERRUN", + "location": { + "column": "9", + "line": "947", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_OVERRUN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@73729@macro@IS_ADC_SAMPLE_TIME", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_SAMPLE_TIME", + "location": { + "column": "9", + "line": "966", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_SAMPLE_TIME", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@74652@macro@IS_ADC_REGULAR_RANK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_REGULAR_RANK", + "location": { + "column": "9", + "line": "981", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "IS_ADC_REGULAR_RANK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@76787@macro@ADC_STOP_CONVERSION_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_STOP_CONVERSION_TIMEOUT", + "location": { + "column": "9", + "line": "1016", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_STOP_CONVERSION_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@77113@macro@ADC_TEMPSENSOR_DELAY_US", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_TEMPSENSOR_DELAY_US", + "location": { + "column": "9", + "line": "1021", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_TEMPSENSOR_DELAY_US", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@78210@macro@__HAL_ADC_RESET_HANDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_RESET_HANDLE_STATE", + "location": { + "column": "9", + "line": "1051", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_RESET_HANDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@79587@macro@__HAL_ADC_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_ENABLE_IT", + "location": { + "column": "9", + "line": "1073", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@80927@macro@__HAL_ADC_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_DISABLE_IT", + "location": { + "column": "9", + "line": "1094", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@82360@macro@__HAL_ADC_GET_IT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_GET_IT_SOURCE", + "location": { + "column": "9", + "line": "1114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_GET_IT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@83664@macro@__HAL_ADC_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_GET_FLAG", + "location": { + "column": "9", + "line": "1135", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@85007@macro@__HAL_ADC_CLEAR_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CLEAR_FLAG", + "location": { + "column": "9", + "line": "1157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CLEAR_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@87822@macro@__HAL_ADC_CHANNEL_TO_DECIMAL_NB", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CHANNEL_TO_DECIMAL_NB", + "location": { + "column": "9", + "line": "1217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CHANNEL_TO_DECIMAL_NB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@90616@macro@__HAL_ADC_DECIMAL_NB_TO_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_DECIMAL_NB_TO_CHANNEL", + "location": { + "column": "9", + "line": "1269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_DECIMAL_NB_TO_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@94082@macro@__HAL_ADC_IS_CHANNEL_INTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_IS_CHANNEL_INTERNAL", + "location": { + "column": "9", + "line": "1330", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_IS_CHANNEL_INTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@97844@macro@__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", + "location": { + "column": "9", + "line": "1405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CHANNEL_INTERNAL_TO_EXTERNAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@100073@macro@__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", + "location": { + "column": "9", + "line": "1442", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_IS_CHANNEL_INTERNAL_AVAILABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@101795@macro@__HAL_ADC_COMMON_INSTANCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_COMMON_INSTANCE", + "location": { + "column": "9", + "line": "1473", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_COMMON_INSTANCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@102913@macro@__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", + "location": { + "column": "9", + "line": "1493", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@103707@macro@__HAL_ADC_DIGITAL_SCALE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_DIGITAL_SCALE", + "location": { + "column": "9", + "line": "1509", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_DIGITAL_SCALE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@104706@macro@__HAL_ADC_CONVERT_DATA_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CONVERT_DATA_RESOLUTION", + "location": { + "column": "9", + "line": "1530", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CONVERT_DATA_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@105968@macro@__HAL_ADC_CALC_DATA_TO_VOLTAGE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CALC_DATA_TO_VOLTAGE", + "location": { + "column": "9", + "line": "1553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CALC_DATA_TO_VOLTAGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@107689@macro@__HAL_ADC_CALC_VREFANALOG_VOLTAGE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CALC_VREFANALOG_VOLTAGE", + "location": { + "column": "9", + "line": "1585", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CALC_VREFANALOG_VOLTAGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@110742@macro@__HAL_ADC_CALC_TEMPERATURE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CALC_TEMPERATURE", + "location": { + "column": "9", + "line": "1635", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CALC_TEMPERATURE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc.h@114368@macro@__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", + "location": { + "column": "9", + "line": "1686", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "__HAL_ADC_CALC_TEMPERATURE_TYP_PARAMS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_DeInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1721", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_DeInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1721", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1722", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_MspDeInit(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1742", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1742", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1743", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_PollForConversion", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1744", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_PollForConversion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_PollForConversion", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1744", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_PollForConversion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_PollForEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_PollForEvent(ADC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "25", + "line": "1745", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_PollForEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_PollForEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_PollForEvent(ADC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "25", + "line": "1745", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_PollForEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1748", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1748", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1749", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1749", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start_DMA(ADC_HandleTypeDef *, uint32_t *, uint32_t)", + "location": { + "column": "25", + "line": "1752", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Start_DMA(ADC_HandleTypeDef *, uint32_t *, uint32_t)", + "location": { + "column": "25", + "line": "1752", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1753", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_Stop_DMA(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1753", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1756", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_IRQHandler(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1759", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_IRQHandler(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1759", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConvCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1760", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConvCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConvCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1760", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConvCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConvCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1760", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConvCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConvHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ConvHalfCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConvHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConvHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ConvHalfCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1761", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConvHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_LevelOutOfWindowCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_LevelOutOfWindowCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1762", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_LevelOutOfWindowCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_LevelOutOfWindowCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_LevelOutOfWindowCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1762", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_LevelOutOfWindowCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ErrorCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ErrorCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADC_ErrorCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1763", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ErrorCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *, ADC_ChannelConfTypeDef *)", + "location": { + "column": "25", + "line": "1773", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *, ADC_ChannelConfTypeDef *)", + "location": { + "column": "25", + "line": "1773", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_AnalogWDGConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef *, ADC_AnalogWDGConfTypeDef *)", + "location": { + "column": "25", + "line": "1774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_AnalogWDGConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_AnalogWDGConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADC_AnalogWDGConfig(ADC_HandleTypeDef *, ADC_AnalogWDGConfTypeDef *)", + "location": { + "column": "25", + "line": "1774", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_AnalogWDGConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetState(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1784", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetState(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1784", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetError(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1785", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADC_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADC_GetError(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1785", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "HAL_ADC_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_ConversionStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_ConversionStop(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "1799", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ConversionStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_ConversionStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_ConversionStop(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "1799", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_ConversionStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_Enable", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_Enable(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1800", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_Enable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_Enable", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_Enable(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1800", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_Enable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_Disable", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_Disable(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_Disable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_Disable", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef ADC_Disable(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_Disable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAConvCplt", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAConvCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1802", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAConvCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAConvCplt", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAConvCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1802", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAConvCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAHalfConvCplt", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAHalfConvCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1803", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAHalfConvCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAHalfConvCplt", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAHalfConvCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1803", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAHalfConvCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAError", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAError(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1804", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ADC_DMAError", + "What": "Function", + "defdec": "Dec", + "display": "void ADC_DMAError(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "1804", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc.h" + }, + "name": "ADC_DMAError", + "origin": "user_include", + "scope": null + }, { "ID": "c:stm32l4xx_hal_rcc_ex.h@811@macro@STM32L4xx_HAL_RCC_EX_H", "What": "MacroDef", @@ -306854,85 +305984,129 @@ "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@816@macro@STM32L4xx_HAL_TIM_EX_H", + "ID": "c:stm32l4xx_hal_exti.h@804@macro@STM32L4xx_HAL_EXTI_H", "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_TIM_EX_H", + "display": "STM32L4xx_HAL_EXTI_H", "location": { "column": "9", "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "STM32L4xx_HAL_TIM_EX_H", + "name": "STM32L4xx_HAL_EXTI_H", "origin": "user_include", "scope": null }, { - "ID": "c:@SA@TIM_HallSensor_InitTypeDef", + "ID": "c:@EA@EXTI_CallbackIDTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_COMMON_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_EXTI_COMMON_CB_ID", + "location": { + "column": "3", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "HAL_EXTI_COMMON_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_RISING_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_EXTI_RISING_CB_ID", + "location": { + "column": "3", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "HAL_EXTI_RISING_CB_ID", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@EXTI_CallbackIDTypeDef@HAL_EXTI_FALLING_CB_ID", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_EXTI_FALLING_CB_ID", + "location": { + "column": "3", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "HAL_EXTI_FALLING_CB_ID", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@EXTI_CallbackIDTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum EXTI_CallbackIDTypeDef", + "location": { + "column": "3", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_CallbackIDTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@EXTI_HandleTypeDef", "What": "Struct", "defdec": "Def", "display": "", "location": { "column": "9", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, "members": [ { - "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Polarity", + "ID": "c:@SA@EXTI_HandleTypeDef@FI@Line", "What": "FieldDecl", "defdec": "Def", - "display": "IC1Polarity", + "display": "Line", "location": { "column": "12", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IC1Polarity", + "name": "Line", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + "scope": "_anonymous_stm32l4xx_hal_exti_h_55_9" }, { - "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Prescaler", + "ID": "c:@SA@EXTI_HandleTypeDef@FI@PendingCallback", "What": "FieldDecl", "defdec": "Def", - "display": "IC1Prescaler", + "display": "PendingCallback", "location": { - "column": "12", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "IC1Prescaler", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" - }, - { - "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Filter", - "What": "FieldDecl", - "defdec": "Def", - "display": "IC1Filter", - "location": { - "column": "12", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "IC1Filter", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" - }, - { - "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@Commutation_Delay", - "What": "FieldDecl", - "defdec": "Def", - "display": "Commutation_Delay", - "location": { - "column": "12", + "column": "11", "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "Commutation_Delay", + "name": "PendingCallback", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + "scope": "_anonymous_stm32l4xx_hal_exti_h_55_9" } ], "name": "", @@ -306940,71 +306114,85 @@ "scope": null }, { - "ID": "c:@T@TIM_HallSensor_InitTypeDef", + "ID": "c:@T@EXTI_HandleTypeDef", "What": "Typedef", "defdec": "Def", - "display": "struct TIM_HallSensor_InitTypeDef", + "display": "struct EXTI_HandleTypeDef", "location": { "column": "3", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_HallSensor_InitTypeDef", + "name": "EXTI_HandleTypeDef", "origin": "user_include", "scope": null }, { - "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef", + "ID": "c:@SA@EXTI_ConfigTypeDef", "What": "Struct", "defdec": "Def", "display": "", "location": { "column": "9", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, "members": [ { - "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Source", + "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Line", "What": "FieldDecl", "defdec": "Def", - "display": "Source", + "display": "Line", "location": { "column": "12", - "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "Source", + "name": "Line", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" }, { - "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Enable", + "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Mode", "What": "FieldDecl", "defdec": "Def", - "display": "Enable", + "display": "Mode", "location": { "column": "12", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "Enable", + "name": "Mode", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" }, { - "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Polarity", + "ID": "c:@SA@EXTI_ConfigTypeDef@FI@Trigger", "What": "FieldDecl", "defdec": "Def", - "display": "Polarity", + "display": "Trigger", "location": { "column": "12", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "Polarity", + "name": "Trigger", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" + }, + { + "ID": "c:@SA@EXTI_ConfigTypeDef@FI@GPIOSel", + "What": "FieldDecl", + "defdec": "Def", + "display": "GPIOSel", + "location": { + "column": "12", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "GPIOSel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_exti_h_64_9" } ], "name": "", @@ -307012,1808 +306200,1402 @@ "scope": null }, { - "ID": "c:@T@TIMEx_BreakInputConfigTypeDef", + "ID": "c:@T@EXTI_ConfigTypeDef", "What": "Typedef", "defdec": "Def", - "display": "struct TIMEx_BreakInputConfigTypeDef", + "display": "struct EXTI_ConfigTypeDef", "location": { "column": "3", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIMEx_BreakInputConfigTypeDef", + "name": "EXTI_ConfigTypeDef", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@3325@macro@TIM_TIM1_ETR_ADC1_NONE", + "ID": "c:stm32l4xx_hal_exti.h@6677@macro@EXTI_LINE_0", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_ADC1_NONE", + "display": "EXTI_LINE_0", "location": { "column": "9", - "line": "89", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_ADC1_NONE", + "name": "EXTI_LINE_0", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@3479@macro@TIM_TIM1_ETR_ADC1_AWD1", + "ID": "c:stm32l4xx_hal_exti.h@6771@macro@EXTI_LINE_1", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_ADC1_AWD1", + "display": "EXTI_LINE_1", "location": { "column": "9", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "138", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_ADC1_AWD1", + "name": "EXTI_LINE_1", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@3614@macro@TIM_TIM1_ETR_ADC1_AWD2", + "ID": "c:stm32l4xx_hal_exti.h@6865@macro@EXTI_LINE_2", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_ADC1_AWD2", + "display": "EXTI_LINE_2", "location": { "column": "9", - "line": "91", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "139", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_ADC1_AWD2", + "name": "EXTI_LINE_2", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@3749@macro@TIM_TIM1_ETR_ADC1_AWD3", + "ID": "c:stm32l4xx_hal_exti.h@6959@macro@EXTI_LINE_3", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_ADC1_AWD3", + "display": "EXTI_LINE_3", "location": { "column": "9", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "140", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_ADC1_AWD3", + "name": "EXTI_LINE_3", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@4482@macro@TIM_TIM1_TI1_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@7053@macro@EXTI_LINE_4", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_TI1_GPIO", + "display": "EXTI_LINE_4", "location": { "column": "9", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "141", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_TI1_GPIO", + "name": "EXTI_LINE_4", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@4612@macro@TIM_TIM1_TI1_COMP1", + "ID": "c:stm32l4xx_hal_exti.h@7147@macro@EXTI_LINE_5", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_TI1_COMP1", + "display": "EXTI_LINE_5", "location": { "column": "9", - "line": "100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_TI1_COMP1", + "name": "EXTI_LINE_5", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@4743@macro@TIM_TIM1_ETR_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@7241@macro@EXTI_LINE_6", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_GPIO", + "display": "EXTI_LINE_6", "location": { "column": "9", - "line": "101", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "143", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_GPIO", + "name": "EXTI_LINE_6", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@4873@macro@TIM_TIM1_ETR_COMP1", + "ID": "c:stm32l4xx_hal_exti.h@7335@macro@EXTI_LINE_7", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_COMP1", + "display": "EXTI_LINE_7", "location": { "column": "9", - "line": "102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "144", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_COMP1", + "name": "EXTI_LINE_7", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@5031@macro@TIM_TIM1_ETR_COMP2", + "ID": "c:stm32l4xx_hal_exti.h@7429@macro@EXTI_LINE_8", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM1_ETR_COMP2", + "display": "EXTI_LINE_8", "location": { "column": "9", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM1_ETR_COMP2", + "name": "EXTI_LINE_8", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@5799@macro@TIM_TIM2_ITR1_NONE", + "ID": "c:stm32l4xx_hal_exti.h@7523@macro@EXTI_LINE_9", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ITR1_NONE", + "display": "EXTI_LINE_9", "location": { "column": "9", - "line": "115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ITR1_NONE", + "name": "EXTI_LINE_9", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@5932@macro@TIM_TIM2_ITR1_USB_SOF", + "ID": "c:stm32l4xx_hal_exti.h@7617@macro@EXTI_LINE_10", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ITR1_USB_SOF", + "display": "EXTI_LINE_10", "location": { "column": "9", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "147", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ITR1_USB_SOF", + "name": "EXTI_LINE_10", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6117@macro@TIM_TIM2_ETR_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@7711@macro@EXTI_LINE_11", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ETR_GPIO", + "display": "EXTI_LINE_11", "location": { "column": "9", - "line": "119", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ETR_GPIO", + "name": "EXTI_LINE_11", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6247@macro@TIM_TIM2_ETR_LSE", + "ID": "c:stm32l4xx_hal_exti.h@7805@macro@EXTI_LINE_12", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ETR_LSE", + "display": "EXTI_LINE_12", "location": { "column": "9", - "line": "120", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ETR_LSE", + "name": "EXTI_LINE_12", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6376@macro@TIM_TIM2_ETR_COMP1", + "ID": "c:stm32l4xx_hal_exti.h@7899@macro@EXTI_LINE_13", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ETR_COMP1", + "display": "EXTI_LINE_13", "location": { "column": "9", - "line": "121", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ETR_COMP1", + "name": "EXTI_LINE_13", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6534@macro@TIM_TIM2_ETR_COMP2", + "ID": "c:stm32l4xx_hal_exti.h@7993@macro@EXTI_LINE_14", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_ETR_COMP2", + "display": "EXTI_LINE_14", "location": { "column": "9", - "line": "123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_ETR_COMP2", + "name": "EXTI_LINE_14", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6692@macro@TIM_TIM2_TI4_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@8087@macro@EXTI_LINE_15", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_TI4_GPIO", + "display": "EXTI_LINE_15", "location": { "column": "9", - "line": "125", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_TI4_GPIO", + "name": "EXTI_LINE_15", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6822@macro@TIM_TIM2_TI4_COMP1", + "ID": "c:stm32l4xx_hal_exti.h@8181@macro@EXTI_LINE_16", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_TI4_COMP1", + "display": "EXTI_LINE_16", "location": { "column": "9", - "line": "126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_TI4_COMP1", + "name": "EXTI_LINE_16", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@6980@macro@TIM_TIM2_TI4_COMP2", + "ID": "c:stm32l4xx_hal_exti.h@8275@macro@EXTI_LINE_17", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_TI4_COMP2", + "display": "EXTI_LINE_17", "location": { "column": "9", - "line": "128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_TI4_COMP2", + "name": "EXTI_LINE_17", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@7118@macro@TIM_TIM2_TI4_COMP1_COMP2", + "ID": "c:stm32l4xx_hal_exti.h@8369@macro@EXTI_LINE_18", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM2_TI4_COMP1_COMP2", + "display": "EXTI_LINE_18", "location": { "column": "9", - "line": "129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM2_TI4_COMP1_COMP2", + "name": "EXTI_LINE_18", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@10082@macro@TIM_TIM15_TI1_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@8463@macro@EXTI_LINE_19", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM15_TI1_GPIO", + "display": "EXTI_LINE_19", + "location": { + "column": "9", + "line": "156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_19", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@8557@macro@EXTI_LINE_20", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_20", + "location": { + "column": "9", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_20", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@8651@macro@EXTI_LINE_21", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_21", + "location": { + "column": "9", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_21", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@8745@macro@EXTI_LINE_22", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_22", + "location": { + "column": "9", + "line": "159", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_22", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@8839@macro@EXTI_LINE_23", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_23", "location": { "column": "9", "line": "160", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM15_TI1_GPIO", + "name": "EXTI_LINE_23", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@10213@macro@TIM_TIM15_TI1_LSE", + "ID": "c:stm32l4xx_hal_exti.h@8933@macro@EXTI_LINE_24", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM15_TI1_LSE", + "display": "EXTI_LINE_24", "location": { "column": "9", "line": "161", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM15_TI1_LSE", + "name": "EXTI_LINE_24", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@10343@macro@TIM_TIM15_ENCODERMODE_NONE", + "ID": "c:stm32l4xx_hal_exti.h@9027@macro@EXTI_LINE_25", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM15_ENCODERMODE_NONE", + "display": "EXTI_LINE_25", "location": { "column": "9", "line": "162", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM15_ENCODERMODE_NONE", + "name": "EXTI_LINE_25", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@10458@macro@TIM_TIM15_ENCODERMODE_TIM2", + "ID": "c:stm32l4xx_hal_exti.h@9121@macro@EXTI_LINE_26", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM15_ENCODERMODE_TIM2", + "display": "EXTI_LINE_26", "location": { "column": "9", "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM15_ENCODERMODE_TIM2", + "name": "EXTI_LINE_26", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11066@macro@TIM_TIM16_TI1_GPIO", + "ID": "c:stm32l4xx_hal_exti.h@9215@macro@EXTI_LINE_27", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_GPIO", + "display": "EXTI_LINE_27", + "location": { + "column": "9", + "line": "164", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_27", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9309@macro@EXTI_LINE_28", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_28", + "location": { + "column": "9", + "line": "165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_28", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9403@macro@EXTI_LINE_29", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_29", + "location": { + "column": "9", + "line": "166", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_29", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9497@macro@EXTI_LINE_30", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_30", + "location": { + "column": "9", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_30", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9591@macro@EXTI_LINE_31", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_31", + "location": { + "column": "9", + "line": "168", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_31", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9685@macro@EXTI_LINE_32", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_32", + "location": { + "column": "9", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9779@macro@EXTI_LINE_33", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_33", + "location": { + "column": "9", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_33", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@9873@macro@EXTI_LINE_34", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_34", "location": { "column": "9", "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_GPIO", + "name": "EXTI_LINE_34", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11197@macro@TIM_TIM16_TI1_LSI", + "ID": "c:stm32l4xx_hal_exti.h@9967@macro@EXTI_LINE_35", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_LSI", + "display": "EXTI_LINE_35", "location": { "column": "9", "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_LSI", + "name": "EXTI_LINE_35", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11327@macro@TIM_TIM16_TI1_LSE", + "ID": "c:stm32l4xx_hal_exti.h@10061@macro@EXTI_LINE_36", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_LSE", + "display": "EXTI_LINE_36", "location": { "column": "9", "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_LSE", + "name": "EXTI_LINE_36", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11457@macro@TIM_TIM16_TI1_RTC", + "ID": "c:stm32l4xx_hal_exti.h@10155@macro@EXTI_LINE_37", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_RTC", + "display": "EXTI_LINE_37", "location": { "column": "9", "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_RTC", + "name": "EXTI_LINE_37", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11639@macro@TIM_TIM16_TI1_MSI", + "ID": "c:stm32l4xx_hal_exti.h@10249@macro@EXTI_LINE_38", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_MSI", + "display": "EXTI_LINE_38", + "location": { + "column": "9", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_38", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@10343@macro@EXTI_LINE_39", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_39", "location": { "column": "9", "line": "176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_MSI", + "name": "EXTI_LINE_39", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11769@macro@TIM_TIM16_TI1_HSE_32", + "ID": "c:stm32l4xx_hal_exti.h@10437@macro@EXTI_LINE_40", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_HSE_32", + "display": "EXTI_LINE_40", "location": { "column": "9", "line": "177", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_HSE_32", + "name": "EXTI_LINE_40", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@11906@macro@TIM_TIM16_TI1_MCO", + "ID": "c:stm32l4xx_hal_exti.h@46358@macro@EXTI_MODE_NONE", "What": "MacroDef", "defdec": "Def", - "display": "TIM_TIM16_TI1_MCO", + "display": "EXTI_MODE_NONE", "location": { "column": "9", - "line": "178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "602", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_TIM16_TI1_MCO", + "name": "EXTI_MODE_NONE", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@12734@macro@TIM_BREAKINPUT_BRK", + "ID": "c:stm32l4xx_hal_exti.h@46415@macro@EXTI_MODE_INTERRUPT", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUT_BRK", + "display": "EXTI_MODE_INTERRUPT", "location": { "column": "9", - "line": "194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "603", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUT_BRK", + "name": "EXTI_MODE_INTERRUPT", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@12842@macro@TIM_BREAKINPUT_BRK2", + "ID": "c:stm32l4xx_hal_exti.h@46472@macro@EXTI_MODE_EVENT", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUT_BRK2", + "display": "EXTI_MODE_EVENT", "location": { "column": "9", - "line": "195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "604", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUT_BRK2", + "name": "EXTI_MODE_EVENT", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@13057@macro@TIM_BREAKINPUTSOURCE_BKIN", + "ID": "c:stm32l4xx_hal_exti.h@46606@macro@EXTI_TRIGGER_NONE", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_BKIN", + "display": "EXTI_TRIGGER_NONE", "location": { "column": "9", - "line": "203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "612", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_BKIN", + "name": "EXTI_TRIGGER_NONE", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@13203@macro@TIM_BREAKINPUTSOURCE_COMP1", + "ID": "c:stm32l4xx_hal_exti.h@46663@macro@EXTI_TRIGGER_RISING", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_COMP1", + "display": "EXTI_TRIGGER_RISING", "location": { "column": "9", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "613", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_COMP1", + "name": "EXTI_TRIGGER_RISING", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@13342@macro@TIM_BREAKINPUTSOURCE_COMP2", + "ID": "c:stm32l4xx_hal_exti.h@46720@macro@EXTI_TRIGGER_FALLING", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_COMP2", + "display": "EXTI_TRIGGER_FALLING", "location": { "column": "9", - "line": "205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "614", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_COMP2", + "name": "EXTI_TRIGGER_FALLING", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@13839@macro@TIM_BREAKINPUTSOURCE_DISABLE", + "ID": "c:stm32l4xx_hal_exti.h@46777@macro@EXTI_TRIGGER_RISING_FALLING", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_DISABLE", + "display": "EXTI_TRIGGER_RISING_FALLING", "location": { "column": "9", - "line": "216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "615", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_DISABLE", + "name": "EXTI_TRIGGER_RISING_FALLING", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@13959@macro@TIM_BREAKINPUTSOURCE_ENABLE", + "ID": "c:stm32l4xx_hal_exti.h@46956@macro@EXTI_GPIOA", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_ENABLE", + "display": "EXTI_GPIOA", "location": { "column": "9", - "line": "217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "624", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_ENABLE", + "name": "EXTI_GPIOA", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@14196@macro@TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "ID": "c:stm32l4xx_hal_exti.h@47013@macro@EXTI_GPIOB", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "display": "EXTI_GPIOB", "location": { "column": "9", - "line": "225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "625", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "name": "EXTI_GPIOB", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@14318@macro@TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "ID": "c:stm32l4xx_hal_exti.h@47070@macro@EXTI_GPIOC", "What": "MacroDef", "defdec": "Def", - "display": "TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "display": "EXTI_GPIOC", "location": { "column": "9", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "626", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "name": "EXTI_GPIOC", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@14992@macro@IS_TIM_REMAP", + "ID": "c:stm32l4xx_hal_exti.h@47127@macro@EXTI_GPIOD", "What": "MacroDef", "defdec": "Def", - "display": "IS_TIM_REMAP", + "display": "EXTI_GPIOD", "location": { "column": "9", - "line": "250", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "627", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IS_TIM_REMAP", + "name": "EXTI_GPIOD", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@15070@macro@IS_TIM_BREAKINPUT", + "ID": "c:stm32l4xx_hal_exti.h@47184@macro@EXTI_GPIOE", "What": "MacroDef", "defdec": "Def", - "display": "IS_TIM_BREAKINPUT", + "display": "EXTI_GPIOE", "location": { "column": "9", - "line": "252", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "628", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IS_TIM_BREAKINPUT", + "name": "EXTI_GPIOE", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@15675@macro@IS_TIM_BREAKINPUTSOURCE", + "ID": "c:stm32l4xx_hal_exti.h@47241@macro@EXTI_GPIOF", "What": "MacroDef", "defdec": "Def", - "display": "IS_TIM_BREAKINPUTSOURCE", + "display": "EXTI_GPIOF", "location": { "column": "9", - "line": "261", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "629", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IS_TIM_BREAKINPUTSOURCE", + "name": "EXTI_GPIOF", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@15994@macro@IS_TIM_BREAKINPUTSOURCE_STATE", + "ID": "c:stm32l4xx_hal_exti.h@47298@macro@EXTI_GPIOG", "What": "MacroDef", "defdec": "Def", - "display": "IS_TIM_BREAKINPUTSOURCE_STATE", + "display": "EXTI_GPIOG", "location": { "column": "9", - "line": "266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "630", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IS_TIM_BREAKINPUTSOURCE_STATE", + "name": "EXTI_GPIOG", "origin": "user_include", "scope": null }, { - "ID": "c:stm32l4xx_hal_tim_ex.h@16198@macro@IS_TIM_BREAKINPUTSOURCE_POLARITY", + "ID": "c:stm32l4xx_hal_exti.h@47355@macro@EXTI_GPIOH", "What": "MacroDef", "defdec": "Def", - "display": "IS_TIM_BREAKINPUTSOURCE_POLARITY", + "display": "EXTI_GPIOH", "location": { "column": "9", - "line": "269", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "631", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "IS_TIM_BREAKINPUTSOURCE_POLARITY", + "name": "EXTI_GPIOH", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Init", + "ID": "c:stm32l4xx_hal_exti.h@47412@macro@EXTI_GPIOI", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_GPIOI", + "location": { + "column": "9", + "line": "632", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_GPIOI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@47897@macro@EXTI_PROPERTY_SHIFT", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_PROPERTY_SHIFT", + "location": { + "column": "9", + "line": "657", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_PROPERTY_SHIFT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@47947@macro@EXTI_DIRECT", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_DIRECT", + "location": { + "column": "9", + "line": "658", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_DIRECT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48024@macro@EXTI_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_CONFIG", + "location": { + "column": "9", + "line": "659", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48101@macro@EXTI_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_GPIO", + "location": { + "column": "9", + "line": "660", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48194@macro@EXTI_RESERVED", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_RESERVED", + "location": { + "column": "9", + "line": "661", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_RESERVED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48271@macro@EXTI_PROPERTY_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_PROPERTY_MASK", + "location": { + "column": "9", + "line": "662", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_PROPERTY_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48413@macro@EXTI_EVENT_PRESENCE_SHIFT", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_EVENT_PRESENCE_SHIFT", + "location": { + "column": "9", + "line": "667", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_EVENT_PRESENCE_SHIFT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48462@macro@EXTI_EVENT", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_EVENT", + "location": { + "column": "9", + "line": "668", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_EVENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48545@macro@EXTI_EVENT_PRESENCE_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_EVENT_PRESENCE_MASK", + "location": { + "column": "9", + "line": "669", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_EVENT_PRESENCE_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48657@macro@EXTI_REG_SHIFT", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_REG_SHIFT", + "location": { + "column": "9", + "line": "674", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_REG_SHIFT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48706@macro@EXTI_REG1", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_REG1", + "location": { + "column": "9", + "line": "675", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_REG1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48778@macro@EXTI_REG2", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_REG2", + "location": { + "column": "9", + "line": "676", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_REG2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48850@macro@EXTI_REG_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_REG_MASK", + "location": { + "column": "9", + "line": "677", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_REG_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@48919@macro@EXTI_PIN_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_PIN_MASK", + "location": { + "column": "9", + "line": "678", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_PIN_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@49039@macro@EXTI_MODE_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_MODE_MASK", + "location": { + "column": "9", + "line": "683", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_MODE_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@49186@macro@EXTI_TRIGGER_MASK", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_TRIGGER_MASK", + "location": { + "column": "9", + "line": "688", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_TRIGGER_MASK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@49319@macro@EXTI_LINE_NB", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTI_LINE_NB", + "location": { + "column": "9", + "line": "693", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "EXTI_LINE_NB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@49542@macro@IS_EXTI_LINE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_LINE", + "location": { + "column": "9", + "line": "703", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_LINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@50232@macro@IS_EXTI_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_MODE", + "location": { + "column": "9", + "line": "710", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@50417@macro@IS_EXTI_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_TRIGGER", + "location": { + "column": "9", + "line": "713", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@50514@macro@IS_EXTI_PENDING_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_PENDING_EDGE", + "location": { + "column": "9", + "line": "715", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_PENDING_EDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@50611@macro@IS_EXTI_CONFIG_LINE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_CONFIG_LINE", + "location": { + "column": "9", + "line": "717", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_CONFIG_LINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@51240@macro@IS_EXTI_GPIO_PORT", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_GPIO_PORT", + "location": { + "column": "9", + "line": "731", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_GPIO_PORT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_exti.h@55267@macro@IS_EXTI_GPIO_PIN", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_EXTI_GPIO_PIN", + "location": { + "column": "9", + "line": "801", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" + }, + "name": "IS_EXTI_GPIO_PIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_EXTI_SetConfigLine", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *, const TIM_HallSensor_InitTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", "location": { "column": "19", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Init", + "name": "HAL_EXTI_SetConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Init", + "ID": "c:@F@HAL_EXTI_SetConfigLine", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *, const TIM_HallSensor_InitTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_SetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", "location": { "column": "19", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "818", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Init", + "name": "HAL_EXTI_SetConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_DeInit", + "ID": "c:@F@HAL_EXTI_GetConfigLine", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_GetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", "location": { "column": "19", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "819", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_DeInit", + "name": "HAL_EXTI_GetConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_DeInit", + "ID": "c:@F@HAL_EXTI_GetConfigLine", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_GetConfigLine(EXTI_HandleTypeDef *, EXTI_ConfigTypeDef *)", "location": { "column": "19", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "819", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_DeInit", + "name": "HAL_EXTI_GetConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_MspInit", + "ID": "c:@F@HAL_EXTI_ClearConfigLine", "What": "Function", "defdec": "Dec", - "display": "void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_MspInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_MspInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_MspDeInit", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_MspDeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "820", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start", + "name": "HAL_EXTI_ClearConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start", + "ID": "c:@F@HAL_EXTI_ClearConfigLine", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_ClearConfigLine(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "820", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start", + "name": "HAL_EXTI_ClearConfigLine", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop", + "ID": "c:@F@HAL_EXTI_RegisterCallback", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_RegisterCallback(EXTI_HandleTypeDef *, EXTI_CallbackIDTypeDef, void (*)(void))", "location": { "column": "19", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "821", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop", + "name": "HAL_EXTI_RegisterCallback", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop", + "ID": "c:@F@HAL_EXTI_RegisterCallback", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_RegisterCallback(EXTI_HandleTypeDef *, EXTI_CallbackIDTypeDef, void (*)(void))", "location": { "column": "19", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "821", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop", + "name": "HAL_EXTI_RegisterCallback", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start_IT", + "ID": "c:@F@HAL_EXTI_GetHandle", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_GetHandle(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "297", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "822", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start_IT", + "name": "HAL_EXTI_GetHandle", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start_IT", + "ID": "c:@F@HAL_EXTI_GetHandle", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *)", + "display": "HAL_StatusTypeDef HAL_EXTI_GetHandle(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "297", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "822", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start_IT", + "name": "HAL_EXTI_GetHandle", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_IT", + "ID": "c:@F@HAL_EXTI_IRQHandler", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *)", + "display": "void HAL_EXTI_IRQHandler(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "832", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop_IT", + "name": "HAL_EXTI_IRQHandler", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_IT", + "ID": "c:@F@HAL_EXTI_IRQHandler", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *)", + "display": "void HAL_EXTI_IRQHandler(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "832", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop_IT", + "name": "HAL_EXTI_IRQHandler", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start_DMA", + "ID": "c:@F@HAL_EXTI_GetPending", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *, uint32_t *, uint16_t)", + "display": "uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "833", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start_DMA", + "name": "HAL_EXTI_GetPending", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Start_DMA", + "ID": "c:@F@HAL_EXTI_GetPending", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *, uint32_t *, uint16_t)", + "display": "uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "300", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "833", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Start_DMA", + "name": "HAL_EXTI_GetPending", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_DMA", + "ID": "c:@F@HAL_EXTI_ClearPending", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *)", + "display": "void HAL_EXTI_ClearPending(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop_DMA", + "name": "HAL_EXTI_ClearPending", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_DMA", + "ID": "c:@F@HAL_EXTI_ClearPending", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *)", + "display": "void HAL_EXTI_ClearPending(EXTI_HandleTypeDef *, uint32_t)", "location": { "column": "19", - "line": "301", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "834", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_HallSensor_Stop_DMA", + "name": "HAL_EXTI_ClearPending", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_OCN_Start", + "ID": "c:@F@HAL_EXTI_GenerateSWI", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *, uint32_t)", + "display": "void HAL_EXTI_GenerateSWI(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_OCN_Start", + "name": "HAL_EXTI_GenerateSWI", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_TIMEx_OCN_Start", + "ID": "c:@F@HAL_EXTI_GenerateSWI", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *, uint32_t)", + "display": "void HAL_EXTI_GenerateSWI(EXTI_HandleTypeDef *)", "location": { "column": "19", - "line": "312", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + "line": "835", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_exti.h" }, - "name": "HAL_TIMEx_OCN_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "320", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OCN_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OCN_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "333", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Start_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", - "location": { - "column": "19", - "line": "340", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Start_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_PWMN_Stop_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "342", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_PWMN_Stop_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Stop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "358", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_OnePulseN_Stop_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "372", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "372", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigCommutEvent_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_MasterConfigSynchronization", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *, const TIM_MasterConfigTypeDef *)", - "location": { - "column": "19", - "line": "374", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_MasterConfigSynchronization", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_MasterConfigSynchronization", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *, const TIM_MasterConfigTypeDef *)", - "location": { - "column": "19", - "line": "374", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_MasterConfigSynchronization", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigBreakDeadTime", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *, const TIM_BreakDeadTimeConfigTypeDef *)", - "location": { - "column": "19", - "line": "376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigBreakDeadTime", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigBreakDeadTime", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *, const TIM_BreakDeadTimeConfigTypeDef *)", - "location": { - "column": "19", - "line": "376", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigBreakDeadTime", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigBreakInput", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakInput(TIM_HandleTypeDef *, uint32_t, const TIMEx_BreakInputConfigTypeDef *)", - "location": { - "column": "19", - "line": "378", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigBreakInput", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_ConfigBreakInput", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakInput(TIM_HandleTypeDef *, uint32_t, const TIMEx_BreakInputConfigTypeDef *)", - "location": { - "column": "19", - "line": "378", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_ConfigBreakInput", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_GroupChannel5", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_GroupChannel5(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_GroupChannel5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_GroupChannel5", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_GroupChannel5(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "380", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_GroupChannel5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_RemapConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "381", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_RemapConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_RemapConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "381", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_RemapConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_CommutCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_CommutCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_CommutCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_CommutCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_CommutHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "392", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_CommutHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_CommutHalfCpltCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "392", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_CommutHalfCpltCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_BreakCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_BreakCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_BreakCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_BreakCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_Break2Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_Break2Callback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "394", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_Break2Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_Break2Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_TIMEx_Break2Callback(TIM_HandleTypeDef *)", - "location": { - "column": "6", - "line": "394", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_Break2Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "404", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_HallSensor_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *)", - "location": { - "column": "22", - "line": "404", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_HallSensor_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_GetChannelNState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "29", - "line": "405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_GetChannelNState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_TIMEx_GetChannelNState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *, uint32_t)", - "location": { - "column": "29", - "line": "405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "HAL_TIMEx_GetChannelNState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIMEx_DMACommutationCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "TIMEx_DMACommutationCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIMEx_DMACommutationCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "419", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "TIMEx_DMACommutationCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIMEx_DMACommutationHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "TIMEx_DMACommutationHalfCplt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@TIMEx_DMACommutationHalfCplt", - "What": "Function", - "defdec": "Dec", - "display": "void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "420", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" - }, - "name": "TIMEx_DMACommutationHalfCplt", + "name": "HAL_EXTI_GenerateSWI", "origin": "user_include", "scope": null }, @@ -309228,567 +308010,681 @@ "scope": null }, { - "ID": "c:uart_dev.h@28@macro@UART_DEV_H", + "ID": "c:stm32l4xx.h@1412@macro@__STM32L4xx_H", "What": "MacroDef", "defdec": "Def", - "display": "UART_DEV_H", + "display": "__STM32L4xx_H", "location": { "column": "9", - "line": "2", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "UART_DEV_H", + "name": "__STM32L4xx_H", "origin": "user_include", "scope": null }, { - "ID": "c:uart_dev.h@169@macro@ASCII_CHAR_BACKSPACE", + "ID": "c:stm32l4xx.h@1623@macro@STM32L4", "What": "MacroDef", "defdec": "Def", - "display": "ASCII_CHAR_BACKSPACE", - "location": { - "column": "10", - "line": "10", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_BACKSPACE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@245@macro@ASCII_CHAR_CHARACTER_TABULATION", - "What": "MacroDef", - "defdec": "Def", - "display": "ASCII_CHAR_CHARACTER_TABULATION", - "location": { - "column": "10", - "line": "11", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_CHARACTER_TABULATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@321@macro@ASCII_CHAR_LINE_FEED", - "What": "MacroDef", - "defdec": "Def", - "display": "ASCII_CHAR_LINE_FEED", - "location": { - "column": "10", - "line": "12", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_LINE_FEED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@397@macro@ASCII_CHAR_LINE_TABULATION", - "What": "MacroDef", - "defdec": "Def", - "display": "ASCII_CHAR_LINE_TABULATION", - "location": { - "column": "10", - "line": "13", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_LINE_TABULATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@473@macro@ASCII_CHAR_FORM_FEED", - "What": "MacroDef", - "defdec": "Def", - "display": "ASCII_CHAR_FORM_FEED", - "location": { - "column": "10", - "line": "14", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_FORM_FEED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@549@macro@ASCII_CHAR_CARRIAGE_RETURN", - "What": "MacroDef", - "defdec": "Def", - "display": "ASCII_CHAR_CARRIAGE_RETURN", - "location": { - "column": "10", - "line": "15", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "ASCII_CHAR_CARRIAGE_RETURN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@T@device_handle", - "What": "Typedef", - "defdec": "Def", - "display": "u_int32_t", - "location": { - "column": "19", - "line": "18", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "device_handle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@g_term_uart_handle", - "What": "Variable", - "defdec": "Dec", - "display": "g_term_uart_handle", - "location": { - "column": "22", - "line": "19", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "g_term_uart_handle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@g_lora_uart_handle", - "What": "Variable", - "defdec": "Dec", - "display": "g_lora_uart_handle", - "location": { - "column": "22", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "g_lora_uart_handle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart_dev.h@757@macro@RS485_MAX_PACK_DATA_LEN", - "What": "MacroDef", - "defdec": "Def", - "display": "RS485_MAX_PACK_DATA_LEN", + "display": "STM32L4", "location": { "column": "9", - "line": "22", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "RS485_MAX_PACK_DATA_LEN", + "name": "STM32L4", "origin": "user_include", "scope": null }, { - "ID": "c:@EA@uartIndex_e", + "ID": "c:stm32l4xx.h@4436@macro@__STM32L4_CMSIS_VERSION_MAIN", + "What": "MacroDef", + "defdec": "Def", + "display": "__STM32L4_CMSIS_VERSION_MAIN", + "location": { + "column": "9", + "line": "107", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "__STM32L4_CMSIS_VERSION_MAIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@4512@macro@__STM32L4_CMSIS_VERSION_SUB1", + "What": "MacroDef", + "defdec": "Def", + "display": "__STM32L4_CMSIS_VERSION_SUB1", + "location": { + "column": "9", + "line": "108", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "__STM32L4_CMSIS_VERSION_SUB1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@4588@macro@__STM32L4_CMSIS_VERSION_SUB2", + "What": "MacroDef", + "defdec": "Def", + "display": "__STM32L4_CMSIS_VERSION_SUB2", + "location": { + "column": "9", + "line": "109", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "__STM32L4_CMSIS_VERSION_SUB2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@4664@macro@__STM32L4_CMSIS_VERSION_RC", + "What": "MacroDef", + "defdec": "Def", + "display": "__STM32L4_CMSIS_VERSION_RC", + "location": { + "column": "9", + "line": "110", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "__STM32L4_CMSIS_VERSION_RC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@4744@macro@__STM32L4_CMSIS_VERSION", + "What": "MacroDef", + "defdec": "Def", + "display": "__STM32L4_CMSIS_VERSION", + "location": { + "column": "9", + "line": "111", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "__STM32L4_CMSIS_VERSION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FlagStatus", "What": "Enum", "defdec": "Def", "display": "", "fields": [ { - "ID": "c:@EA@uartIndex_e@RAIN_RS485_UART_INDEX", + "ID": "c:@EA@FlagStatus@RESET", "What": "Enumerator", "defdec": "Def", - "display": "RAIN_RS485_UART_INDEX", + "display": "RESET", "location": { - "column": "4", - "line": "25", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "3", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "RAIN_RS485_UART_INDEX", + "name": "RESET", "origin": "user_include", "scope": null }, { - "ID": "c:@EA@uartIndex_e@TERM_UART_INDEX", + "ID": "c:@EA@FlagStatus@SET", "What": "Enumerator", "defdec": "Def", - "display": "TERM_UART_INDEX", + "display": "SET", "location": { - "column": "4", - "line": "26", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "3", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "TERM_UART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@uartIndex_e@LORA_UART_INDEX", - "What": "Enumerator", - "defdec": "Def", - "display": "LORA_UART_INDEX", - "location": { - "column": "4", - "line": "27", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "LORA_UART_INDEX", + "name": "SET", "origin": "user_include", "scope": null } ], "location": { "column": "9", - "line": "24", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "line": "185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, "name": "", "origin": "user_include", "scope": null }, { - "ID": "c:@S@_uart_device_info", - "What": "Struct", + "ID": "c:@T@FlagStatus", + "What": "Typedef", "defdec": "Def", - "display": "_uart_device_info", + "display": "enum FlagStatus", "location": { - "column": "16", - "line": "31", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "3", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "members": [ + "name": "FlagStatus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@T@ITStatus", + "What": "Typedef", + "defdec": "Def", + "display": "enum FlagStatus", + "location": { + "column": "15", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ITStatus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@FunctionalState", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ { - "ID": "c:@S@_uart_device_info@FI@init", - "What": "FieldDecl", + "ID": "c:@EA@FunctionalState@DISABLE", + "What": "Enumerator", "defdec": "Def", - "display": "init", + "display": "DISABLE", "location": { - "column": "17", - "line": "32", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "3", + "line": "193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "init", + "name": "DISABLE", "origin": "user_include", - "scope": "_uart_device_info" + "scope": null }, { - "ID": "c:@S@_uart_device_info@FI@uart_index", - "What": "FieldDecl", + "ID": "c:@EA@FunctionalState@ENABLE", + "What": "Enumerator", "defdec": "Def", - "display": "uart_index", + "display": "ENABLE", "location": { - "column": "17", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "3", + "line": "194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" }, - "name": "uart_index", + "name": "ENABLE", "origin": "user_include", - "scope": "_uart_device_info" - }, - { - "ID": "c:@S@_uart_device_info@FI@uart_baudrate", - "What": "FieldDecl", - "defdec": "Def", - "display": "uart_baudrate", - "location": { - "column": "17", - "line": "34", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_baudrate", - "origin": "user_include", - "scope": "_uart_device_info" - }, - { - "ID": "c:@S@_uart_device_info@FI@uart_ring_queue", - "What": "FieldDecl", - "defdec": "Def", - "display": "uart_ring_queue", - "location": { - "column": "17", - "line": "35", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_ring_queue", - "origin": "user_include", - "scope": "_uart_device_info" - }, - { - "ID": "c:uart_dev.h@T@uart_device_info", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct _uart_device_info", - "location": { - "column": "2", - "line": "36", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_device_info", - "origin": "user_include", - "scope": "_uart_device_info" + "scope": null } ], - "name": "_uart_device_info", + "location": { + "column": "9", + "line": "191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "", "origin": "user_include", "scope": null }, { - "ID": "c:@F@uart_sendstr", - "What": "Function", - "defdec": "Dec", - "display": "void uart_sendstr(device_handle, char *)", + "ID": "c:@T@FunctionalState", + "What": "Typedef", + "defdec": "Def", + "display": "enum FunctionalState", "location": { - "column": "6", + "column": "3", + "line": "195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "FunctionalState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@6860@macro@IS_FUNCTIONAL_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_FUNCTIONAL_STATE", + "location": { + "column": "9", + "line": "196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "IS_FUNCTIONAL_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@ErrorStatus", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@ErrorStatus@SUCCESS", + "What": "Enumerator", + "defdec": "Def", + "display": "SUCCESS", + "location": { + "column": "3", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "SUCCESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@ErrorStatus@ERROR", + "What": "Enumerator", + "defdec": "Def", + "display": "ERROR", + "location": { + "column": "3", + "line": "201", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ERROR", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ErrorStatus", + "What": "Typedef", + "defdec": "Def", + "display": "enum ErrorStatus", + "location": { + "column": "3", + "line": "202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ErrorStatus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7085@macro@SET_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "SET_BIT", + "location": { + "column": "9", + "line": "212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "SET_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7135@macro@CLEAR_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "CLEAR_BIT", + "location": { + "column": "9", + "line": "214", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "CLEAR_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7186@macro@READ_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "READ_BIT", + "location": { + "column": "9", + "line": "216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "READ_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7235@macro@CLEAR_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "CLEAR_REG", + "location": { + "column": "9", + "line": "218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "CLEAR_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7284@macro@WRITE_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "WRITE_REG", + "location": { + "column": "9", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "WRITE_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7333@macro@READ_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "READ_REG", + "location": { + "column": "9", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "READ_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7374@macro@MODIFY_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "MODIFY_REG", + "location": { + "column": "9", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "MODIFY_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@7629@macro@ATOMIC_SET_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_SET_BIT", + "location": { + "column": "9", + "line": "228", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_SET_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@8101@macro@ATOMIC_CLEAR_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_CLEAR_BIT", + "location": { + "column": "9", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_CLEAR_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@8581@macro@ATOMIC_MODIFY_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_MODIFY_REG", + "location": { + "column": "9", + "line": "246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_MODIFY_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@9135@macro@ATOMIC_SETH_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_SETH_BIT", + "location": { + "column": "9", + "line": "255", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_SETH_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@9607@macro@ATOMIC_CLEARH_BIT", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_CLEARH_BIT", + "location": { + "column": "9", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_CLEARH_BIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@10087@macro@ATOMIC_MODIFYH_REG", + "What": "MacroDef", + "defdec": "Def", + "display": "ATOMIC_MODIFYH_REG", + "location": { + "column": "9", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "ATOMIC_MODIFYH_REG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx.h@10571@macro@POSITION_VAL", + "What": "MacroDef", + "defdec": "Def", + "display": "POSITION_VAL", + "location": { + "column": "9", + "line": "281", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" + }, + "name": "POSITION_VAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:DLib_Product_string.h@269@macro@_DLIB_PRODUCTS_STRING_H_", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCTS_STRING_H_", + "location": { + "column": "9", + "line": "12", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + }, + "name": "_DLIB_PRODUCTS_STRING_H_", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_string.h@887@macro@_DLIB_STRING_SKIP_INLINE_MEMCHR", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_MEMCHR", + "location": { + "column": "11", "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_sendstr", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_MEMCHR", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_sendstr", - "What": "Function", - "defdec": "Dec", - "display": "void uart_sendstr(device_handle, char *)", + "ID": "c:DLib_Product_string.h@930@macro@_DLIB_STRING_SKIP_INLINE_MEMCMP", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_MEMCMP", "location": { - "column": "6", - "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_sendstr", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uart_dev_write", - "What": "Function", - "defdec": "Dec", - "display": "void uart_dev_write(device_handle, void *, int)", - "location": { - "column": "6", + "column": "11", "line": "39", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_dev_write", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_MEMCMP", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_dev_write", - "What": "Function", - "defdec": "Dec", - "display": "void uart_dev_write(device_handle, void *, int)", + "ID": "c:DLib_Product_string.h@973@macro@_DLIB_STRING_SKIP_INLINE_STRCHR", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_STRCHR", "location": { - "column": "6", - "line": "39", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_dev_write", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@init_term_uart", - "What": "Function", - "defdec": "Dec", - "display": "void init_term_uart(void)", - "location": { - "column": "6", + "column": "11", "line": "40", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "init_term_uart", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_STRCHR", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@init_term_uart", - "What": "Function", - "defdec": "Dec", - "display": "void init_term_uart(void)", + "ID": "c:DLib_Product_string.h@1016@macro@_DLIB_STRING_SKIP_INLINE_STRCMP", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_STRCMP", "location": { - "column": "6", - "line": "40", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "init_term_uart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@init_lora_uart", - "What": "Function", - "defdec": "Dec", - "display": "void init_lora_uart(void)", - "location": { - "column": "6", + "column": "11", "line": "41", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "init_lora_uart", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_STRCMP", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@init_lora_uart", - "What": "Function", - "defdec": "Dec", - "display": "void init_lora_uart(void)", + "ID": "c:DLib_Product_string.h@1059@macro@_DLIB_STRING_SKIP_INLINE_STRLEN", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_STRLEN", "location": { - "column": "6", - "line": "41", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "init_lora_uart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uart_close", - "What": "Function", - "defdec": "Dec", - "display": "void uart_close(uartIndex_e)", - "location": { - "column": "6", + "column": "11", "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_close", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_STRLEN", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_close", - "What": "Function", - "defdec": "Dec", - "display": "void uart_close(uartIndex_e)", + "ID": "c:DLib_Product_string.h@1102@macro@_DLIB_STRING_SKIP_INLINE_STRNCPY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_STRNCPY", "location": { - "column": "6", - "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_close", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@term_printf", - "What": "Function", - "defdec": "Dec", - "display": "void term_printf(char *, ...)", - "location": { - "column": "6", + "column": "11", "line": "43", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "term_printf", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_STRNCPY", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@term_printf", - "What": "Function", - "defdec": "Dec", - "display": "void term_printf(char *, ...)", + "ID": "c:DLib_Product_string.h@1299@macro@_DLIB_STRING_SKIP_INLINE_MEMCPY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_MEMCPY", "location": { - "column": "6", - "line": "43", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "11", + "line": "54", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "term_printf", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_MEMCPY", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_dev_write", + "ID": "c:@F@memcpy", "What": "Function", - "defdec": "Dec", - "display": "void uart_dev_write(device_handle, void *, int)", + "defdec": "Def", + "display": "void * memcpy(void *, const void *, size_t)", "location": { - "column": "6", - "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "40", + "line": "56", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_dev_write", - "origin": "user_include", + "name": "memcpy", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_dev_write", - "What": "Function", - "defdec": "Dec", - "display": "void uart_dev_write(device_handle, void *, int)", + "ID": "c:DLib_Product_string.h@1522@macro@_DLIB_STRING_SKIP_INLINE_MEMMOVE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", "location": { - "column": "6", - "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "11", + "line": "62", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_dev_write", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@term_uart_readln", + "ID": "c:@F@memmove", "What": "Function", - "defdec": "Dec", - "display": "int term_uart_readln(u_int8_t *, int, u_int32_t)", + "defdec": "Def", + "display": "void * memmove(void *, const void *, size_t)", "location": { - "column": "5", - "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "40", + "line": "64", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "term_uart_readln", - "origin": "user_include", + "name": "memmove", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_dev_char_present", - "What": "Function", - "defdec": "Dec", - "display": "int uart_dev_char_present(device_handle)", + "ID": "c:DLib_Product_string.h@1748@macro@_DLIB_STRING_SKIP_INLINE_MEMSET", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRING_SKIP_INLINE_MEMSET", "location": { - "column": "5", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "11", + "line": "70", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_dev_char_present", - "origin": "user_include", + "name": "_DLIB_STRING_SKIP_INLINE_MEMSET", + "origin": "system_include", "scope": null }, { - "ID": "c:@F@uart_dev_char_present", + "ID": "c:@F@memset", "What": "Function", - "defdec": "Dec", - "display": "int uart_dev_char_present(device_handle)", + "defdec": "Def", + "display": "void * memset(void *, int, size_t)", "location": { - "column": "5", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + "column": "37", + "line": "72", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" }, - "name": "uart_dev_char_present", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uart_dev_in_char", - "What": "Function", - "defdec": "Dec", - "display": "char uart_dev_in_char(device_handle)", - "location": { - "column": "6", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_dev_in_char", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uart_dev_in_char", - "What": "Function", - "defdec": "Dec", - "display": "char uart_dev_in_char(device_handle)", - "location": { - "column": "6", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" - }, - "name": "uart_dev_in_char", - "origin": "user_include", + "name": "memset", + "origin": "system_include", "scope": null }, { @@ -312243,7424 +311139,6 @@ "origin": "user_include", "scope": null }, - { - "ID": "c:stm32l4xx_hal_def.h@871@macro@STM32L4xx_HAL_DEF_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_DEF_H", - "location": { - "column": "9", - "line": "22", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "STM32L4xx_HAL_DEF_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_StatusTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_StatusTypeDef@HAL_OK", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_OK", - "location": { - "column": "3", - "line": "40", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_OK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_StatusTypeDef@HAL_ERROR", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_ERROR", - "location": { - "column": "3", - "line": "41", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_ERROR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_StatusTypeDef@HAL_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_BUSY", - "location": { - "column": "3", - "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_StatusTypeDef@HAL_TIMEOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_TIMEOUT", - "location": { - "column": "3", - "line": "43", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_TIMEOUT", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_StatusTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_StatusTypeDef", - "location": { - "column": "3", - "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_StatusTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_LockTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_LockTypeDef@HAL_UNLOCKED", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_UNLOCKED", - "location": { - "column": "3", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_UNLOCKED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_LockTypeDef@HAL_LOCKED", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_LOCKED", - "location": { - "column": "3", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_LOCKED", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@HAL_LockTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum HAL_LockTypeDef", - "location": { - "column": "3", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_LockTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@1664@macro@UNUSED", - "What": "MacroDef", - "defdec": "Def", - "display": "UNUSED", - "location": { - "column": "9", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "UNUSED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@1730@macro@HAL_MAX_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_MAX_DELAY", - "location": { - "column": "9", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_MAX_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@1772@macro@HAL_IS_BIT_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_IS_BIT_SET", - "location": { - "column": "9", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_IS_BIT_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@1841@macro@HAL_IS_BIT_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_IS_BIT_CLR", - "location": { - "column": "9", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "HAL_IS_BIT_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@1909@macro@__HAL_LINKDMA", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_LINKDMA", - "location": { - "column": "9", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__HAL_LINKDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@3365@macro@__HAL_RESET_HANDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_RESET_HANDLE_STATE", - "location": { - "column": "9", - "line": "85", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__HAL_RESET_HANDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@3564@macro@__HAL_LOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_LOCK", - "location": { - "column": "11", - "line": "91", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__HAL_LOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@4392@macro@__HAL_UNLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_UNLOCK", - "location": { - "column": "11", - "line": "103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__HAL_UNLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@5873@macro@__ALIGN_END", - "What": "MacroDef", - "defdec": "Def", - "display": "__ALIGN_END", - "location": { - "column": "13", - "line": "144", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__ALIGN_END", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@6107@macro@__ALIGN_BEGIN", - "What": "MacroDef", - "defdec": "Def", - "display": "__ALIGN_BEGIN", - "location": { - "column": "15", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__ALIGN_BEGIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@6966@macro@__RAM_FUNC", - "What": "MacroDef", - "defdec": "Def", - "display": "__RAM_FUNC", - "location": { - "column": "9", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__RAM_FUNC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_def.h@7613@macro@__NOINLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__NOINLINE", - "location": { - "column": "9", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" - }, - "name": "__NOINLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@801@macro@STM32L4xx_HAL_DMA_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_DMA_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "STM32L4xx_HAL_DMA_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DMA_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "members": [ - { - "ID": "c:@SA@DMA_InitTypeDef@FI@Request", - "What": "FieldDecl", - "defdec": "Def", - "display": "Request", - "location": { - "column": "12", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Request", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@Direction", - "What": "FieldDecl", - "defdec": "Def", - "display": "Direction", - "location": { - "column": "12", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Direction", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@PeriphInc", - "What": "FieldDecl", - "defdec": "Def", - "display": "PeriphInc", - "location": { - "column": "12", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "PeriphInc", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@MemInc", - "What": "FieldDecl", - "defdec": "Def", - "display": "MemInc", - "location": { - "column": "12", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "MemInc", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@PeriphDataAlignment", - "What": "FieldDecl", - "defdec": "Def", - "display": "PeriphDataAlignment", - "location": { - "column": "12", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "PeriphDataAlignment", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@MemDataAlignment", - "What": "FieldDecl", - "defdec": "Def", - "display": "MemDataAlignment", - "location": { - "column": "12", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "MemDataAlignment", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@Mode", - "What": "FieldDecl", - "defdec": "Def", - "display": "Mode", - "location": { - "column": "12", - "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Mode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - }, - { - "ID": "c:@SA@DMA_InitTypeDef@FI@Priority", - "What": "FieldDecl", - "defdec": "Def", - "display": "Priority", - "location": { - "column": "12", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Priority", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_dma_h_46_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DMA_InitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct DMA_InitTypeDef", - "location": { - "column": "3", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_InitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_StateTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_STATE_RESET", - "location": { - "column": "3", - "line": "81", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_STATE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_READY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_STATE_READY", - "location": { - "column": "3", - "line": "82", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_STATE_READY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_BUSY", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_STATE_BUSY", - "location": { - "column": "3", - "line": "83", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_STATE_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_StateTypeDef@HAL_DMA_STATE_TIMEOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_STATE_TIMEOUT", - "location": { - "column": "3", - "line": "84", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_STATE_TIMEOUT", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef@HAL_DMA_FULL_TRANSFER", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_FULL_TRANSFER", - "location": { - "column": "3", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_FULL_TRANSFER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_LevelCompleteTypeDef@HAL_DMA_HALF_TRANSFER", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_HALF_TRANSFER", - "location": { - "column": "3", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_HALF_TRANSFER", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_CPLT_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_XFER_CPLT_CB_ID", - "location": { - "column": "3", - "line": "102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_XFER_CPLT_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_HALFCPLT_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_XFER_HALFCPLT_CB_ID", - "location": { - "column": "3", - "line": "103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_XFER_HALFCPLT_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ERROR_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_XFER_ERROR_CB_ID", - "location": { - "column": "3", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_XFER_ERROR_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ABORT_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_XFER_ABORT_CB_ID", - "location": { - "column": "3", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_XFER_ABORT_CB_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@HAL_DMA_CallbackIDTypeDef@HAL_DMA_XFER_ALL_CB_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "HAL_DMA_XFER_ALL_CB_ID", - "location": { - "column": "3", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_XFER_ALL_CB_ID", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@__DMA_HandleTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "__DMA_HandleTypeDef", - "location": { - "column": "16", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "members": [ - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@Instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "Instance", - "location": { - "column": "27", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Instance", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@Init", - "What": "FieldDecl", - "defdec": "Def", - "display": "Init", - "location": { - "column": "25", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Init", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@Lock", - "What": "FieldDecl", - "defdec": "Def", - "display": "Lock", - "location": { - "column": "25", - "line": "118", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Lock", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@State", - "What": "FieldDecl", - "defdec": "Def", - "display": "State", - "location": { - "column": "30", - "line": "120", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "State", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@Parent", - "What": "FieldDecl", - "defdec": "Def", - "display": "Parent", - "location": { - "column": "26", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "Parent", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@XferCpltCallback", - "What": "FieldDecl", - "defdec": "Def", - "display": "XferCpltCallback", - "location": { - "column": "28", - "line": "124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "XferCpltCallback", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@XferHalfCpltCallback", - "What": "FieldDecl", - "defdec": "Def", - "display": "XferHalfCpltCallback", - "location": { - "column": "28", - "line": "126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "XferHalfCpltCallback", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@XferErrorCallback", - "What": "FieldDecl", - "defdec": "Def", - "display": "XferErrorCallback", - "location": { - "column": "28", - "line": "128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "XferErrorCallback", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@XferAbortCallback", - "What": "FieldDecl", - "defdec": "Def", - "display": "XferAbortCallback", - "location": { - "column": "28", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "XferAbortCallback", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@ErrorCode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ErrorCode", - "location": { - "column": "25", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "ErrorCode", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@DmaBaseAddress", - "What": "FieldDecl", - "defdec": "Def", - "display": "DmaBaseAddress", - "location": { - "column": "26", - "line": "134", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DmaBaseAddress", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:@S@__DMA_HandleTypeDef@FI@ChannelIndex", - "What": "FieldDecl", - "defdec": "Def", - "display": "ChannelIndex", - "location": { - "column": "25", - "line": "136", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "ChannelIndex", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - }, - { - "ID": "c:stm32l4xx_hal_dma.h@T@DMA_HandleTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct __DMA_HandleTypeDef", - "location": { - "column": "2", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_HandleTypeDef", - "origin": "user_include", - "scope": "__DMA_HandleTypeDef" - } - ], - "name": "__DMA_HandleTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7389@macro@HAL_DMA_ERROR_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_NONE", - "location": { - "column": "9", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7496@macro@HAL_DMA_ERROR_TE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_TE", - "location": { - "column": "9", - "line": "168", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_TE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7603@macro@HAL_DMA_ERROR_NO_XFER", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_NO_XFER", - "location": { - "column": "9", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_NO_XFER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7710@macro@HAL_DMA_ERROR_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_TIMEOUT", - "location": { - "column": "9", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7817@macro@HAL_DMA_ERROR_NOT_SUPPORTED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_NOT_SUPPORTED", - "location": { - "column": "9", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_NOT_SUPPORTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@7924@macro@HAL_DMA_ERROR_SYNC", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_SYNC", - "location": { - "column": "9", - "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_SYNC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8031@macro@HAL_DMA_ERROR_REQGEN", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_ERROR_REQGEN", - "location": { - "column": "9", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_ERROR_REQGEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8240@macro@DMA_REQUEST_0", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_0", - "location": { - "column": "9", - "line": "184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8286@macro@DMA_REQUEST_1", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_1", - "location": { - "column": "9", - "line": "185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8332@macro@DMA_REQUEST_2", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_2", - "location": { - "column": "9", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8378@macro@DMA_REQUEST_3", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_3", - "location": { - "column": "9", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8424@macro@DMA_REQUEST_4", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_4", - "location": { - "column": "9", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8470@macro@DMA_REQUEST_5", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_5", - "location": { - "column": "9", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8516@macro@DMA_REQUEST_6", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_6", - "location": { - "column": "9", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@8562@macro@DMA_REQUEST_7", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_REQUEST_7", - "location": { - "column": "9", - "line": "191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_REQUEST_7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24126@macro@DMA_PERIPH_TO_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PERIPH_TO_MEMORY", - "location": { - "column": "9", - "line": "439", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PERIPH_TO_MEMORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24222@macro@DMA_MEMORY_TO_PERIPH", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MEMORY_TO_PERIPH", - "location": { - "column": "9", - "line": "440", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MEMORY_TO_PERIPH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24318@macro@DMA_MEMORY_TO_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MEMORY_TO_MEMORY", - "location": { - "column": "9", - "line": "441", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MEMORY_TO_MEMORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24528@macro@DMA_PINC_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PINC_ENABLE", - "location": { - "column": "9", - "line": "449", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PINC_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24621@macro@DMA_PINC_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PINC_DISABLE", - "location": { - "column": "9", - "line": "450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PINC_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24821@macro@DMA_MINC_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MINC_ENABLE", - "location": { - "column": "9", - "line": "458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MINC_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@24912@macro@DMA_MINC_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MINC_DISABLE", - "location": { - "column": "9", - "line": "459", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MINC_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25103@macro@DMA_PDATAALIGN_BYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PDATAALIGN_BYTE", - "location": { - "column": "9", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PDATAALIGN_BYTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25204@macro@DMA_PDATAALIGN_HALFWORD", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PDATAALIGN_HALFWORD", - "location": { - "column": "9", - "line": "468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PDATAALIGN_HALFWORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25305@macro@DMA_PDATAALIGN_WORD", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PDATAALIGN_WORD", - "location": { - "column": "9", - "line": "469", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PDATAALIGN_WORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25498@macro@DMA_MDATAALIGN_BYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MDATAALIGN_BYTE", - "location": { - "column": "9", - "line": "477", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MDATAALIGN_BYTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25595@macro@DMA_MDATAALIGN_HALFWORD", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MDATAALIGN_HALFWORD", - "location": { - "column": "9", - "line": "478", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MDATAALIGN_HALFWORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25692@macro@DMA_MDATAALIGN_WORD", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_MDATAALIGN_WORD", - "location": { - "column": "9", - "line": "479", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_MDATAALIGN_WORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25857@macro@DMA_NORMAL", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_NORMAL", - "location": { - "column": "9", - "line": "487", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_NORMAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@25948@macro@DMA_CIRCULAR", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CIRCULAR", - "location": { - "column": "9", - "line": "488", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_CIRCULAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26127@macro@DMA_PRIORITY_LOW", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PRIORITY_LOW", - "location": { - "column": "9", - "line": "496", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PRIORITY_LOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26216@macro@DMA_PRIORITY_MEDIUM", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PRIORITY_MEDIUM", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PRIORITY_MEDIUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26305@macro@DMA_PRIORITY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PRIORITY_HIGH", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PRIORITY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26394@macro@DMA_PRIORITY_VERY_HIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_PRIORITY_VERY_HIGH", - "location": { - "column": "9", - "line": "499", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_PRIORITY_VERY_HIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26601@macro@DMA_IT_TC", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_IT_TC", - "location": { - "column": "9", - "line": "508", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_IT_TC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26657@macro@DMA_IT_HT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_IT_HT", - "location": { - "column": "9", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_IT_HT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26713@macro@DMA_IT_TE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_IT_TE", - "location": { - "column": "9", - "line": "510", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_IT_TE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26861@macro@DMA_FLAG_GL1", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL1", - "location": { - "column": "9", - "line": "518", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26917@macro@DMA_FLAG_TC1", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC1", - "location": { - "column": "9", - "line": "519", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@26974@macro@DMA_FLAG_HT1", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT1", - "location": { - "column": "9", - "line": "520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27031@macro@DMA_FLAG_TE1", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE1", - "location": { - "column": "9", - "line": "521", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27088@macro@DMA_FLAG_GL2", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL2", - "location": { - "column": "9", - "line": "522", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27144@macro@DMA_FLAG_TC2", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC2", - "location": { - "column": "9", - "line": "523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27201@macro@DMA_FLAG_HT2", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT2", - "location": { - "column": "9", - "line": "524", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27258@macro@DMA_FLAG_TE2", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE2", - "location": { - "column": "9", - "line": "525", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27315@macro@DMA_FLAG_GL3", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL3", - "location": { - "column": "9", - "line": "526", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27371@macro@DMA_FLAG_TC3", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC3", - "location": { - "column": "9", - "line": "527", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27428@macro@DMA_FLAG_HT3", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT3", - "location": { - "column": "9", - "line": "528", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27485@macro@DMA_FLAG_TE3", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE3", - "location": { - "column": "9", - "line": "529", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27542@macro@DMA_FLAG_GL4", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL4", - "location": { - "column": "9", - "line": "530", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27598@macro@DMA_FLAG_TC4", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC4", - "location": { - "column": "9", - "line": "531", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27655@macro@DMA_FLAG_HT4", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT4", - "location": { - "column": "9", - "line": "532", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27712@macro@DMA_FLAG_TE4", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE4", - "location": { - "column": "9", - "line": "533", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27769@macro@DMA_FLAG_GL5", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL5", - "location": { - "column": "9", - "line": "534", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27825@macro@DMA_FLAG_TC5", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC5", - "location": { - "column": "9", - "line": "535", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27882@macro@DMA_FLAG_HT5", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT5", - "location": { - "column": "9", - "line": "536", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27939@macro@DMA_FLAG_TE5", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE5", - "location": { - "column": "9", - "line": "537", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@27996@macro@DMA_FLAG_GL6", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL6", - "location": { - "column": "9", - "line": "538", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28052@macro@DMA_FLAG_TC6", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC6", - "location": { - "column": "9", - "line": "539", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28109@macro@DMA_FLAG_HT6", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT6", - "location": { - "column": "9", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28166@macro@DMA_FLAG_TE6", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE6", - "location": { - "column": "9", - "line": "541", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28223@macro@DMA_FLAG_GL7", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_GL7", - "location": { - "column": "9", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_GL7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28279@macro@DMA_FLAG_TC7", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TC7", - "location": { - "column": "9", - "line": "543", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TC7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28336@macro@DMA_FLAG_HT7", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_HT7", - "location": { - "column": "9", - "line": "544", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_HT7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28393@macro@DMA_FLAG_TE7", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_FLAG_TE7", - "location": { - "column": "9", - "line": "545", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "DMA_FLAG_TE7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28741@macro@__HAL_DMA_RESET_HANDLE_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_RESET_HANDLE_STATE", - "location": { - "column": "9", - "line": "563", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_RESET_HANDLE_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@28948@macro@__HAL_DMA_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_ENABLE", - "location": { - "column": "9", - "line": "570", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@29152@macro@__HAL_DMA_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_DISABLE", - "location": { - "column": "9", - "line": "577", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@29457@macro@__HAL_DMA_GET_TC_FLAG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_TC_FLAG_INDEX", - "location": { - "column": "9", - "line": "588", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_TC_FLAG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@30729@macro@__HAL_DMA_GET_HT_FLAG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_HT_FLAG_INDEX", - "location": { - "column": "9", - "line": "608", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_HT_FLAG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@31984@macro@__HAL_DMA_GET_TE_FLAG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_TE_FLAG_INDEX", - "location": { - "column": "9", - "line": "628", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_TE_FLAG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@33241@macro@__HAL_DMA_GET_GI_FLAG_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_GI_FLAG_INDEX", - "location": { - "column": "9", - "line": "648", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_GI_FLAG_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@34906@macro@__HAL_DMA_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_FLAG", - "location": { - "column": "9", - "line": "675", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@35635@macro@__HAL_DMA_CLEAR_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_CLEAR_FLAG", - "location": { - "column": "9", - "line": "690", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_CLEAR_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@36303@macro@__HAL_DMA_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_ENABLE_IT", - "location": { - "column": "9", - "line": "703", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@36902@macro@__HAL_DMA_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_DISABLE_IT", - "location": { - "column": "9", - "line": "715", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@37526@macro@__HAL_DMA_GET_IT_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_IT_SOURCE", - "location": { - "column": "9", - "line": "727", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_IT_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@37862@macro@__HAL_DMA_GET_COUNTER", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_DMA_GET_COUNTER", - "location": { - "column": "9", - "line": "734", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "__HAL_DMA_GET_COUNTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_DeInit", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "756", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_DeInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "765", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "765", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Start", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "766", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "766", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Start_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "767", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Abort", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "767", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Abort", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Abort_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_Abort_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_PollForTransfer", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", - "location": { - "column": "19", - "line": "769", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_PollForTransfer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_PollForTransfer", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", - "location": { - "column": "19", - "line": "769", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_PollForTransfer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "770", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "770", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_RegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", - "location": { - "column": "19", - "line": "771", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_RegisterCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_RegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", - "location": { - "column": "19", - "line": "771", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_RegisterCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_UnRegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", - "location": { - "column": "19", - "line": "772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_UnRegisterCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_UnRegisterCallback", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", - "location": { - "column": "19", - "line": "772", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_UnRegisterCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", - "location": { - "column": "22", - "line": "782", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetState", - "What": "Function", - "defdec": "Dec", - "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", - "location": { - "column": "22", - "line": "782", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_GetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", - "location": { - "column": "22", - "line": "783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", - "location": { - "column": "22", - "line": "783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "HAL_DMA_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@39953@macro@IS_DMA_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_DIRECTION", - "location": { - "column": "9", - "line": "797", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@40196@macro@IS_DMA_BUFFER_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_BUFFER_SIZE", - "location": { - "column": "9", - "line": "801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_BUFFER_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@40274@macro@IS_DMA_PERIPHERAL_INC_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_PERIPHERAL_INC_STATE", - "location": { - "column": "9", - "line": "803", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_PERIPHERAL_INC_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@40431@macro@IS_DMA_MEMORY_INC_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_MEMORY_INC_STATE", - "location": { - "column": "9", - "line": "806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_MEMORY_INC_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@40607@macro@IS_DMA_ALL_REQUEST", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_ALL_REQUEST", - "location": { - "column": "9", - "line": "811", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_ALL_REQUEST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@41310@macro@IS_DMA_PERIPHERAL_DATA_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_PERIPHERAL_DATA_SIZE", - "location": { - "column": "9", - "line": "827", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_PERIPHERAL_DATA_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@41559@macro@IS_DMA_MEMORY_DATA_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_MEMORY_DATA_SIZE", - "location": { - "column": "9", - "line": "831", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_MEMORY_DATA_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@41797@macro@IS_DMA_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_MODE", - "location": { - "column": "9", - "line": "835", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.h@41911@macro@IS_DMA_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_DMA_PRIORITY", - "location": { - "column": "9", - "line": "838", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dma.h" - }, - "name": "IS_DMA_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@802@macro@STM32L4xx_HAL_FLASH_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_FLASH_H", - "location": { - "column": "9", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "STM32L4xx_HAL_FLASH_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FLASH_EraseInitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "members": [ - { - "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@TypeErase", - "What": "FieldDecl", - "defdec": "Def", - "display": "TypeErase", - "location": { - "column": "12", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "TypeErase", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" - }, - { - "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@Banks", - "What": "FieldDecl", - "defdec": "Def", - "display": "Banks", - "location": { - "column": "12", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Banks", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" - }, - { - "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@Page", - "What": "FieldDecl", - "defdec": "Def", - "display": "Page", - "location": { - "column": "12", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Page", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" - }, - { - "ID": "c:@SA@FLASH_EraseInitTypeDef@FI@NbPages", - "What": "FieldDecl", - "defdec": "Def", - "display": "NbPages", - "location": { - "column": "12", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "NbPages", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_45_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLASH_EraseInitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct FLASH_EraseInitTypeDef", - "location": { - "column": "3", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_EraseInitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "members": [ - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@OptionType", - "What": "FieldDecl", - "defdec": "Def", - "display": "OptionType", - "location": { - "column": "12", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OptionType", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPArea", - "What": "FieldDecl", - "defdec": "Def", - "display": "WRPArea", - "location": { - "column": "12", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "WRPArea", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPStartOffset", - "What": "FieldDecl", - "defdec": "Def", - "display": "WRPStartOffset", - "location": { - "column": "12", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "WRPStartOffset", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@WRPEndOffset", - "What": "FieldDecl", - "defdec": "Def", - "display": "WRPEndOffset", - "location": { - "column": "12", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "WRPEndOffset", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@RDPLevel", - "What": "FieldDecl", - "defdec": "Def", - "display": "RDPLevel", - "location": { - "column": "12", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "RDPLevel", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@USERType", - "What": "FieldDecl", - "defdec": "Def", - "display": "USERType", - "location": { - "column": "12", - "line": "76", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "USERType", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@USERConfig", - "What": "FieldDecl", - "defdec": "Def", - "display": "USERConfig", - "location": { - "column": "12", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "USERConfig", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPConfig", - "What": "FieldDecl", - "defdec": "Def", - "display": "PCROPConfig", - "location": { - "column": "12", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "PCROPConfig", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPStartAddr", - "What": "FieldDecl", - "defdec": "Def", - "display": "PCROPStartAddr", - "location": { - "column": "12", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "PCROPStartAddr", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - }, - { - "ID": "c:@SA@FLASH_OBProgramInitTypeDef@FI@PCROPEndAddr", - "What": "FieldDecl", - "defdec": "Def", - "display": "PCROPEndAddr", - "location": { - "column": "12", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "PCROPEndAddr", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_62_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLASH_OBProgramInitTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "struct FLASH_OBProgramInitTypeDef", - "location": { - "column": "3", - "line": "95", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_OBProgramInitTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_ProcedureTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_NONE", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_PROC_NONE", - "location": { - "column": "3", - "line": "102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PROC_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PAGE_ERASE", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_PROC_PAGE_ERASE", - "location": { - "column": "3", - "line": "103", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PROC_PAGE_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_MASS_ERASE", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_PROC_MASS_ERASE", - "location": { - "column": "3", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PROC_MASS_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PROGRAM", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_PROC_PROGRAM", - "location": { - "column": "3", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PROC_PROGRAM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_ProcedureTypeDef@FLASH_PROC_PROGRAM_LAST", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_PROC_PROGRAM_LAST", - "location": { - "column": "3", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PROC_PROGRAM_LAST", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "100", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLASH_ProcedureTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum FLASH_ProcedureTypeDef", - "location": { - "column": "3", - "line": "107", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_ProcedureTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_CacheTypeDef", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_DISABLED", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_CACHE_DISABLED", - "location": { - "column": "3", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_CACHE_DISABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_ICACHE_ENABLED", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_CACHE_ICACHE_ENABLED", - "location": { - "column": "3", - "line": "115", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_CACHE_ICACHE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_DCACHE_ENABLED", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_CACHE_DCACHE_ENABLED", - "location": { - "column": "3", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_CACHE_DCACHE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLASH_CacheTypeDef@FLASH_CACHE_ICACHE_DCACHE_ENABLED", - "What": "Enumerator", - "defdec": "Def", - "display": "FLASH_CACHE_ICACHE_DCACHE_ENABLED", - "location": { - "column": "3", - "line": "117", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_CACHE_ICACHE_DCACHE_ENABLED", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLASH_CacheTypeDef", - "What": "Typedef", - "defdec": "Def", - "display": "enum FLASH_CacheTypeDef", - "location": { - "column": "3", - "line": "118", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_CacheTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "members": [ - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Lock", - "What": "FieldDecl", - "defdec": "Def", - "display": "Lock", - "location": { - "column": "31", - "line": "125", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Lock", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@ErrorCode", - "What": "FieldDecl", - "defdec": "Def", - "display": "ErrorCode", - "location": { - "column": "31", - "line": "126", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "ErrorCode", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@ProcedureOnGoing", - "What": "FieldDecl", - "defdec": "Def", - "display": "ProcedureOnGoing", - "location": { - "column": "31", - "line": "127", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "ProcedureOnGoing", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Address", - "What": "FieldDecl", - "defdec": "Def", - "display": "Address", - "location": { - "column": "31", - "line": "128", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Address", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Bank", - "What": "FieldDecl", - "defdec": "Def", - "display": "Bank", - "location": { - "column": "31", - "line": "129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Bank", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@Page", - "What": "FieldDecl", - "defdec": "Def", - "display": "Page", - "location": { - "column": "31", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "Page", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@NbPagesToErase", - "What": "FieldDecl", - "defdec": "Def", - "display": "NbPagesToErase", - "location": { - "column": "31", - "line": "131", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "NbPagesToErase", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@SA@FLASH_ProcessTypeDef@FI@CacheToReactivate", - "What": "FieldDecl", - "defdec": "Def", - "display": "CacheToReactivate", - "location": { - "column": "31", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "CacheToReactivate", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - }, - { - "ID": "c:@T@FLASH_ProcessTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct FLASH_ProcessTypeDef", - "location": { - "column": "2", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_ProcessTypeDef", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_flash_h_123_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@6900@macro@HAL_FLASH_ERROR_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_NONE", - "location": { - "column": "9", - "line": "147", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@6947@macro@HAL_FLASH_ERROR_OP", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_OP", - "location": { - "column": "9", - "line": "148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_OP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@6999@macro@HAL_FLASH_ERROR_PROG", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_PROG", - "location": { - "column": "9", - "line": "149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_PROG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7053@macro@HAL_FLASH_ERROR_WRP", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_WRP", - "location": { - "column": "9", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_WRP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7106@macro@HAL_FLASH_ERROR_PGA", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_PGA", - "location": { - "column": "9", - "line": "151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_PGA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7159@macro@HAL_FLASH_ERROR_SIZ", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_SIZ", - "location": { - "column": "9", - "line": "152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_SIZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7212@macro@HAL_FLASH_ERROR_PGS", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_PGS", - "location": { - "column": "9", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_PGS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7265@macro@HAL_FLASH_ERROR_MIS", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_MIS", - "location": { - "column": "9", - "line": "154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_MIS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7318@macro@HAL_FLASH_ERROR_FAST", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_FAST", - "location": { - "column": "9", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_FAST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7372@macro@HAL_FLASH_ERROR_RD", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_RD", - "location": { - "column": "9", - "line": "156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_RD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7424@macro@HAL_FLASH_ERROR_OPTV", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_OPTV", - "location": { - "column": "9", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_OPTV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7478@macro@HAL_FLASH_ERROR_ECCC", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_ECCC", - "location": { - "column": "9", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_ECCC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@7529@macro@HAL_FLASH_ERROR_ECCD", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_ECCD", - "location": { - "column": "9", - "line": "159", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_ECCD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@8103@macro@HAL_FLASH_ERROR_PEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_ERROR_PEMPTY", - "location": { - "column": "9", - "line": "164", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_ERROR_PEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@8248@macro@FLASH_TYPEERASE_PAGES", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TYPEERASE_PAGES", - "location": { - "column": "9", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TYPEERASE_PAGES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@8324@macro@FLASH_TYPEERASE_MASSERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TYPEERASE_MASSERASE", - "location": { - "column": "9", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TYPEERASE_MASSERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@8485@macro@FLASH_BANK_1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_BANK_1", - "location": { - "column": "9", - "line": "182", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_BANK_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@9173@macro@FLASH_BANK_BOTH", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_BANK_BOTH", - "location": { - "column": "9", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_BANK_BOTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@9365@macro@FLASH_TYPEPROGRAM_DOUBLEWORD", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TYPEPROGRAM_DOUBLEWORD", - "location": { - "column": "9", - "line": "199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TYPEPROGRAM_DOUBLEWORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@9485@macro@FLASH_TYPEPROGRAM_FAST", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TYPEPROGRAM_FAST", - "location": { - "column": "9", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TYPEPROGRAM_FAST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@9743@macro@FLASH_TYPEPROGRAM_FAST_AND_LAST", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TYPEPROGRAM_FAST_AND_LAST", - "location": { - "column": "9", - "line": "202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TYPEPROGRAM_FAST_AND_LAST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10090@macro@OPTIONBYTE_WRP", - "What": "MacroDef", - "defdec": "Def", - "display": "OPTIONBYTE_WRP", - "location": { - "column": "9", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OPTIONBYTE_WRP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10181@macro@OPTIONBYTE_RDP", - "What": "MacroDef", - "defdec": "Def", - "display": "OPTIONBYTE_RDP", - "location": { - "column": "9", - "line": "212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OPTIONBYTE_RDP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10272@macro@OPTIONBYTE_USER", - "What": "MacroDef", - "defdec": "Def", - "display": "OPTIONBYTE_USER", - "location": { - "column": "9", - "line": "213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OPTIONBYTE_USER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10364@macro@OPTIONBYTE_PCROP", - "What": "MacroDef", - "defdec": "Def", - "display": "OPTIONBYTE_PCROP", - "location": { - "column": "9", - "line": "214", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OPTIONBYTE_PCROP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10540@macro@OB_WRPAREA_BANK1_AREAA", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_WRPAREA_BANK1_AREAA", - "location": { - "column": "9", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_WRPAREA_BANK1_AREAA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@10621@macro@OB_WRPAREA_BANK1_AREAB", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_WRPAREA_BANK1_AREAB", - "location": { - "column": "9", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_WRPAREA_BANK1_AREAB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@11373@macro@OB_RDP_LEVEL_0", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_RDP_LEVEL_0", - "location": { - "column": "9", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_RDP_LEVEL_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@11425@macro@OB_RDP_LEVEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_RDP_LEVEL_1", - "location": { - "column": "9", - "line": "238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_RDP_LEVEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@11477@macro@OB_RDP_LEVEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_RDP_LEVEL_2", - "location": { - "column": "9", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_RDP_LEVEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@11788@macro@OB_USER_BOR_LEV", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_BOR_LEV", - "location": { - "column": "9", - "line": "248", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_BOR_LEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@11884@macro@OB_USER_nRST_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nRST_STOP", - "location": { - "column": "9", - "line": "249", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nRST_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@12008@macro@OB_USER_nRST_STDBY", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nRST_STDBY", - "location": { - "column": "9", - "line": "250", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nRST_STDBY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@12135@macro@OB_USER_IWDG_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_IWDG_SW", - "location": { - "column": "9", - "line": "251", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_IWDG_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@12246@macro@OB_USER_IWDG_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_IWDG_STOP", - "location": { - "column": "9", - "line": "252", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_IWDG_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@12375@macro@OB_USER_IWDG_STDBY", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_IWDG_STDBY", - "location": { - "column": "9", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_IWDG_STDBY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@12507@macro@OB_USER_WWDG_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_WWDG_SW", - "location": { - "column": "9", - "line": "254", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_WWDG_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@13530@macro@OB_USER_nBOOT1", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nBOOT1", - "location": { - "column": "9", - "line": "265", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nBOOT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@13629@macro@OB_USER_SRAM2_PE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_SRAM2_PE", - "location": { - "column": "9", - "line": "266", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_SRAM2_PE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@13735@macro@OB_USER_SRAM2_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_SRAM2_RST", - "location": { - "column": "9", - "line": "267", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_SRAM2_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@13845@macro@OB_USER_nRST_SHDW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nRST_SHDW", - "location": { - "column": "9", - "line": "268", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nRST_SHDW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@14496@macro@OB_USER_nSWBOOT0", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nSWBOOT0", - "location": { - "column": "9", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nSWBOOT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@14591@macro@OB_USER_nBOOT0", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_USER_nBOOT0", - "location": { - "column": "9", - "line": "274", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_USER_nBOOT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15157@macro@OB_BOR_LEVEL_0", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOR_LEVEL_0", - "location": { - "column": "9", - "line": "286", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOR_LEVEL_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15274@macro@OB_BOR_LEVEL_1", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOR_LEVEL_1", - "location": { - "column": "9", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOR_LEVEL_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15391@macro@OB_BOR_LEVEL_2", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOR_LEVEL_2", - "location": { - "column": "9", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOR_LEVEL_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15508@macro@OB_BOR_LEVEL_3", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOR_LEVEL_3", - "location": { - "column": "9", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOR_LEVEL_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15625@macro@OB_BOR_LEVEL_4", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOR_LEVEL_4", - "location": { - "column": "9", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOR_LEVEL_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15854@macro@OB_STOP_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_STOP_RST", - "location": { - "column": "9", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_STOP_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@15978@macro@OB_STOP_NORST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_STOP_NORST", - "location": { - "column": "9", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_STOP_NORST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@16223@macro@OB_STANDBY_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_STANDBY_RST", - "location": { - "column": "9", - "line": "307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_STANDBY_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@16350@macro@OB_STANDBY_NORST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_STANDBY_NORST", - "location": { - "column": "9", - "line": "308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_STANDBY_NORST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@16600@macro@OB_SHUTDOWN_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SHUTDOWN_RST", - "location": { - "column": "9", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SHUTDOWN_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@16728@macro@OB_SHUTDOWN_NORST", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SHUTDOWN_NORST", - "location": { - "column": "9", - "line": "317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SHUTDOWN_NORST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@16965@macro@OB_IWDG_HW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_HW", - "location": { - "column": "9", - "line": "325", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_HW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@17075@macro@OB_IWDG_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_SW", - "location": { - "column": "9", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@17301@macro@OB_IWDG_STOP_FREEZE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_STOP_FREEZE", - "location": { - "column": "9", - "line": "334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_STOP_FREEZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@17433@macro@OB_IWDG_STOP_RUN", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_STOP_RUN", - "location": { - "column": "9", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_STOP_RUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@17688@macro@OB_IWDG_STDBY_FREEZE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_STDBY_FREEZE", - "location": { - "column": "9", - "line": "343", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_STDBY_FREEZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@17823@macro@OB_IWDG_STDBY_RUN", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_IWDG_STDBY_RUN", - "location": { - "column": "9", - "line": "344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_IWDG_STDBY_RUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@18065@macro@OB_WWDG_HW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_WWDG_HW", - "location": { - "column": "9", - "line": "352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_WWDG_HW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@18170@macro@OB_WWDG_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_WWDG_SW", - "location": { - "column": "9", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_WWDG_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@20497@macro@OB_BOOT1_SRAM", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT1_SRAM", - "location": { - "column": "9", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT1_SRAM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@20631@macro@OB_BOOT1_SYSTEM", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT1_SYSTEM", - "location": { - "column": "9", - "line": "404", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT1_SYSTEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@20885@macro@OB_SRAM2_PARITY_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SRAM2_PARITY_ENABLE", - "location": { - "column": "9", - "line": "412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SRAM2_PARITY_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@20991@macro@OB_SRAM2_PARITY_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SRAM2_PARITY_DISABLE", - "location": { - "column": "9", - "line": "413", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SRAM2_PARITY_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@21222@macro@OB_SRAM2_RST_ERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SRAM2_RST_ERASE", - "location": { - "column": "9", - "line": "421", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SRAM2_RST_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@21342@macro@OB_SRAM2_RST_NOT_ERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_SRAM2_RST_NOT_ERASE", - "location": { - "column": "9", - "line": "422", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_SRAM2_RST_NOT_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22104@macro@OB_BOOT0_FROM_OB", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT0_FROM_OB", - "location": { - "column": "9", - "line": "434", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT0_FROM_OB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22223@macro@OB_BOOT0_FROM_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT0_FROM_PIN", - "location": { - "column": "9", - "line": "435", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT0_FROM_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22447@macro@OB_BOOT0_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT0_RESET", - "location": { - "column": "9", - "line": "443", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT0_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22538@macro@OB_BOOT0_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_BOOT0_SET", - "location": { - "column": "9", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_BOOT0_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22749@macro@OB_PCROP_RDP_NOT_ERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_PCROP_RDP_NOT_ERASE", - "location": { - "column": "9", - "line": "453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_PCROP_RDP_NOT_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@22987@macro@OB_PCROP_RDP_ERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "OB_PCROP_RDP_ERASE", - "location": { - "column": "9", - "line": "455", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "OB_PCROP_RDP_ERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@23317@macro@FLASH_LATENCY_0", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_LATENCY_0", - "location": { - "column": "9", - "line": "464", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_LATENCY_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@23419@macro@FLASH_LATENCY_1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_LATENCY_1", - "location": { - "column": "9", - "line": "465", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_LATENCY_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@23520@macro@FLASH_LATENCY_2", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_LATENCY_2", - "location": { - "column": "9", - "line": "466", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_LATENCY_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@23622@macro@FLASH_LATENCY_3", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_LATENCY_3", - "location": { - "column": "9", - "line": "467", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_LATENCY_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@23726@macro@FLASH_LATENCY_4", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_LATENCY_4", - "location": { - "column": "9", - "line": "468", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_LATENCY_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@25255@macro@FLASH_KEY1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_KEY1", - "location": { - "column": "9", - "line": "489", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_KEY1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@25346@macro@FLASH_KEY2", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_KEY2", - "location": { - "column": "9", - "line": "490", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_KEY2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@25575@macro@FLASH_PDKEY1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_PDKEY1", - "location": { - "column": "9", - "line": "493", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PDKEY1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@25677@macro@FLASH_PDKEY2", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_PDKEY2", - "location": { - "column": "9", - "line": "494", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PDKEY2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@25920@macro@FLASH_OPTKEY1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_OPTKEY1", - "location": { - "column": "9", - "line": "497", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_OPTKEY1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26023@macro@FLASH_OPTKEY2", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_OPTKEY2", - "location": { - "column": "9", - "line": "498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_OPTKEY2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26346@macro@FLASH_FLAG_EOP", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_EOP", - "location": { - "column": "9", - "line": "507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_EOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26454@macro@FLASH_FLAG_OPERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_OPERR", - "location": { - "column": "9", - "line": "508", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_OPERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26561@macro@FLASH_FLAG_PROGERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_PROGERR", - "location": { - "column": "9", - "line": "509", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_PROGERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26670@macro@FLASH_FLAG_WRPERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_WRPERR", - "location": { - "column": "9", - "line": "510", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_WRPERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26784@macro@FLASH_FLAG_PGAERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_PGAERR", - "location": { - "column": "9", - "line": "511", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_PGAERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@26903@macro@FLASH_FLAG_SIZERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_SIZERR", - "location": { - "column": "9", - "line": "512", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_SIZERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27006@macro@FLASH_FLAG_PGSERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_PGSERR", - "location": { - "column": "9", - "line": "513", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_PGSERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27124@macro@FLASH_FLAG_MISERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_MISERR", - "location": { - "column": "9", - "line": "514", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_MISERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27248@macro@FLASH_FLAG_FASTERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_FASTERR", - "location": { - "column": "9", - "line": "515", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_FASTERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27362@macro@FLASH_FLAG_RDERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_RDERR", - "location": { - "column": "9", - "line": "516", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_RDERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27470@macro@FLASH_FLAG_OPTVERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_OPTVERR", - "location": { - "column": "9", - "line": "517", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_OPTVERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@27584@macro@FLASH_FLAG_BSY", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_BSY", - "location": { - "column": "9", - "line": "518", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_BSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@28153@macro@FLASH_FLAG_PEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_PEMPTY", - "location": { - "column": "9", - "line": "523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_PEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@28253@macro@FLASH_FLAG_SR_ERRORS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_SR_ERRORS", - "location": { - "column": "9", - "line": "524", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_SR_ERRORS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@29417@macro@FLASH_FLAG_ECCC", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_ECCC", - "location": { - "column": "9", - "line": "539", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_ECCC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@29518@macro@FLASH_FLAG_ECCD", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_ECCD", - "location": { - "column": "9", - "line": "540", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_ECCD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@29626@macro@FLASH_FLAG_ECCR_ERRORS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_ECCR_ERRORS", - "location": { - "column": "9", - "line": "542", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_ECCR_ERRORS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@29699@macro@FLASH_FLAG_ALL_ERRORS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_FLAG_ALL_ERRORS", - "location": { - "column": "9", - "line": "544", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_FLAG_ALL_ERRORS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@30224@macro@FLASH_IT_EOP", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_IT_EOP", - "location": { - "column": "9", - "line": "556", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_IT_EOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@30344@macro@FLASH_IT_OPERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_IT_OPERR", - "location": { - "column": "9", - "line": "557", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_IT_OPERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@30447@macro@FLASH_IT_RDERR", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_IT_RDERR", - "location": { - "column": "9", - "line": "558", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_IT_RDERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@30560@macro@FLASH_IT_ECCC", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_IT_ECCC", - "location": { - "column": "9", - "line": "559", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_IT_ECCC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@31330@macro@__HAL_FLASH_SET_LATENCY", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_SET_LATENCY", - "location": { - "column": "9", - "line": "581", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_SET_LATENCY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@31846@macro@__HAL_FLASH_GET_LATENCY", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_GET_LATENCY", - "location": { - "column": "9", - "line": "593", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_GET_LATENCY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32013@macro@__HAL_FLASH_PREFETCH_BUFFER_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_PREFETCH_BUFFER_ENABLE", - "location": { - "column": "9", - "line": "599", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_PREFETCH_BUFFER_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32179@macro@__HAL_FLASH_PREFETCH_BUFFER_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_PREFETCH_BUFFER_DISABLE", - "location": { - "column": "9", - "line": "605", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_PREFETCH_BUFFER_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32348@macro@__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", - "location": { - "column": "9", - "line": "611", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_INSTRUCTION_CACHE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32514@macro@__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", - "location": { - "column": "9", - "line": "617", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_INSTRUCTION_CACHE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32674@macro@__HAL_FLASH_DATA_CACHE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_DATA_CACHE_ENABLE", - "location": { - "column": "9", - "line": "623", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_DATA_CACHE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@32833@macro@__HAL_FLASH_DATA_CACHE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_DATA_CACHE_DISABLE", - "location": { - "column": "9", - "line": "629", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_DATA_CACHE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@33084@macro@__HAL_FLASH_INSTRUCTION_CACHE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_INSTRUCTION_CACHE_RESET", - "location": { - "column": "9", - "line": "636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_INSTRUCTION_CACHE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@33490@macro@__HAL_FLASH_DATA_CACHE_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_DATA_CACHE_RESET", - "location": { - "column": "9", - "line": "645", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_DATA_CACHE_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@33978@macro@__HAL_FLASH_POWER_DOWN_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_POWER_DOWN_ENABLE", - "location": { - "column": "9", - "line": "654", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_POWER_DOWN_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@34564@macro@__HAL_FLASH_POWER_DOWN_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_POWER_DOWN_DISABLE", - "location": { - "column": "9", - "line": "664", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_POWER_DOWN_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@35017@macro@__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", - "location": { - "column": "9", - "line": "673", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_SLEEP_POWERDOWN_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@35207@macro@__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", - "location": { - "column": "9", - "line": "679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_SLEEP_POWERDOWN_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@35853@macro@__HAL_FLASH_ENABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_ENABLE_IT", - "location": { - "column": "9", - "line": "700", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_ENABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@36643@macro@__HAL_FLASH_DISABLE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_DISABLE_IT", - "location": { - "column": "9", - "line": "714", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_DISABLE_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@38333@macro@__HAL_FLASH_GET_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_GET_FLAG", - "location": { - "column": "9", - "line": "739", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_GET_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@39763@macro@__HAL_FLASH_CLEAR_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_FLASH_CLEAR_FLAG", - "location": { - "column": "9", - "line": "763", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "__HAL_FLASH_CLEAR_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "20", - "line": "783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Program", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "20", - "line": "783", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Program", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "20", - "line": "784", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Program_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "20", - "line": "784", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Program_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_IRQHandler(void)", - "location": { - "column": "20", - "line": "786", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_IRQHandler(void)", - "location": { - "column": "20", - "line": "786", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", - "location": { - "column": "20", - "line": "788", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_EndOfOperationCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", - "location": { - "column": "20", - "line": "788", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_EndOfOperationCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OperationErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", - "location": { - "column": "20", - "line": "789", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OperationErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OperationErrorCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", - "location": { - "column": "20", - "line": "789", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OperationErrorCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Unlock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", - "location": { - "column": "20", - "line": "798", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Unlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Unlock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", - "location": { - "column": "20", - "line": "798", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Unlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Lock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", - "location": { - "column": "20", - "line": "799", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Lock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Lock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", - "location": { - "column": "20", - "line": "799", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_Lock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Unlock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", - "location": { - "column": "20", - "line": "801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Unlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Unlock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", - "location": { - "column": "20", - "line": "801", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Unlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Lock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", - "location": { - "column": "20", - "line": "802", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Lock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Lock", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", - "location": { - "column": "20", - "line": "802", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Lock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Launch", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", - "location": { - "column": "20", - "line": "803", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Launch", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Launch", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", - "location": { - "column": "20", - "line": "803", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_OB_Launch", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_FLASH_GetError(void)", - "location": { - "column": "10", - "line": "812", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_GetError", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_FLASH_GetError(void)", - "location": { - "column": "10", - "line": "812", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "HAL_FLASH_GetError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@pFlash", - "What": "Variable", - "defdec": "Dec", - "display": "pFlash", - "location": { - "column": "29", - "line": "825", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "pFlash", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@pFlash", - "What": "Variable", - "defdec": "Dec", - "display": "pFlash", - "location": { - "column": "29", - "line": "825", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "pFlash", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_WaitForLastOperation", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", - "location": { - "column": "19", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_WaitForLastOperation", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_WaitForLastOperation", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", - "location": { - "column": "19", - "line": "834", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_WaitForLastOperation", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@42802@macro@FLASH_BANK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_BANK_SIZE", - "location": { - "column": "9", - "line": "848", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_BANK_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@43204@macro@FLASH_PAGE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_PAGE_SIZE", - "location": { - "column": "9", - "line": "855", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_PAGE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@43276@macro@FLASH_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "858", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "FLASH_TIMEOUT_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@43523@macro@IS_FLASH_TYPEERASE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_TYPEERASE", - "location": { - "column": "9", - "line": "868", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_TYPEERASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@44468@macro@IS_FLASH_BANK", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_BANK", - "location": { - "column": "9", - "line": "881", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_BANK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@44539@macro@IS_FLASH_BANK_EXCLUSIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_BANK_EXCLUSIVE", - "location": { - "column": "9", - "line": "883", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_BANK_EXCLUSIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@44618@macro@IS_FLASH_TYPEPROGRAM", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_TYPEPROGRAM", - "location": { - "column": "9", - "line": "886", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_TYPEPROGRAM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@45163@macro@IS_FLASH_MAIN_MEM_ADDRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_MAIN_MEM_ADDRESS", - "location": { - "column": "9", - "line": "893", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_MAIN_MEM_ADDRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@45926@macro@IS_FLASH_OTP_ADDRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_OTP_ADDRESS", - "location": { - "column": "9", - "line": "900", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_OTP_ADDRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@46031@macro@IS_FLASH_PROGRAM_ADDRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_PROGRAM_ADDRESS", - "location": { - "column": "9", - "line": "902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_PROGRAM_ADDRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@47480@macro@IS_FLASH_PAGE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_PAGE", - "location": { - "column": "9", - "line": "916", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_PAGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@47826@macro@IS_OPTIONBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OPTIONBYTE", - "location": { - "column": "9", - "line": "921", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OPTIONBYTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@48602@macro@IS_OB_WRPAREA", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_WRPAREA", - "location": { - "column": "9", - "line": "929", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_WRPAREA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@48733@macro@IS_OB_RDP_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_RDP_LEVEL", - "location": { - "column": "9", - "line": "932", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_RDP_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@49538@macro@IS_OB_USER_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_TYPE", - "location": { - "column": "9", - "line": "941", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@49670@macro@IS_OB_USER_BOR_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_BOR_LEVEL", - "location": { - "column": "9", - "line": "944", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_BOR_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@49964@macro@IS_OB_USER_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_STOP", - "location": { - "column": "9", - "line": "948", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50067@macro@IS_OB_USER_STANDBY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_STANDBY", - "location": { - "column": "9", - "line": "950", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_STANDBY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50176@macro@IS_OB_USER_SHUTDOWN", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_SHUTDOWN", - "location": { - "column": "9", - "line": "952", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_SHUTDOWN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50287@macro@IS_OB_USER_IWDG", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_IWDG", - "location": { - "column": "9", - "line": "954", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_IWDG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50386@macro@IS_OB_USER_IWDG_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_IWDG_STOP", - "location": { - "column": "9", - "line": "956", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_IWDG_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50500@macro@IS_OB_USER_IWDG_STDBY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_IWDG_STDBY", - "location": { - "column": "9", - "line": "958", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_IWDG_STDBY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@50616@macro@IS_OB_USER_WWDG", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_WWDG", - "location": { - "column": "9", - "line": "960", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_WWDG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@51607@macro@IS_OB_USER_BOOT1", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_BOOT1", - "location": { - "column": "9", - "line": "974", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_BOOT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@51714@macro@IS_OB_USER_SRAM2_PARITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_SRAM2_PARITY", - "location": { - "column": "9", - "line": "976", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_SRAM2_PARITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@51838@macro@IS_OB_USER_SRAM2_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_SRAM2_RST", - "location": { - "column": "9", - "line": "978", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_SRAM2_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@52480@macro@IS_OB_USER_SWBOOT0", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_SWBOOT0", - "location": { - "column": "9", - "line": "984", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_SWBOOT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@52592@macro@IS_OB_USER_BOOT0", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_USER_BOOT0", - "location": { - "column": "9", - "line": "986", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_USER_BOOT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@52705@macro@IS_OB_PCROP_RDP", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_OB_PCROP_RDP", - "location": { - "column": "9", - "line": "989", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_OB_PCROP_RDP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.h@53955@macro@IS_FLASH_LATENCY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FLASH_LATENCY", - "location": { - "column": "9", - "line": "1001", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash.h" - }, - "name": "IS_FLASH_LATENCY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@810@macro@STM32L4xx_HAL_CORTEX_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_CORTEX_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "STM32L4xx_HAL_CORTEX_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "members": [ - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Enable", - "What": "FieldDecl", - "defdec": "Def", - "display": "Enable", - "location": { - "column": "26", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "Enable", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Number", - "What": "FieldDecl", - "defdec": "Def", - "display": "Number", - "location": { - "column": "26", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "Number", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@BaseAddress", - "What": "FieldDecl", - "defdec": "Def", - "display": "BaseAddress", - "location": { - "column": "26", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "BaseAddress", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Size", - "What": "FieldDecl", - "defdec": "Def", - "display": "Size", - "location": { - "column": "26", - "line": "56", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "Size", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@SubRegionDisable", - "What": "FieldDecl", - "defdec": "Def", - "display": "SubRegionDisable", - "location": { - "column": "26", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "SubRegionDisable", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@TypeExtField", - "What": "FieldDecl", - "defdec": "Def", - "display": "TypeExtField", - "location": { - "column": "26", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "TypeExtField", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@AccessPermission", - "What": "FieldDecl", - "defdec": "Def", - "display": "AccessPermission", - "location": { - "column": "26", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "AccessPermission", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@DisableExec", - "What": "FieldDecl", - "defdec": "Def", - "display": "DisableExec", - "location": { - "column": "26", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "DisableExec", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsShareable", - "What": "FieldDecl", - "defdec": "Def", - "display": "IsShareable", - "location": { - "column": "26", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IsShareable", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsCacheable", - "What": "FieldDecl", - "defdec": "Def", - "display": "IsCacheable", - "location": { - "column": "26", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IsCacheable", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsBufferable", - "What": "FieldDecl", - "defdec": "Def", - "display": "IsBufferable", - "location": { - "column": "26", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IsBufferable", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - }, - { - "ID": "c:@T@MPU_Region_InitTypeDef", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct MPU_Region_InitTypeDef", - "location": { - "column": "2", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_Region_InitTypeDef", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@4404@macro@NVIC_PRIORITYGROUP_0", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_PRIORITYGROUP_0", - "location": { - "column": "9", - "line": "91", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "NVIC_PRIORITYGROUP_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@4595@macro@NVIC_PRIORITYGROUP_1", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_PRIORITYGROUP_1", - "location": { - "column": "9", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "NVIC_PRIORITYGROUP_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@4786@macro@NVIC_PRIORITYGROUP_2", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_PRIORITYGROUP_2", - "location": { - "column": "9", - "line": "95", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "NVIC_PRIORITYGROUP_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@4977@macro@NVIC_PRIORITYGROUP_3", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_PRIORITYGROUP_3", - "location": { - "column": "9", - "line": "97", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "NVIC_PRIORITYGROUP_3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5168@macro@NVIC_PRIORITYGROUP_4", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_PRIORITYGROUP_4", - "location": { - "column": "9", - "line": "99", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "NVIC_PRIORITYGROUP_4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5465@macro@SYSTICK_CLKSOURCE_HCLK_DIV8", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSTICK_CLKSOURCE_HCLK_DIV8", - "location": { - "column": "9", - "line": "108", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "SYSTICK_CLKSOURCE_HCLK_DIV8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5520@macro@SYSTICK_CLKSOURCE_HCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSTICK_CLKSOURCE_HCLK", - "location": { - "column": "9", - "line": "109", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "SYSTICK_CLKSOURCE_HCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5734@macro@MPU_HFNMI_PRIVDEF_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_HFNMI_PRIVDEF_NONE", - "location": { - "column": "10", - "line": "119", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_HFNMI_PRIVDEF_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5789@macro@MPU_HARDFAULT_NMI", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_HARDFAULT_NMI", - "location": { - "column": "10", - "line": "120", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_HARDFAULT_NMI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5856@macro@MPU_PRIVILEGED_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_PRIVILEGED_DEFAULT", - "location": { - "column": "10", - "line": "121", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_PRIVILEGED_DEFAULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@5925@macro@MPU_HFNMI_PRIVDEF", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_HFNMI_PRIVDEF", - "location": { - "column": "10", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_HFNMI_PRIVDEF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6118@macro@MPU_REGION_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_ENABLE", - "location": { - "column": "10", - "line": "130", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6172@macro@MPU_REGION_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_DISABLE", - "location": { - "column": "10", - "line": "131", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6336@macro@MPU_INSTRUCTION_ACCESS_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_INSTRUCTION_ACCESS_ENABLE", - "location": { - "column": "10", - "line": "139", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_INSTRUCTION_ACCESS_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6397@macro@MPU_INSTRUCTION_ACCESS_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_INSTRUCTION_ACCESS_DISABLE", - "location": { - "column": "10", - "line": "140", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_INSTRUCTION_ACCESS_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6576@macro@MPU_ACCESS_SHAREABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_SHAREABLE", - "location": { - "column": "10", - "line": "148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_SHAREABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6630@macro@MPU_ACCESS_NOT_SHAREABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_NOT_SHAREABLE", - "location": { - "column": "10", - "line": "149", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_NOT_SHAREABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6802@macro@MPU_ACCESS_CACHEABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_CACHEABLE", - "location": { - "column": "10", - "line": "157", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_CACHEABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@6856@macro@MPU_ACCESS_NOT_CACHEABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_NOT_CACHEABLE", - "location": { - "column": "10", - "line": "158", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_NOT_CACHEABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7030@macro@MPU_ACCESS_BUFFERABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_BUFFERABLE", - "location": { - "column": "10", - "line": "166", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_BUFFERABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7084@macro@MPU_ACCESS_NOT_BUFFERABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_ACCESS_NOT_BUFFERABLE", - "location": { - "column": "10", - "line": "167", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_ACCESS_NOT_BUFFERABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7232@macro@MPU_TEX_LEVEL0", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TEX_LEVEL0", - "location": { - "column": "10", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_TEX_LEVEL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7286@macro@MPU_TEX_LEVEL1", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TEX_LEVEL1", - "location": { - "column": "10", - "line": "176", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_TEX_LEVEL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7340@macro@MPU_TEX_LEVEL2", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TEX_LEVEL2", - "location": { - "column": "10", - "line": "177", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_TEX_LEVEL2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7394@macro@MPU_TEX_LEVEL4", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_TEX_LEVEL4", - "location": { - "column": "10", - "line": "178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_TEX_LEVEL4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7545@macro@MPU_REGION_SIZE_32B", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_32B", - "location": { - "column": "11", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_32B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7599@macro@MPU_REGION_SIZE_64B", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_64B", - "location": { - "column": "11", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_64B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7653@macro@MPU_REGION_SIZE_128B", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_128B", - "location": { - "column": "11", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_128B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7707@macro@MPU_REGION_SIZE_256B", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_256B", - "location": { - "column": "11", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_256B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7761@macro@MPU_REGION_SIZE_512B", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_512B", - "location": { - "column": "11", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_512B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7815@macro@MPU_REGION_SIZE_1KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_1KB", - "location": { - "column": "11", - "line": "191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_1KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7869@macro@MPU_REGION_SIZE_2KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_2KB", - "location": { - "column": "11", - "line": "192", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_2KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7923@macro@MPU_REGION_SIZE_4KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_4KB", - "location": { - "column": "11", - "line": "193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_4KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@7977@macro@MPU_REGION_SIZE_8KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_8KB", - "location": { - "column": "11", - "line": "194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_8KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8031@macro@MPU_REGION_SIZE_16KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_16KB", - "location": { - "column": "11", - "line": "195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_16KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8085@macro@MPU_REGION_SIZE_32KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_32KB", - "location": { - "column": "11", - "line": "196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_32KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8139@macro@MPU_REGION_SIZE_64KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_64KB", - "location": { - "column": "11", - "line": "197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_64KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8193@macro@MPU_REGION_SIZE_128KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_128KB", - "location": { - "column": "11", - "line": "198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_128KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8247@macro@MPU_REGION_SIZE_256KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_256KB", - "location": { - "column": "11", - "line": "199", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_256KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8301@macro@MPU_REGION_SIZE_512KB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_512KB", - "location": { - "column": "11", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_512KB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8355@macro@MPU_REGION_SIZE_1MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_1MB", - "location": { - "column": "11", - "line": "201", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_1MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8409@macro@MPU_REGION_SIZE_2MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_2MB", - "location": { - "column": "11", - "line": "202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_2MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8463@macro@MPU_REGION_SIZE_4MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_4MB", - "location": { - "column": "11", - "line": "203", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_4MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8517@macro@MPU_REGION_SIZE_8MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_8MB", - "location": { - "column": "11", - "line": "204", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_8MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8571@macro@MPU_REGION_SIZE_16MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_16MB", - "location": { - "column": "11", - "line": "205", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_16MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8625@macro@MPU_REGION_SIZE_32MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_32MB", - "location": { - "column": "11", - "line": "206", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_32MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8679@macro@MPU_REGION_SIZE_64MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_64MB", - "location": { - "column": "11", - "line": "207", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_64MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8733@macro@MPU_REGION_SIZE_128MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_128MB", - "location": { - "column": "11", - "line": "208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_128MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8787@macro@MPU_REGION_SIZE_256MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_256MB", - "location": { - "column": "11", - "line": "209", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_256MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8841@macro@MPU_REGION_SIZE_512MB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_512MB", - "location": { - "column": "11", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_512MB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8895@macro@MPU_REGION_SIZE_1GB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_1GB", - "location": { - "column": "11", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_1GB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@8949@macro@MPU_REGION_SIZE_2GB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_2GB", - "location": { - "column": "11", - "line": "212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_2GB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9003@macro@MPU_REGION_SIZE_4GB", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_SIZE_4GB", - "location": { - "column": "11", - "line": "213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_SIZE_4GB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9187@macro@MPU_REGION_NO_ACCESS", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NO_ACCESS", - "location": { - "column": "10", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NO_ACCESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9241@macro@MPU_REGION_PRIV_RW", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_PRIV_RW", - "location": { - "column": "10", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_PRIV_RW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9295@macro@MPU_REGION_PRIV_RW_URO", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_PRIV_RW_URO", - "location": { - "column": "10", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_PRIV_RW_URO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9349@macro@MPU_REGION_FULL_ACCESS", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_FULL_ACCESS", - "location": { - "column": "10", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_FULL_ACCESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9403@macro@MPU_REGION_PRIV_RO", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_PRIV_RO", - "location": { - "column": "10", - "line": "225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_PRIV_RO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9457@macro@MPU_REGION_PRIV_RO_URO", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_PRIV_RO_URO", - "location": { - "column": "10", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_PRIV_RO_URO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9611@macro@MPU_REGION_NUMBER0", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER0", - "location": { - "column": "10", - "line": "234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9665@macro@MPU_REGION_NUMBER1", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER1", - "location": { - "column": "10", - "line": "235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9719@macro@MPU_REGION_NUMBER2", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER2", - "location": { - "column": "10", - "line": "236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9773@macro@MPU_REGION_NUMBER3", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER3", - "location": { - "column": "10", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9827@macro@MPU_REGION_NUMBER4", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER4", - "location": { - "column": "10", - "line": "238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9881@macro@MPU_REGION_NUMBER5", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER5", - "location": { - "column": "10", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9935@macro@MPU_REGION_NUMBER6", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER6", - "location": { - "column": "10", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@9989@macro@MPU_REGION_NUMBER7", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_REGION_NUMBER7", - "location": { - "column": "10", - "line": "241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "MPU_REGION_NUMBER7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", - "location": { - "column": "6", - "line": "270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", - "location": { - "column": "6", - "line": "270", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPriority", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPriority", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "271", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_EnableIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_EnableIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "272", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_DisableIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_DisableIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SystemReset", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SystemReset(void)", - "location": { - "column": "6", - "line": "274", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SystemReset", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SystemReset(void)", - "location": { - "column": "6", - "line": "274", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Config", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", - "location": { - "column": "10", - "line": "275", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_Config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Config", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", - "location": { - "column": "10", - "line": "275", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_Config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", - "location": { - "column": "10", - "line": "286", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", - "location": { - "column": "10", - "line": "286", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPriorityGrouping", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriority", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", - "location": { - "column": "6", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriority", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", - "location": { - "column": "6", - "line": "287", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "288", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "289", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "290", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetActive", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", - "location": { - "column": "10", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetActive", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", - "location": { - "column": "10", - "line": "291", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_NVIC_GetActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", - "location": { - "column": "6", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_CLKSourceConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", - "location": { - "column": "6", - "line": "292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_CLKSourceConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_IRQHandler(void)", - "location": { - "column": "6", - "line": "293", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_IRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_IRQHandler(void)", - "location": { - "column": "6", - "line": "293", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_IRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_Callback(void)", - "location": { - "column": "6", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Callback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_SYSTICK_Callback(void)", - "location": { - "column": "6", - "line": "294", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_SYSTICK_Callback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Enable", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_Enable(uint32_t)", - "location": { - "column": "6", - "line": "297", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_Enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Enable", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_Enable(uint32_t)", - "location": { - "column": "6", - "line": "297", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_Enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Disable", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_Disable(void)", - "location": { - "column": "6", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_Disable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Disable", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_Disable(void)", - "location": { - "column": "6", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_Disable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_ConfigRegion", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", - "location": { - "column": "6", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_ConfigRegion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_ConfigRegion", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", - "location": { - "column": "6", - "line": "299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "HAL_MPU_ConfigRegion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@12372@macro@IS_NVIC_PRIORITY_GROUP", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_NVIC_PRIORITY_GROUP", - "location": { - "column": "9", - "line": "316", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_NVIC_PRIORITY_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@12765@macro@IS_NVIC_PREEMPTION_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_NVIC_PREEMPTION_PRIORITY", - "location": { - "column": "9", - "line": "322", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_NVIC_PREEMPTION_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@12835@macro@IS_NVIC_SUB_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_NVIC_SUB_PRIORITY", - "location": { - "column": "9", - "line": "324", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_NVIC_SUB_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@12905@macro@IS_NVIC_DEVICE_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_NVIC_DEVICE_IRQ", - "location": { - "column": "9", - "line": "326", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_NVIC_DEVICE_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@12971@macro@IS_SYSTICK_CLK_SOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_SYSTICK_CLK_SOURCE", - "location": { - "column": "9", - "line": "328", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_SYSTICK_CLK_SOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13164@macro@IS_MPU_REGION_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_REGION_ENABLE", - "location": { - "column": "9", - "line": "332", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_REGION_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13311@macro@IS_MPU_INSTRUCTION_ACCESS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_INSTRUCTION_ACCESS", - "location": { - "column": "9", - "line": "335", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_INSTRUCTION_ACCESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13492@macro@IS_MPU_ACCESS_SHAREABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_ACCESS_SHAREABLE", - "location": { - "column": "9", - "line": "338", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_ACCESS_SHAREABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13658@macro@IS_MPU_ACCESS_CACHEABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_ACCESS_CACHEABLE", - "location": { - "column": "9", - "line": "341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_ACCESS_CACHEABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13824@macro@IS_MPU_ACCESS_BUFFERABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_ACCESS_BUFFERABLE", - "location": { - "column": "9", - "line": "344", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_ACCESS_BUFFERABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@13993@macro@IS_MPU_TEX_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_TEX_LEVEL", - "location": { - "column": "9", - "line": "347", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_TEX_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@14254@macro@IS_MPU_REGION_PERMISSION_ATTRIBUTE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_REGION_PERMISSION_ATTRIBUTE", - "location": { - "column": "9", - "line": "352", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_REGION_PERMISSION_ATTRIBUTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@14798@macro@IS_MPU_REGION_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_REGION_NUMBER", - "location": { - "column": "9", - "line": "359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_REGION_NUMBER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@15436@macro@IS_MPU_REGION_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_REGION_SIZE", - "location": { - "column": "9", - "line": "368", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_REGION_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.h@17588@macro@IS_MPU_SUB_REGION_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_MPU_SUB_REGION_DISABLE", - "location": { - "column": "9", - "line": "397", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" - }, - "name": "IS_MPU_SUB_REGION_DISABLE", - "origin": "user_include", - "scope": null - }, { "ID": "c:DLib_float_setup.h@130@macro@_DLIB_FLOAT_SETUP", "What": "MacroDef", @@ -320277,6 +311755,3966 @@ "origin": "system_include", "scope": null }, + { + "ID": "c:DLib_Defaults.h@1169@macro@_DLIB_DEFAULTS_H", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_DEFAULTS_H", + "location": { + "column": "9", + "line": "31", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_DEFAULTS_H", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@3448@macro@_DLIB_STDOUT_USES_STATIC_BUFFER", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STDOUT_USES_STATIC_BUFFER", + "location": { + "column": "11", + "line": "100", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_STDOUT_USES_STATIC_BUFFER", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@4649@macro@_DLIB_LOCALE_TABLE_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_LOCALE_TABLE_MEMORY", + "location": { + "column": "11", + "line": "135", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_LOCALE_TABLE_MEMORY", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@6974@macro@_DLIB_PRINTF_MULTIBYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRINTF_MULTIBYTE", + "location": { + "column": "11", + "line": "213", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_PRINTF_MULTIBYTE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@7889@macro@_DLIB_PRINTF_INT_TYPE_IS_INT", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRINTF_INT_TYPE_IS_INT", + "location": { + "column": "11", + "line": "238", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_PRINTF_INT_TYPE_IS_INT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@8492@macro@_DLIB_PRINTF_INT_TYPE_IS_LONG", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRINTF_INT_TYPE_IS_LONG", + "location": { + "column": "11", + "line": "255", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_PRINTF_INT_TYPE_IS_LONG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@9338@macro@_DLIB_PRINTF_CHAR_BY_CHAR", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRINTF_CHAR_BY_CHAR", + "location": { + "column": "11", + "line": "277", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_PRINTF_CHAR_BY_CHAR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@10025@macro@_DLIB_SCANF_MULTIBYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_SCANF_MULTIBYTE", + "location": { + "column": "11", + "line": "301", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_SCANF_MULTIBYTE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@10673@macro@_DLIB_STRFTIME_MULTIBYTE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_STRFTIME_MULTIBYTE", + "location": { + "column": "11", + "line": "321", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_STRFTIME_MULTIBYTE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@11257@macro@_DLIB_QSORT_USE_BUBBLE_SORT", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_QSORT_USE_BUBBLE_SORT", + "location": { + "column": "11", + "line": "340", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_QSORT_USE_BUBBLE_SORT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@11840@macro@_DLIB_RAND_USE_SIMPLE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_RAND_USE_SIMPLE", + "location": { + "column": "11", + "line": "365", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_RAND_USE_SIMPLE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@12026@macro@_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", + "location": { + "column": "11", + "line": "374", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@12745@macro@_DLIB_DATA_ATTR", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_DATA_ATTR", + "location": { + "column": "11", + "line": "390", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_DATA_ATTR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@12836@macro@_DLIB_CONST_ATTR", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_CONST_ATTR", + "location": { + "column": "13", + "line": "395", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_CONST_ATTR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@13453@macro@_DLIB_MBSTATET_USES_UNSIGNED_LONG", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", + "location": { + "column": "15", + "line": "421", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@13636@macro@_DLIB_TIME_USES_LONG", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_TIME_USES_LONG", + "location": { + "column": "15", + "line": "429", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_TIME_USES_LONG", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@14183@macro@_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", + "location": { + "column": "13", + "line": "443", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@14573@macro@_DLIB_ONLY_USE_CXA_FUNCTIONS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ONLY_USE_CXA_FUNCTIONS", + "location": { + "column": "13", + "line": "458", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_ONLY_USE_CXA_FUNCTIONS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@15142@macro@_DLIB_FAST_FMA", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_FAST_FMA", + "location": { + "column": "11", + "line": "485", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_FAST_FMA", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@16042@macro@_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", + "location": { + "column": "13", + "line": "515", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@16406@macro@_DLIB_TIME_ALLOW_64", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_TIME_ALLOW_64", + "location": { + "column": "13", + "line": "537", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_TIME_ALLOW_64", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@16880@macro@_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", + "location": { + "column": "11", + "line": "562", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@17280@macro@__WEAK", + "What": "MacroDef", + "defdec": "Def", + "display": "__WEAK", + "location": { + "column": "11", + "line": "579", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "__WEAK", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Defaults.h@17335@macro@__WEAK_DEFS", + "What": "MacroDef", + "defdec": "Def", + "display": "__WEAK_DEFS", + "location": { + "column": "11", + "line": "580", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" + }, + "name": "__WEAK_DEFS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@801@macro@STM32L4xx_HAL_DAC_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_DAC_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "STM32L4xx_HAL_DAC_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DAC_StateTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_RESET", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DAC_STATE_RESET", + "location": { + "column": "3", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_STATE_RESET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_READY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DAC_STATE_READY", + "location": { + "column": "3", + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_STATE_READY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DAC_STATE_BUSY", + "location": { + "column": "3", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_STATE_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_TIMEOUT", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DAC_STATE_TIMEOUT", + "location": { + "column": "3", + "line": "54", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_STATE_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_DAC_StateTypeDef@HAL_DAC_STATE_ERROR", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_DAC_STATE_ERROR", + "location": { + "column": "3", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_STATE_ERROR", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_DAC_StateTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_DAC_StateTypeDef", + "location": { + "column": "3", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_StateTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@DAC_HandleTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "members": [ + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@Instance", + "What": "FieldDecl", + "defdec": "Def", + "display": "Instance", + "location": { + "column": "32", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "Instance", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + }, + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@State", + "What": "FieldDecl", + "defdec": "Def", + "display": "State", + "location": { + "column": "31", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "State", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + }, + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@Lock", + "What": "FieldDecl", + "defdec": "Def", + "display": "Lock", + "location": { + "column": "31", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "Lock", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + }, + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@DMA_Handle1", + "What": "FieldDecl", + "defdec": "Def", + "display": "DMA_Handle1", + "location": { + "column": "32", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DMA_Handle1", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + }, + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@DMA_Handle2", + "What": "FieldDecl", + "defdec": "Def", + "display": "DMA_Handle2", + "location": { + "column": "32", + "line": "76", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DMA_Handle2", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + }, + { + "ID": "c:@SA@DAC_HandleTypeDef@FI@ErrorCode", + "What": "FieldDecl", + "defdec": "Def", + "display": "ErrorCode", + "location": { + "column": "31", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "ErrorCode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_65_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@DAC_HandleTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct DAC_HandleTypeDef", + "location": { + "column": "3", + "line": "94", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_HandleTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "members": [ + { + "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_SampleTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_SampleTime", + "location": { + "column": "12", + "line": "101", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SampleTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" + }, + { + "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_HoldTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_HoldTime", + "location": { + "column": "12", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_HoldTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" + }, + { + "ID": "c:@SA@DAC_SampleAndHoldConfTypeDef@FI@DAC_RefreshTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_RefreshTime", + "location": { + "column": "12", + "line": "109", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_RefreshTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_99_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@DAC_SampleAndHoldConfTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct DAC_SampleAndHoldConfTypeDef", + "location": { + "column": "3", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SampleAndHoldConfTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "117", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "members": [ + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_SampleAndHold", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_SampleAndHold", + "location": { + "column": "12", + "line": "124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SampleAndHold", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_Trigger", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_Trigger", + "location": { + "column": "12", + "line": "127", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_Trigger", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_OutputBuffer", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_OutputBuffer", + "location": { + "column": "12", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_OutputBuffer", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_ConnectOnChipPeripheral", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_ConnectOnChipPeripheral", + "location": { + "column": "12", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_ConnectOnChipPeripheral", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_UserTrimming", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_UserTrimming", + "location": { + "column": "12", + "line": "136", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_UserTrimming", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_TrimmingValue", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_TrimmingValue", + "location": { + "column": "12", + "line": "140", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TrimmingValue", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + }, + { + "ID": "c:@SA@DAC_ChannelConfTypeDef@FI@DAC_SampleAndHoldConfig", + "What": "FieldDecl", + "defdec": "Def", + "display": "DAC_SampleAndHoldConfig", + "location": { + "column": "33", + "line": "144", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SampleAndHoldConfig", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_dac_h_117_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@DAC_ChannelConfTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct DAC_ChannelConfTypeDef", + "location": { + "column": "3", + "line": "146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_ChannelConfTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@8405@macro@HAL_DAC_ERROR_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_ERROR_NONE", + "location": { + "column": "10", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ERROR_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@8498@macro@HAL_DAC_ERROR_DMAUNDERRUNCH1", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_ERROR_DMAUNDERRUNCH1", + "location": { + "column": "10", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ERROR_DMAUNDERRUNCH1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@8591@macro@HAL_DAC_ERROR_DMAUNDERRUNCH2", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_ERROR_DMAUNDERRUNCH2", + "location": { + "column": "10", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ERROR_DMAUNDERRUNCH2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@8684@macro@HAL_DAC_ERROR_DMA", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_ERROR_DMA", + "location": { + "column": "10", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ERROR_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@8777@macro@HAL_DAC_ERROR_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_ERROR_TIMEOUT", + "location": { + "column": "10", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ERROR_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@9275@macro@DAC_TRIGGER_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_NONE", + "location": { + "column": "9", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@9551@macro@DAC_TRIGGER_T2_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_T2_TRGO", + "location": { + "column": "9", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_T2_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@9707@macro@DAC_TRIGGER_T6_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_T6_TRGO", + "location": { + "column": "9", + "line": "207", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_T6_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@9863@macro@DAC_TRIGGER_T7_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_T7_TRGO", + "location": { + "column": "9", + "line": "208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_T7_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@10019@macro@DAC_TRIGGER_EXT_IT9", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_EXT_IT9", + "location": { + "column": "9", + "line": "209", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_EXT_IT9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@10182@macro@DAC_TRIGGER_SOFTWARE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIGGER_SOFTWARE", + "location": { + "column": "9", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIGGER_SOFTWARE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@16326@macro@DAC_OUTPUTBUFFER_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_OUTPUTBUFFER_ENABLE", + "location": { + "column": "9", + "line": "261", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_OUTPUTBUFFER_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@16382@macro@DAC_OUTPUTBUFFER_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_OUTPUTBUFFER_DISABLE", + "location": { + "column": "9", + "line": "262", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_OUTPUTBUFFER_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@16540@macro@DAC_CHANNEL_1", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_CHANNEL_1", + "location": { + "column": "9", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_CHANNEL_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17118@macro@DAC_CHANNEL_2", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_CHANNEL_2", + "location": { + "column": "9", + "line": "276", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_CHANNEL_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17660@macro@DAC_ALIGN_12B_R", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_ALIGN_12B_R", + "location": { + "column": "9", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_ALIGN_12B_R", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17716@macro@DAC_ALIGN_12B_L", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_ALIGN_12B_L", + "location": { + "column": "9", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_ALIGN_12B_L", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17772@macro@DAC_ALIGN_8B_R", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_ALIGN_8B_R", + "location": { + "column": "9", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_ALIGN_8B_R", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17922@macro@DAC_FLAG_DMAUDR1", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_FLAG_DMAUDR1", + "location": { + "column": "9", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_FLAG_DMAUDR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@17983@macro@DAC_FLAG_DMAUDR2", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_FLAG_DMAUDR2", + "location": { + "column": "9", + "line": "301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_FLAG_DMAUDR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18133@macro@DAC_IT_DMAUDR1", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_IT_DMAUDR1", + "location": { + "column": "9", + "line": "310", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_IT_DMAUDR1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18192@macro@DAC_IT_DMAUDR2", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_IT_DMAUDR2", + "location": { + "column": "9", + "line": "311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_IT_DMAUDR2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18359@macro@DAC_CHIPCONNECT_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_CHIPCONNECT_DISABLE", + "location": { + "column": "9", + "line": "320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_CHIPCONNECT_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18407@macro@DAC_CHIPCONNECT_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_CHIPCONNECT_ENABLE", + "location": { + "column": "9", + "line": "321", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_CHIPCONNECT_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18550@macro@DAC_TRIMMING_FACTORY", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIMMING_FACTORY", + "location": { + "column": "9", + "line": "330", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIMMING_FACTORY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18634@macro@DAC_TRIMMING_USER", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIMMING_USER", + "location": { + "column": "9", + "line": "331", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_TRIMMING_USER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18800@macro@DAC_SAMPLEANDHOLD_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_SAMPLEANDHOLD_DISABLE", + "location": { + "column": "9", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SAMPLEANDHOLD_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@18851@macro@DAC_SAMPLEANDHOLD_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_SAMPLEANDHOLD_ENABLE", + "location": { + "column": "9", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_SAMPLEANDHOLD_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@20599@macro@__HAL_DAC_RESET_HANDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_RESET_HANDLE_STATE", + "location": { + "column": "9", + "line": "380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_RESET_HANDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@20905@macro@__HAL_DAC_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_ENABLE", + "location": { + "column": "9", + "line": "388", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@21209@macro@__HAL_DAC_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_DISABLE", + "location": { + "column": "9", + "line": "396", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@21463@macro@DAC_DHR12R1_ALIGNMENT", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_DHR12R1_ALIGNMENT", + "location": { + "column": "9", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DHR12R1_ALIGNMENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@21658@macro@DAC_DHR12R2_ALIGNMENT", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_DHR12R2_ALIGNMENT", + "location": { + "column": "9", + "line": "409", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DHR12R2_ALIGNMENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@21853@macro@DAC_DHR12RD_ALIGNMENT", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_DHR12RD_ALIGNMENT", + "location": { + "column": "9", + "line": "415", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DHR12RD_ALIGNMENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@22325@macro@__HAL_DAC_ENABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_ENABLE_IT", + "location": { + "column": "9", + "line": "425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_ENABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@22826@macro@__HAL_DAC_DISABLE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_DISABLE_IT", + "location": { + "column": "9", + "line": "435", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_DISABLE_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@23388@macro@__HAL_DAC_GET_IT_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_GET_IT_SOURCE", + "location": { + "column": "9", + "line": "445", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_GET_IT_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@23913@macro@__HAL_DAC_GET_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_GET_FLAG", + "location": { + "column": "9", + "line": "455", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_GET_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@24408@macro@__HAL_DAC_CLEAR_FLAG", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_DAC_CLEAR_FLAG", + "location": { + "column": "9", + "line": "465", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "__HAL_DAC_CLEAR_FLAG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@24678@macro@IS_DAC_OUTPUT_BUFFER_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_OUTPUT_BUFFER_STATE", + "location": { + "column": "9", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "IS_DAC_OUTPUT_BUFFER_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@25371@macro@IS_DAC_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_CHANNEL", + "location": { + "column": "9", + "line": "483", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "IS_DAC_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@26091@macro@IS_DAC_ALIGN", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_ALIGN", + "location": { + "column": "9", + "line": "494", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "IS_DAC_ALIGN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@26280@macro@IS_DAC_DATA", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_DATA", + "location": { + "column": "9", + "line": "498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "IS_DAC_DATA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac.h@26329@macro@IS_DAC_REFRESHTIME", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_REFRESHTIME", + "location": { + "column": "9", + "line": "500", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "IS_DAC_REFRESHTIME", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "519", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "519", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "521", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_MspDeInit(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "522", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "533", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef *, uint32_t, uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "534", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef *, uint32_t, uint32_t *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "534", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "536", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_IRQHandler(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "538", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_IRQHandler(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "538", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_SetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_SetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_SetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "540", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_SetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConvCpltCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConvCpltCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConvCpltCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "542", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConvCpltCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConvHalfCpltCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "543", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConvHalfCpltCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConvHalfCpltCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "543", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConvHalfCpltCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ErrorCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "544", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ErrorCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ErrorCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "544", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ErrorCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_DMAUnderrunCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_DMAUnderrunCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_DMAUnderrunCallbackCh1", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "545", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_DMAUnderrunCallbackCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "562", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "562", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "564", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_ConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "564", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_ConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef *)", + "location": { + "column": "22", + "line": "573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef *)", + "location": { + "column": "22", + "line": "573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *)", + "location": { + "column": "10", + "line": "574", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DAC_GetError", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *)", + "location": { + "column": "10", + "line": "574", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "HAL_DAC_GetError", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAConvCpltCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAConvCpltCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAConvCpltCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAConvCpltCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAConvCpltCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "587", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAConvCpltCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAErrorCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAErrorCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "588", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAErrorCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAErrorCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAErrorCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "588", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAErrorCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAHalfConvCpltCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "589", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAHalfConvCpltCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAHalfConvCpltCh1", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "589", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac.h" + }, + "name": "DAC_DMAHalfConvCpltCh1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@816@macro@STM32L4xx_HAL_TIM_EX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_TIM_EX_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "STM32L4xx_HAL_TIM_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIM_HallSensor_InitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "members": [ + { + "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Polarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Polarity", + "location": { + "column": "12", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IC1Polarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + }, + { + "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Prescaler", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Prescaler", + "location": { + "column": "12", + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IC1Prescaler", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + }, + { + "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@IC1Filter", + "What": "FieldDecl", + "defdec": "Def", + "display": "IC1Filter", + "location": { + "column": "12", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IC1Filter", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + }, + { + "ID": "c:@SA@TIM_HallSensor_InitTypeDef@FI@Commutation_Delay", + "What": "FieldDecl", + "defdec": "Def", + "display": "Commutation_Delay", + "location": { + "column": "12", + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "Commutation_Delay", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_47_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIM_HallSensor_InitTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIM_HallSensor_InitTypeDef", + "location": { + "column": "3", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_HallSensor_InitTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "members": [ + { + "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Source", + "What": "FieldDecl", + "defdec": "Def", + "display": "Source", + "location": { + "column": "12", + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "Source", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + }, + { + "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Enable", + "What": "FieldDecl", + "defdec": "Def", + "display": "Enable", + "location": { + "column": "12", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "Enable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + }, + { + "ID": "c:@SA@TIMEx_BreakInputConfigTypeDef@FI@Polarity", + "What": "FieldDecl", + "defdec": "Def", + "display": "Polarity", + "location": { + "column": "12", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "Polarity", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_tim_ex_h_65_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@TIMEx_BreakInputConfigTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct TIMEx_BreakInputConfigTypeDef", + "location": { + "column": "3", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIMEx_BreakInputConfigTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@3325@macro@TIM_TIM1_ETR_ADC1_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_ADC1_NONE", + "location": { + "column": "9", + "line": "89", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_ADC1_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@3479@macro@TIM_TIM1_ETR_ADC1_AWD1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_ADC1_AWD1", + "location": { + "column": "9", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_ADC1_AWD1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@3614@macro@TIM_TIM1_ETR_ADC1_AWD2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_ADC1_AWD2", + "location": { + "column": "9", + "line": "91", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_ADC1_AWD2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@3749@macro@TIM_TIM1_ETR_ADC1_AWD3", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_ADC1_AWD3", + "location": { + "column": "9", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_ADC1_AWD3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@4482@macro@TIM_TIM1_TI1_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_TI1_GPIO", + "location": { + "column": "9", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_TI1_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@4612@macro@TIM_TIM1_TI1_COMP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_TI1_COMP1", + "location": { + "column": "9", + "line": "100", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_TI1_COMP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@4743@macro@TIM_TIM1_ETR_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_GPIO", + "location": { + "column": "9", + "line": "101", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@4873@macro@TIM_TIM1_ETR_COMP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_COMP1", + "location": { + "column": "9", + "line": "102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_COMP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@5031@macro@TIM_TIM1_ETR_COMP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM1_ETR_COMP2", + "location": { + "column": "9", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM1_ETR_COMP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@5799@macro@TIM_TIM2_ITR1_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ITR1_NONE", + "location": { + "column": "9", + "line": "115", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ITR1_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@5932@macro@TIM_TIM2_ITR1_USB_SOF", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ITR1_USB_SOF", + "location": { + "column": "9", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ITR1_USB_SOF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6117@macro@TIM_TIM2_ETR_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ETR_GPIO", + "location": { + "column": "9", + "line": "119", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ETR_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6247@macro@TIM_TIM2_ETR_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ETR_LSE", + "location": { + "column": "9", + "line": "120", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ETR_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6376@macro@TIM_TIM2_ETR_COMP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ETR_COMP1", + "location": { + "column": "9", + "line": "121", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ETR_COMP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6534@macro@TIM_TIM2_ETR_COMP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_ETR_COMP2", + "location": { + "column": "9", + "line": "123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_ETR_COMP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6692@macro@TIM_TIM2_TI4_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_TI4_GPIO", + "location": { + "column": "9", + "line": "125", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_TI4_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6822@macro@TIM_TIM2_TI4_COMP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_TI4_COMP1", + "location": { + "column": "9", + "line": "126", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_TI4_COMP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@6980@macro@TIM_TIM2_TI4_COMP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_TI4_COMP2", + "location": { + "column": "9", + "line": "128", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_TI4_COMP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@7118@macro@TIM_TIM2_TI4_COMP1_COMP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM2_TI4_COMP1_COMP2", + "location": { + "column": "9", + "line": "129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM2_TI4_COMP1_COMP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@10082@macro@TIM_TIM15_TI1_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM15_TI1_GPIO", + "location": { + "column": "9", + "line": "160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM15_TI1_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@10213@macro@TIM_TIM15_TI1_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM15_TI1_LSE", + "location": { + "column": "9", + "line": "161", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM15_TI1_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@10343@macro@TIM_TIM15_ENCODERMODE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM15_ENCODERMODE_NONE", + "location": { + "column": "9", + "line": "162", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM15_ENCODERMODE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@10458@macro@TIM_TIM15_ENCODERMODE_TIM2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM15_ENCODERMODE_TIM2", + "location": { + "column": "9", + "line": "163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM15_ENCODERMODE_TIM2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11066@macro@TIM_TIM16_TI1_GPIO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_GPIO", + "location": { + "column": "9", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_GPIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11197@macro@TIM_TIM16_TI1_LSI", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_LSI", + "location": { + "column": "9", + "line": "172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_LSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11327@macro@TIM_TIM16_TI1_LSE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_LSE", + "location": { + "column": "9", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_LSE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11457@macro@TIM_TIM16_TI1_RTC", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_RTC", + "location": { + "column": "9", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_RTC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11639@macro@TIM_TIM16_TI1_MSI", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_MSI", + "location": { + "column": "9", + "line": "176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_MSI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11769@macro@TIM_TIM16_TI1_HSE_32", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_HSE_32", + "location": { + "column": "9", + "line": "177", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_HSE_32", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@11906@macro@TIM_TIM16_TI1_MCO", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_TIM16_TI1_MCO", + "location": { + "column": "9", + "line": "178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_TIM16_TI1_MCO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@12734@macro@TIM_BREAKINPUT_BRK", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUT_BRK", + "location": { + "column": "9", + "line": "194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUT_BRK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@12842@macro@TIM_BREAKINPUT_BRK2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUT_BRK2", + "location": { + "column": "9", + "line": "195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUT_BRK2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@13057@macro@TIM_BREAKINPUTSOURCE_BKIN", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_BKIN", + "location": { + "column": "9", + "line": "203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_BKIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@13203@macro@TIM_BREAKINPUTSOURCE_COMP1", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_COMP1", + "location": { + "column": "9", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_COMP1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@13342@macro@TIM_BREAKINPUTSOURCE_COMP2", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_COMP2", + "location": { + "column": "9", + "line": "205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_COMP2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@13839@macro@TIM_BREAKINPUTSOURCE_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_DISABLE", + "location": { + "column": "9", + "line": "216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@13959@macro@TIM_BREAKINPUTSOURCE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_ENABLE", + "location": { + "column": "9", + "line": "217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@14196@macro@TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "location": { + "column": "9", + "line": "225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_POLARITY_LOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@14318@macro@TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "What": "MacroDef", + "defdec": "Def", + "display": "TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "location": { + "column": "9", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIM_BREAKINPUTSOURCE_POLARITY_HIGH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@14992@macro@IS_TIM_REMAP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_REMAP", + "location": { + "column": "9", + "line": "250", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IS_TIM_REMAP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@15070@macro@IS_TIM_BREAKINPUT", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAKINPUT", + "location": { + "column": "9", + "line": "252", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IS_TIM_BREAKINPUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@15675@macro@IS_TIM_BREAKINPUTSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAKINPUTSOURCE", + "location": { + "column": "9", + "line": "261", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IS_TIM_BREAKINPUTSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@15994@macro@IS_TIM_BREAKINPUTSOURCE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAKINPUTSOURCE_STATE", + "location": { + "column": "9", + "line": "266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IS_TIM_BREAKINPUTSOURCE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_tim_ex.h@16198@macro@IS_TIM_BREAKINPUTSOURCE_POLARITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_TIM_BREAKINPUTSOURCE_POLARITY", + "location": { + "column": "9", + "line": "269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "IS_TIM_BREAKINPUTSOURCE_POLARITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *, const TIM_HallSensor_InitTypeDef *)", + "location": { + "column": "19", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *, const TIM_HallSensor_InitTypeDef *)", + "location": { + "column": "19", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_DeInit", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_DeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_MspInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_MspInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_MspDeInit", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_MspDeInit", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "297", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "297", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *, uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "300", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *)", + "location": { + "column": "19", + "line": "301", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "312", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "320", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OCN_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OCN_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "333", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Start_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *, uint32_t, const uint32_t *, uint16_t)", + "location": { + "column": "19", + "line": "340", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Start_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "342", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_PWMN_Stop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "342", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_PWMN_Stop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Stop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Start_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Start_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_OnePulseN_Stop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "358", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_OnePulseN_Stop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "372", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigCommutEvent_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "372", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigCommutEvent_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_MasterConfigSynchronization", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *, const TIM_MasterConfigTypeDef *)", + "location": { + "column": "19", + "line": "374", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_MasterConfigSynchronization", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_MasterConfigSynchronization", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *, const TIM_MasterConfigTypeDef *)", + "location": { + "column": "19", + "line": "374", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_MasterConfigSynchronization", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigBreakDeadTime", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *, const TIM_BreakDeadTimeConfigTypeDef *)", + "location": { + "column": "19", + "line": "376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigBreakDeadTime", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigBreakDeadTime", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *, const TIM_BreakDeadTimeConfigTypeDef *)", + "location": { + "column": "19", + "line": "376", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigBreakDeadTime", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigBreakInput", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakInput(TIM_HandleTypeDef *, uint32_t, const TIMEx_BreakInputConfigTypeDef *)", + "location": { + "column": "19", + "line": "378", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigBreakInput", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_ConfigBreakInput", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_ConfigBreakInput(TIM_HandleTypeDef *, uint32_t, const TIMEx_BreakInputConfigTypeDef *)", + "location": { + "column": "19", + "line": "378", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_ConfigBreakInput", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_GroupChannel5", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_GroupChannel5(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_GroupChannel5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_GroupChannel5", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_GroupChannel5(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "380", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_GroupChannel5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_RemapConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "381", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_RemapConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_RemapConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "381", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_RemapConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_CommutCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_CommutCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_CommutCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_CommutCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_CommutHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "392", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_CommutHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_CommutHalfCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "392", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_CommutHalfCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_BreakCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_BreakCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_BreakCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_BreakCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_Break2Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_Break2Callback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "394", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_Break2Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_Break2Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_TIMEx_Break2Callback(TIM_HandleTypeDef *)", + "location": { + "column": "6", + "line": "394", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_Break2Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "404", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_HallSensor_GetState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *)", + "location": { + "column": "22", + "line": "404", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_HallSensor_GetState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_GetChannelNState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "29", + "line": "405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_GetChannelNState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_TIMEx_GetChannelNState", + "What": "Function", + "defdec": "Dec", + "display": "HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *, uint32_t)", + "location": { + "column": "29", + "line": "405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "HAL_TIMEx_GetChannelNState", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIMEx_DMACommutationCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIMEx_DMACommutationCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIMEx_DMACommutationCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "419", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIMEx_DMACommutationCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIMEx_DMACommutationHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIMEx_DMACommutationHalfCplt", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@TIMEx_DMACommutationHalfCplt", + "What": "Function", + "defdec": "Dec", + "display": "void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "420", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_tim_ex.h" + }, + "name": "TIMEx_DMACommutationHalfCplt", + "origin": "user_include", + "scope": null + }, { "ID": "c:@huart1", "What": "Variable", @@ -320753,2474 +316191,6 @@ "origin": "project_file", "scope": null }, - { - "ID": "c:stm32l4xx.h@1412@macro@__STM32L4xx_H", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4xx_H", - "location": { - "column": "9", - "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4xx_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@1623@macro@STM32L4", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4", - "location": { - "column": "9", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "STM32L4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@4436@macro@__STM32L4_CMSIS_VERSION_MAIN", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4_CMSIS_VERSION_MAIN", - "location": { - "column": "9", - "line": "107", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4_CMSIS_VERSION_MAIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@4512@macro@__STM32L4_CMSIS_VERSION_SUB1", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4_CMSIS_VERSION_SUB1", - "location": { - "column": "9", - "line": "108", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4_CMSIS_VERSION_SUB1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@4588@macro@__STM32L4_CMSIS_VERSION_SUB2", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4_CMSIS_VERSION_SUB2", - "location": { - "column": "9", - "line": "109", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4_CMSIS_VERSION_SUB2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@4664@macro@__STM32L4_CMSIS_VERSION_RC", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4_CMSIS_VERSION_RC", - "location": { - "column": "9", - "line": "110", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4_CMSIS_VERSION_RC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@4744@macro@__STM32L4_CMSIS_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "__STM32L4_CMSIS_VERSION", - "location": { - "column": "9", - "line": "111", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "__STM32L4_CMSIS_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FlagStatus", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FlagStatus@RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "RESET", - "location": { - "column": "3", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FlagStatus@SET", - "What": "Enumerator", - "defdec": "Def", - "display": "SET", - "location": { - "column": "3", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "SET", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FlagStatus", - "What": "Typedef", - "defdec": "Def", - "display": "enum FlagStatus", - "location": { - "column": "3", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "FlagStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@T@ITStatus", - "What": "Typedef", - "defdec": "Def", - "display": "enum FlagStatus", - "location": { - "column": "15", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ITStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FunctionalState", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FunctionalState@DISABLE", - "What": "Enumerator", - "defdec": "Def", - "display": "DISABLE", - "location": { - "column": "3", - "line": "193", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FunctionalState@ENABLE", - "What": "Enumerator", - "defdec": "Def", - "display": "ENABLE", - "location": { - "column": "3", - "line": "194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ENABLE", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "191", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FunctionalState", - "What": "Typedef", - "defdec": "Def", - "display": "enum FunctionalState", - "location": { - "column": "3", - "line": "195", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "FunctionalState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@6860@macro@IS_FUNCTIONAL_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_FUNCTIONAL_STATE", - "location": { - "column": "9", - "line": "196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "IS_FUNCTIONAL_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@ErrorStatus", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@ErrorStatus@SUCCESS", - "What": "Enumerator", - "defdec": "Def", - "display": "SUCCESS", - "location": { - "column": "3", - "line": "200", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "SUCCESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@ErrorStatus@ERROR", - "What": "Enumerator", - "defdec": "Def", - "display": "ERROR", - "location": { - "column": "3", - "line": "201", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ERROR", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ErrorStatus", - "What": "Typedef", - "defdec": "Def", - "display": "enum ErrorStatus", - "location": { - "column": "3", - "line": "202", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ErrorStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7085@macro@SET_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "SET_BIT", - "location": { - "column": "9", - "line": "212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "SET_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7135@macro@CLEAR_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "CLEAR_BIT", - "location": { - "column": "9", - "line": "214", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "CLEAR_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7186@macro@READ_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "READ_BIT", - "location": { - "column": "9", - "line": "216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "READ_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7235@macro@CLEAR_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "CLEAR_REG", - "location": { - "column": "9", - "line": "218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "CLEAR_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7284@macro@WRITE_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "WRITE_REG", - "location": { - "column": "9", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "WRITE_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7333@macro@READ_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "READ_REG", - "location": { - "column": "9", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "READ_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7374@macro@MODIFY_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "MODIFY_REG", - "location": { - "column": "9", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "MODIFY_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@7629@macro@ATOMIC_SET_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_SET_BIT", - "location": { - "column": "9", - "line": "228", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_SET_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@8101@macro@ATOMIC_CLEAR_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_CLEAR_BIT", - "location": { - "column": "9", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_CLEAR_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@8581@macro@ATOMIC_MODIFY_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_MODIFY_REG", - "location": { - "column": "9", - "line": "246", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_MODIFY_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@9135@macro@ATOMIC_SETH_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_SETH_BIT", - "location": { - "column": "9", - "line": "255", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_SETH_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@9607@macro@ATOMIC_CLEARH_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_CLEARH_BIT", - "location": { - "column": "9", - "line": "264", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_CLEARH_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@10087@macro@ATOMIC_MODIFYH_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "ATOMIC_MODIFYH_REG", - "location": { - "column": "9", - "line": "273", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "ATOMIC_MODIFYH_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx.h@10571@macro@POSITION_VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "POSITION_VAL", - "location": { - "column": "9", - "line": "281", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\stm32l4xx.h" - }, - "name": "POSITION_VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@36@macro@_FRT_PROTOCOL_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FRT_PROTOCOL_H_", - "location": { - "column": "10", - "line": "2", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "_FRT_PROTOCOL_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_mcs_para", - "What": "Struct", - "defdec": "Def", - "display": "_mcs_para", - "location": { - "column": "16", - "line": "14", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "members": [ - { - "ID": "c:@S@_mcs_para@FI@current", - "What": "FieldDecl", - "defdec": "Def", - "display": "current", - "location": { - "column": "13", - "line": "15", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "current", - "origin": "user_include", - "scope": "_mcs_para" - }, - { - "ID": "c:@S@_mcs_para@FI@max_current", - "What": "FieldDecl", - "defdec": "Def", - "display": "max_current", - "location": { - "column": "13", - "line": "16", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "max_current", - "origin": "user_include", - "scope": "_mcs_para" - }, - { - "ID": "c:@S@_mcs_para@FI@pulse_count", - "What": "FieldDecl", - "defdec": "Def", - "display": "pulse_count", - "location": { - "column": "13", - "line": "17", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "pulse_count", - "origin": "user_include", - "scope": "_mcs_para" - }, - { - "ID": "c:@S@_mcs_para@FI@bat_v", - "What": "FieldDecl", - "defdec": "Def", - "display": "bat_v", - "location": { - "column": "13", - "line": "18", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "bat_v", - "origin": "user_include", - "scope": "_mcs_para" - }, - { - "ID": "c:@S@_mcs_para@FI@bat_charge", - "What": "FieldDecl", - "defdec": "Def", - "display": "bat_charge", - "location": { - "column": "11", - "line": "19", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "bat_charge", - "origin": "user_include", - "scope": "_mcs_para" - }, - { - "ID": "c:frt_protocol.h@T@mcs_para", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct _mcs_para", - "location": { - "column": "2", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "mcs_para", - "origin": "user_include", - "scope": "_mcs_para" - } - ], - "name": "_mcs_para", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgFunctionCode_e", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FRT_MsgFunctionCode_e@FRT_FUNCTION_CODE_READ_REGISTER", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_FUNCTION_CODE_READ_REGISTER", - "location": { - "column": "4", - "line": "25", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_FUNCTION_CODE_READ_REGISTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgFunctionCode_e@FRT_FUNCTION_CODE_WRITE_REGISTER", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_FUNCTION_CODE_WRITE_REGISTER", - "location": { - "column": "4", - "line": "26", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_FUNCTION_CODE_WRITE_REGISTER", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "23", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FRT_MsgFunctionCode_e", - "What": "Typedef", - "defdec": "Def", - "display": "enum FRT_MsgFunctionCode_e", - "location": { - "column": "3", - "line": "27", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_MsgFunctionCode_e", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CURRENT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_CURRENT", - "location": { - "column": "4", - "line": "32", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_CURRENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_MAX_CURRENT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_MAX_CURRENT", - "location": { - "column": "4", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_MAX_CURRENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_PULSE_COUNT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_PULSE_COUNT", - "location": { - "column": "4", - "line": "34", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_PULSE_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_BAT_V", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_BAT_V", - "location": { - "column": "4", - "line": "35", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_BAT_V", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_BAT_CHARGE", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_BAT_CHARGE", - "location": { - "column": "4", - "line": "36", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_BAT_CHARGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_MAC_INFO", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_MAC_INFO", - "location": { - "column": "4", - "line": "37", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_MAC_INFO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_DEVICE_ADDR", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_DEVICE_ADDR", - "location": { - "column": "4", - "line": "39", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_DEVICE_ADDR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_NET_ID", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_NET_ID", - "location": { - "column": "4", - "line": "40", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_NET_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CLEAR_MAX_CURRENT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_CLEAR_MAX_CURRENT", - "location": { - "column": "4", - "line": "41", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_CLEAR_MAX_CURRENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_CLEAR_PULSE_COUNT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_CLEAR_PULSE_COUNT", - "location": { - "column": "4", - "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_CLEAR_PULSE_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FRT_MsgRegister@FRT_REGISTER_REBOOT", - "What": "Enumerator", - "defdec": "Def", - "display": "FRT_REGISTER_REBOOT", - "location": { - "column": "4", - "line": "43", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_REGISTER_REBOOT", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "30", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@1509@macro@FRT_CLIMATE_PACK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "FRT_CLIMATE_PACK_SIZE", - "location": { - "column": "9", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_CLIMATE_PACK_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@1572@macro@FRT_CLIMATE_PACK_CRC16", - "What": "MacroDef", - "defdec": "Def", - "display": "FRT_CLIMATE_PACK_CRC16", - "location": { - "column": "9", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_CLIMATE_PACK_CRC16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@1652@macro@FRT_CLIMATE_BUFF_CRC16", - "What": "MacroDef", - "defdec": "Def", - "display": "FRT_CLIMATE_BUFF_CRC16", - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_CLIMATE_BUFF_CRC16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@T@MsgProcFunc", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(device_handle, void *)", - "location": { - "column": "16", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "MsgProcFunc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_FRT_FunctionMsgProcTable_s", - "What": "Struct", - "defdec": "Def", - "display": "_FRT_FunctionMsgProcTable_s", - "location": { - "column": "16", - "line": "54", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "members": [ - { - "ID": "c:@S@_FRT_FunctionMsgProcTable_s@FI@msgId", - "What": "FieldDecl", - "defdec": "Def", - "display": "msgId", - "location": { - "column": "18", - "line": "55", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "msgId", - "origin": "user_include", - "scope": "_FRT_FunctionMsgProcTable_s" - }, - { - "ID": "c:@S@_FRT_FunctionMsgProcTable_s@FI@pMsgProc", - "What": "FieldDecl", - "defdec": "Def", - "display": "pMsgProc", - "location": { - "column": "17", - "line": "56", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "pMsgProc", - "origin": "user_include", - "scope": "_FRT_FunctionMsgProcTable_s" - } - ], - "name": "_FRT_FunctionMsgProcTable_s", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@T@FRT_FuncionMsgProcTable_s", - "What": "Typedef", - "defdec": "Def", - "display": "struct _FRT_FunctionMsgProcTable_s", - "location": { - "column": "3", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_FuncionMsgProcTable_s", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@T@RegProcFunc", - "What": "Typedef", - "defdec": "Def", - "display": "u_int16_t (*)(void *)", - "location": { - "column": "21", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "RegProcFunc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_FRT_RegProcTable_s", - "What": "Struct", - "defdec": "Def", - "display": "_FRT_RegProcTable_s", - "location": { - "column": "16", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "members": [ - { - "ID": "c:@S@_FRT_RegProcTable_s@FI@regId", - "What": "FieldDecl", - "defdec": "Def", - "display": "regId", - "location": { - "column": "18", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "regId", - "origin": "user_include", - "scope": "_FRT_RegProcTable_s" - }, - { - "ID": "c:@S@_FRT_RegProcTable_s@FI@pRegProc", - "What": "FieldDecl", - "defdec": "Def", - "display": "pRegProc", - "location": { - "column": "17", - "line": "63", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "pRegProc", - "origin": "user_include", - "scope": "_FRT_RegProcTable_s" - } - ], - "name": "_FRT_RegProcTable_s", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:frt_protocol.h@T@FRT_RegProcTable_s", - "What": "Typedef", - "defdec": "Def", - "display": "struct _FRT_RegProcTable_s", - "location": { - "column": "3", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "FRT_RegProcTable_s", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_frt_climate_pack_resp", - "What": "Struct", - "defdec": "Def", - "display": "_frt_climate_pack_resp", - "location": { - "column": "17", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "members": [ - { - "ID": "c:@S@_frt_climate_pack_resp@FI@up_addr_h", - "What": "FieldDecl", - "defdec": "Def", - "display": "up_addr_h", - "location": { - "column": "19", - "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "up_addr_h", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@up_addr_l", - "What": "FieldDecl", - "defdec": "Def", - "display": "up_addr_l", - "location": { - "column": "19", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "up_addr_l", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@chanel", - "What": "FieldDecl", - "defdec": "Def", - "display": "chanel", - "location": { - "column": "19", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "chanel", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@addr", - "What": "FieldDecl", - "defdec": "Def", - "display": "addr", - "location": { - "column": "19", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "addr", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@func", - "What": "FieldDecl", - "defdec": "Def", - "display": "func", - "location": { - "column": "16", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "func", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@data_len", - "What": "FieldDecl", - "defdec": "Def", - "display": "data_len", - "location": { - "column": "16", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "data_len", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:@S@_frt_climate_pack_resp@FI@data", - "What": "FieldDecl", - "defdec": "Def", - "display": "data", - "location": { - "column": "19", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "data", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - }, - { - "ID": "c:frt_protocol.h@T@frt_climate_pack_resp", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct _frt_climate_pack_resp", - "location": { - "column": "2", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "frt_climate_pack_resp", - "origin": "user_include", - "scope": "_frt_climate_pack_resp" - } - ], - "name": "_frt_climate_pack_resp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@g_stMcs_Para", - "What": "Variable", - "defdec": "Dec", - "display": "g_stMcs_Para", - "location": { - "column": "17", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "g_stMcs_Para", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@g_stMcs_Para", - "What": "Variable", - "defdec": "Dec", - "display": "g_stMcs_Para", - "location": { - "column": "17", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "g_stMcs_Para", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@read_and_process_uart_data", - "What": "Function", - "defdec": "Dec", - "display": "void read_and_process_uart_data(device_handle)", - "location": { - "column": "6", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "read_and_process_uart_data", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@read_and_process_uart_data", - "What": "Function", - "defdec": "Dec", - "display": "void read_and_process_uart_data(device_handle)", - "location": { - "column": "6", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\frt_protocol.h" - }, - "name": "read_and_process_uart_data", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@1169@macro@_DLIB_DEFAULTS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DEFAULTS_H", - "location": { - "column": "9", - "line": "31", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DEFAULTS_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@3448@macro@_DLIB_STDOUT_USES_STATIC_BUFFER", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STDOUT_USES_STATIC_BUFFER", - "location": { - "column": "11", - "line": "100", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_STDOUT_USES_STATIC_BUFFER", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@4649@macro@_DLIB_LOCALE_TABLE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_LOCALE_TABLE_MEMORY", - "location": { - "column": "11", - "line": "135", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_LOCALE_TABLE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@6974@macro@_DLIB_PRINTF_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_MULTIBYTE", - "location": { - "column": "11", - "line": "213", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@7889@macro@_DLIB_PRINTF_INT_TYPE_IS_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_INT_TYPE_IS_INT", - "location": { - "column": "11", - "line": "238", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_INT_TYPE_IS_INT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@8492@macro@_DLIB_PRINTF_INT_TYPE_IS_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_INT_TYPE_IS_LONG", - "location": { - "column": "11", - "line": "255", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_INT_TYPE_IS_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@9338@macro@_DLIB_PRINTF_CHAR_BY_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_CHAR_BY_CHAR", - "location": { - "column": "11", - "line": "277", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_CHAR_BY_CHAR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@10025@macro@_DLIB_SCANF_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SCANF_MULTIBYTE", - "location": { - "column": "11", - "line": "301", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_SCANF_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@10673@macro@_DLIB_STRFTIME_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRFTIME_MULTIBYTE", - "location": { - "column": "11", - "line": "321", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_STRFTIME_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@11257@macro@_DLIB_QSORT_USE_BUBBLE_SORT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_QSORT_USE_BUBBLE_SORT", - "location": { - "column": "11", - "line": "340", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_QSORT_USE_BUBBLE_SORT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@11840@macro@_DLIB_RAND_USE_SIMPLE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_RAND_USE_SIMPLE", - "location": { - "column": "11", - "line": "365", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_RAND_USE_SIMPLE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12026@macro@_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "location": { - "column": "11", - "line": "374", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12745@macro@_DLIB_DATA_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DATA_ATTR", - "location": { - "column": "11", - "line": "390", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DATA_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12836@macro@_DLIB_CONST_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_CONST_ATTR", - "location": { - "column": "13", - "line": "395", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_CONST_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@13453@macro@_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "location": { - "column": "15", - "line": "421", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@13636@macro@_DLIB_TIME_USES_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_USES_LONG", - "location": { - "column": "15", - "line": "429", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_TIME_USES_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@14183@macro@_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "location": { - "column": "13", - "line": "443", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@14573@macro@_DLIB_ONLY_USE_CXA_FUNCTIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ONLY_USE_CXA_FUNCTIONS", - "location": { - "column": "13", - "line": "458", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_ONLY_USE_CXA_FUNCTIONS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@15142@macro@_DLIB_FAST_FMA", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FAST_FMA", - "location": { - "column": "11", - "line": "485", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_FAST_FMA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16042@macro@_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "location": { - "column": "13", - "line": "515", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16406@macro@_DLIB_TIME_ALLOW_64", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_ALLOW_64", - "location": { - "column": "13", - "line": "537", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_TIME_ALLOW_64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16880@macro@_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "location": { - "column": "11", - "line": "562", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@17280@macro@__WEAK", - "What": "MacroDef", - "defdec": "Def", - "display": "__WEAK", - "location": { - "column": "11", - "line": "579", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "__WEAK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@17335@macro@__WEAK_DEFS", - "What": "MacroDef", - "defdec": "Def", - "display": "__WEAK_DEFS", - "location": { - "column": "11", - "line": "580", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "__WEAK_DEFS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@981@macro@STM32L4xx_HAL_CONF_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_CONF_H", - "location": { - "column": "9", - "line": "25", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "STM32L4xx_HAL_CONF_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@1386@macro@HAL_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_MODULE_ENABLED", - "location": { - "column": "9", - "line": "38", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@1414@macro@HAL_ADC_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_ADC_MODULE_ENABLED", - "location": { - "column": "9", - "line": "39", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_ADC_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@1644@macro@HAL_DAC_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DAC_MODULE_ENABLED", - "location": { - "column": "9", - "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_DAC_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@2999@macro@HAL_TIM_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_TIM_MODULE_ENABLED", - "location": { - "column": "9", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_TIM_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3070@macro@HAL_UART_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_UART_MODULE_ENABLED", - "location": { - "column": "9", - "line": "81", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_UART_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3264@macro@HAL_GPIO_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_GPIO_MODULE_ENABLED", - "location": { - "column": "9", - "line": "86", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_GPIO_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3297@macro@HAL_EXTI_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_EXTI_MODULE_ENABLED", - "location": { - "column": "9", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_EXTI_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3330@macro@HAL_I2C_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_I2C_MODULE_ENABLED", - "location": { - "column": "9", - "line": "88", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_I2C_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3362@macro@HAL_DMA_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_DMA_MODULE_ENABLED", - "location": { - "column": "9", - "line": "89", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_DMA_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3394@macro@HAL_RCC_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_RCC_MODULE_ENABLED", - "location": { - "column": "9", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_RCC_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3426@macro@HAL_FLASH_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_FLASH_MODULE_ENABLED", - "location": { - "column": "9", - "line": "91", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_FLASH_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3460@macro@HAL_PWR_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_PWR_MODULE_ENABLED", - "location": { - "column": "9", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_PWR_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3492@macro@HAL_CORTEX_MODULE_ENABLED", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_CORTEX_MODULE_ENABLED", - "location": { - "column": "9", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HAL_CORTEX_MODULE_ENABLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@3916@macro@HSE_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "HSE_VALUE", - "location": { - "column": "11", - "line": "102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HSE_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@4071@macro@HSE_STARTUP_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "HSE_STARTUP_TIMEOUT", - "location": { - "column": "11", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HSE_STARTUP_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@4374@macro@MSI_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "MSI_VALUE", - "location": { - "column": "11", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "MSI_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@4752@macro@HSI_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "HSI_VALUE", - "location": { - "column": "11", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HSI_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@5336@macro@HSI48_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "HSI48_VALUE", - "location": { - "column": "10", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "HSI48_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@5699@macro@LSI_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "LSI_VALUE", - "location": { - "column": "10", - "line": "141", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "LSI_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@6224@macro@LSE_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "LSE_VALUE", - "location": { - "column": "11", - "line": "151", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "LSE_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@6364@macro@LSE_STARTUP_TIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "LSE_STARTUP_TIMEOUT", - "location": { - "column": "11", - "line": "155", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "LSE_STARTUP_TIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@6707@macro@EXTERNAL_SAI1_CLOCK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTERNAL_SAI1_CLOCK_VALUE", - "location": { - "column": "11", - "line": "164", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "EXTERNAL_SAI1_CLOCK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7075@macro@EXTERNAL_SAI2_CLOCK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "EXTERNAL_SAI2_CLOCK_VALUE", - "location": { - "column": "11", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "EXTERNAL_SAI2_CLOCK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7531@macro@VDD_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "VDD_VALUE", - "location": { - "column": "10", - "line": "184", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "VDD_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7590@macro@TICK_INT_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "TICK_INT_PRIORITY", - "location": { - "column": "10", - "line": "185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "TICK_INT_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7668@macro@USE_RTOS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_RTOS", - "location": { - "column": "10", - "line": "186", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_RTOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7710@macro@PREFETCH_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "PREFETCH_ENABLE", - "location": { - "column": "10", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "PREFETCH_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7752@macro@INSTRUCTION_CACHE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "INSTRUCTION_CACHE_ENABLE", - "location": { - "column": "10", - "line": "188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "INSTRUCTION_CACHE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@7794@macro@DATA_CACHE_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DATA_CACHE_ENABLE", - "location": { - "column": "10", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "DATA_CACHE_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8694@macro@USE_HAL_ADC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_ADC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "208", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_ADC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8744@macro@USE_HAL_CAN_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_CAN_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "209", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_CAN_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8794@macro@USE_HAL_COMP_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_COMP_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "210", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_COMP_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8844@macro@USE_HAL_CRYP_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_CRYP_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "211", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_CRYP_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8894@macro@USE_HAL_DAC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_DAC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "212", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_DAC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8944@macro@USE_HAL_DCMI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_DCMI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "213", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_DCMI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@8994@macro@USE_HAL_DFSDM_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_DFSDM_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "214", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_DFSDM_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9044@macro@USE_HAL_DMA2D_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_DMA2D_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "215", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_DMA2D_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9094@macro@USE_HAL_DSI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_DSI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "216", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_DSI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9144@macro@USE_HAL_GFXMMU_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_GFXMMU_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "217", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_GFXMMU_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9194@macro@USE_HAL_HASH_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_HASH_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "218", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_HASH_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9244@macro@USE_HAL_HCD_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_HCD_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "219", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_HCD_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9294@macro@USE_HAL_I2C_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_I2C_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "220", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_I2C_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9344@macro@USE_HAL_IRDA_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_IRDA_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "221", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_IRDA_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9394@macro@USE_HAL_LPTIM_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_LPTIM_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "222", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_LPTIM_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9444@macro@USE_HAL_LTDC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_LTDC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_LTDC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9494@macro@USE_HAL_MMC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_MMC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "224", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_MMC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9544@macro@USE_HAL_OPAMP_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_OPAMP_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "225", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_OPAMP_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9594@macro@USE_HAL_OSPI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_OSPI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "226", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_OSPI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9644@macro@USE_HAL_PCD_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_PCD_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "227", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_PCD_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9694@macro@USE_HAL_QSPI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_QSPI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "228", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_QSPI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9744@macro@USE_HAL_RNG_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_RNG_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "229", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_RNG_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9794@macro@USE_HAL_RTC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_RTC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "230", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_RTC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9844@macro@USE_HAL_SAI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SAI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "231", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SAI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9894@macro@USE_HAL_SD_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SD_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "232", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SD_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9944@macro@USE_HAL_SMARTCARD_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SMARTCARD_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "233", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SMARTCARD_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@9994@macro@USE_HAL_SMBUS_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SMBUS_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "234", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SMBUS_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10044@macro@USE_HAL_SPI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SPI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "235", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SPI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10094@macro@USE_HAL_SWPMI_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_SWPMI_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_SWPMI_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10144@macro@USE_HAL_TIM_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_TIM_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "237", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_TIM_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10194@macro@USE_HAL_TSC_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_TSC_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "238", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_TSC_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10244@macro@USE_HAL_UART_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_UART_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_UART_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10294@macro@USE_HAL_USART_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_USART_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "240", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_USART_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10344@macro@USE_HAL_WWDG_REGISTER_CALLBACKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_HAL_WWDG_REGISTER_CALLBACKS", - "location": { - "column": "9", - "line": "241", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_HAL_WWDG_REGISTER_CALLBACKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@10649@macro@USE_SPI_CRC", - "What": "MacroDef", - "defdec": "Def", - "display": "USE_SPI_CRC", - "location": { - "column": "9", - "line": "250", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "USE_SPI_CRC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_conf.h@16998@macro@assert_param", - "What": "MacroDef", - "defdec": "Def", - "display": "assert_param", - "location": { - "column": "11", - "line": "475", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" - }, - "name": "assert_param", - "origin": "user_include", - "scope": null - }, { "ID": "c:stm32l4xx_hal_pwr_ex.h@816@macro@STM32L4xx_HAL_PWR_EX_H", "What": "MacroDef", @@ -325632,395 +318602,365 @@ "scope": null }, { - "ID": "c:ring_queue.h@32@macro@_RING_QUEUE_H_", + "ID": "c:comm_types.h@30@macro@_COMM_TYPES_", "What": "MacroDef", "defdec": "Def", - "display": "_RING_QUEUE_H_", + "display": "_COMM_TYPES_", "location": { "column": "9", "line": "2", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "_RING_QUEUE_H_", + "name": "_COMM_TYPES_", "origin": "user_include", "scope": null }, { - "ID": "c:ring_queue.h@147@macro@RQ_OK", + "ID": "c:comm_types.h@52@macro@RAM_FUNC", "What": "MacroDef", "defdec": "Def", - "display": "RQ_OK", + "display": "RAM_FUNC", "location": { "column": "9", + "line": "3", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "RAM_FUNC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@ulong", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long", + "location": { + "column": "27", + "line": "5", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "ulong", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@ushort", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "28", + "line": "6", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "ushort", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@uint", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", "line": "7", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "RQ_OK", + "name": "uint", "origin": "user_include", "scope": null }, { - "ID": "c:ring_queue.h@164@macro@RQ_ERROR", - "What": "MacroDef", - "defdec": "Def", - "display": "RQ_ERROR", - "location": { - "column": "9", - "line": "8", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RQ_ERROR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ring_queue.h@184@macro@RQ_OVERFLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "RQ_OVERFLOW", - "location": { - "column": "9", - "line": "9", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RQ_OVERFLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ring_queue.h@T@RQ_ElementType", + "ID": "c:comm_types.h@T@u_int8_t", "What": "Typedef", "defdec": "Def", "display": "unsigned char", "location": { "column": "23", - "line": "10", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + "line": "8", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "RQ_ElementType", + "name": "u_int8_t", "origin": "user_include", "scope": null }, { - "ID": "c:@S@_ring_queue", - "What": "Struct", + "ID": "c:comm_types.h@T@u_int16_t", + "What": "Typedef", "defdec": "Def", - "display": "_ring_queue", + "display": "unsigned short", + "location": { + "column": "28", + "line": "9", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "u_int16_t", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@u_int32_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", + "line": "10", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "u_int32_t", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@u_int64_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long long", + "location": { + "column": "31", + "line": "11", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "u_int64_t", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@BOOL", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "24", + "line": "12", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "BOOL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@BYTE", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "23", + "line": "15", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "BYTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@SHORT", + "What": "Typedef", + "defdec": "Def", + "display": "short", + "location": { + "column": "20", + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "SHORT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@WORD", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "24", + "line": "19", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "WORD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@WCHAR", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned short", + "location": { + "column": "24", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "WCHAR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@INT", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "15", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "INT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@UINT", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "22", + "line": "24", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "UINT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@T@LONG", + "What": "Typedef", + "defdec": "Def", + "display": "long", "location": { "column": "16", - "line": "12", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "members": [ - { - "ID": "c:@S@_ring_queue@FI@elems", - "What": "FieldDecl", - "defdec": "Def", - "display": "elems", - "location": { - "column": "18", - "line": "14", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "elems", - "origin": "user_include", - "scope": "_ring_queue" - }, - { - "ID": "c:@S@_ring_queue@FI@size", - "What": "FieldDecl", - "defdec": "Def", - "display": "size", - "location": { - "column": "6", - "line": "15", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "size", - "origin": "user_include", - "scope": "_ring_queue" - }, - { - "ID": "c:@S@_ring_queue@FI@front", - "What": "FieldDecl", - "defdec": "Def", - "display": "front", - "location": { - "column": "15", - "line": "16", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "front", - "origin": "user_include", - "scope": "_ring_queue" - }, - { - "ID": "c:@S@_ring_queue@FI@rear", - "What": "FieldDecl", - "defdec": "Def", - "display": "rear", - "location": { - "column": "22", - "line": "16", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "rear", - "origin": "user_include", - "scope": "_ring_queue" - }, - { - "ID": "c:ring_queue.h@T@RingQueue", - "What": "TypedefDecl", - "defdec": "Def", - "display": "struct _ring_queue", - "location": { - "column": "2", - "line": "17", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RingQueue", - "origin": "user_include", - "scope": "_ring_queue" - } - ], - "name": "_ring_queue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@InitRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", - "location": { - "column": "5", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "InitRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@InitRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", - "location": { - "column": "5", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "InitRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ring_queue.h@508@macro@RingQueueFull", - "What": "MacroDef", - "defdec": "Def", - "display": "RingQueueFull", - "location": { - "column": "9", - "line": "22", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RingQueueFull", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ring_queue.h@576@macro@RingQueueEmpty", - "What": "MacroDef", - "defdec": "Def", - "display": "RingQueueEmpty", - "location": { - "column": "9", - "line": "23", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RingQueueEmpty", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ShowRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int ShowRingQueue(RingQueue *)", - "location": { - "column": "5", "line": "27", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "ShowRingQueue", + "name": "LONG", "origin": "user_include", "scope": null }, { - "ID": "c:@F@ShowRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int ShowRingQueue(RingQueue *)", + "ID": "c:comm_types.h@T@DWORD", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned long", "location": { - "column": "5", - "line": "27", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + "column": "23", + "line": "28", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "ShowRingQueue", + "name": "DWORD", "origin": "user_include", "scope": null }, { - "ID": "c:@F@InRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int InRingQueue(RingQueue *, RQ_ElementType)", - "location": { - "column": "5", - "line": "30", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "InRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@InRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int InRingQueue(RingQueue *, RQ_ElementType)", - "location": { - "column": "5", - "line": "30", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "InRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@OutRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", - "location": { - "column": "5", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "OutRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@OutRingQueue", - "What": "Function", - "defdec": "Dec", - "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", - "location": { - "column": "5", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "OutRingQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RingQueueLength", - "What": "Function", - "defdec": "Dec", - "display": "int RingQueueLength(RingQueue *)", - "location": { - "column": "5", - "line": "36", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RingQueueLength", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RingQueueLength", - "What": "Function", - "defdec": "Dec", - "display": "int RingQueueLength(RingQueue *)", - "location": { - "column": "5", - "line": "36", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" - }, - "name": "RingQueueLength", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@819@macro@STM32L4xx_HAL_UART_EX_H", + "ID": "c:comm_types.h@756@macro@FALSE", "What": "MacroDef", "defdec": "Def", - "display": "STM32L4xx_HAL_UART_EX_H", + "display": "FALSE", "location": { "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "STM32L4xx_HAL_UART_EX_H", + "name": "FALSE", "origin": "user_include", "scope": null }, { - "ID": "c:@SA@UART_WakeUpTypeDef", - "What": "Struct", + "ID": "c:comm_types.h@811@macro@TRUE", + "What": "MacroDef", + "defdec": "Def", + "display": "TRUE", + "location": { + "column": "9", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "TRUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:comm_types.h@856@macro@ELEMENT_OF", + "What": "MacroDef", + "defdec": "Def", + "display": "ELEMENT_OF", + "location": { + "column": "9", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "ELEMENT_OF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@UA@U_DataType", + "What": "Union", "defdec": "Def", "display": "", "location": { "column": "9", - "line": "46", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, "members": [ { - "ID": "c:@SA@UART_WakeUpTypeDef@FI@WakeUpEvent", + "ID": "c:@UA@U_DataType@FI@iValue", "What": "FieldDecl", "defdec": "Def", - "display": "WakeUpEvent", - "location": { - "column": "12", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "WakeUpEvent", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" - }, - { - "ID": "c:@SA@UART_WakeUpTypeDef@FI@AddressLength", - "What": "FieldDecl", - "defdec": "Def", - "display": "AddressLength", - "location": { - "column": "12", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "AddressLength", - "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" - }, - { - "ID": "c:@SA@UART_WakeUpTypeDef@FI@Address", - "What": "FieldDecl", - "defdec": "Def", - "display": "Address", + "display": "iValue", "location": { "column": "11", - "line": "56", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" }, - "name": "Address", + "name": "iValue", "origin": "user_include", - "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" + "scope": "_anonymous_comm_types_h_45_9" + }, + { + "ID": "c:@UA@U_DataType@FI@fValue", + "What": "FieldDecl", + "defdec": "Def", + "display": "fValue", + "location": { + "column": "11", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "fValue", + "origin": "user_include", + "scope": "_anonymous_comm_types_h_45_9" + }, + { + "ID": "c:@UA@U_DataType@FI@cValue", + "What": "FieldDecl", + "defdec": "Def", + "display": "cValue", + "location": { + "column": "11", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "cValue", + "origin": "user_include", + "scope": "_anonymous_comm_types_h_45_9" + }, + { + "ID": "c:@T@U_DataType", + "What": "TypedefDecl", + "defdec": "Def", + "display": "union U_DataType", + "location": { + "column": "2", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\comm_types.h" + }, + "name": "U_DataType", + "origin": "user_include", + "scope": "_anonymous_comm_types_h_45_9" } ], "name": "", @@ -326028,1069 +318968,6991 @@ "scope": null }, { - "ID": "c:@T@UART_WakeUpTypeDef", + "ID": "c:uart_dev.h@28@macro@UART_DEV_H", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_DEV_H", + "location": { + "column": "9", + "line": "2", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "UART_DEV_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@169@macro@ASCII_CHAR_BACKSPACE", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_BACKSPACE", + "location": { + "column": "10", + "line": "10", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_BACKSPACE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@245@macro@ASCII_CHAR_CHARACTER_TABULATION", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_CHARACTER_TABULATION", + "location": { + "column": "10", + "line": "11", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_CHARACTER_TABULATION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@321@macro@ASCII_CHAR_LINE_FEED", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_LINE_FEED", + "location": { + "column": "10", + "line": "12", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_LINE_FEED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@397@macro@ASCII_CHAR_LINE_TABULATION", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_LINE_TABULATION", + "location": { + "column": "10", + "line": "13", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_LINE_TABULATION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@473@macro@ASCII_CHAR_FORM_FEED", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_FORM_FEED", + "location": { + "column": "10", + "line": "14", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_FORM_FEED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@549@macro@ASCII_CHAR_CARRIAGE_RETURN", + "What": "MacroDef", + "defdec": "Def", + "display": "ASCII_CHAR_CARRIAGE_RETURN", + "location": { + "column": "10", + "line": "15", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "ASCII_CHAR_CARRIAGE_RETURN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@T@device_handle", "What": "Typedef", "defdec": "Def", - "display": "struct UART_WakeUpTypeDef", - "location": { - "column": "3", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_WakeUpTypeDef", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@2283@macro@UART_WORDLENGTH_7B", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_WORDLENGTH_7B", - "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_WORDLENGTH_7B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@2365@macro@UART_WORDLENGTH_8B", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_WORDLENGTH_8B", - "location": { - "column": "9", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_WORDLENGTH_8B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@2447@macro@UART_WORDLENGTH_9B", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_WORDLENGTH_9B", - "location": { - "column": "9", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_WORDLENGTH_9B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@2637@macro@UART_ADDRESS_DETECT_4B", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_ADDRESS_DETECT_4B", - "location": { - "column": "9", - "line": "81", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_ADDRESS_DETECT_4B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@2726@macro@UART_ADDRESS_DETECT_7B", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_ADDRESS_DETECT_7B", - "location": { - "column": "9", - "line": "82", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_ADDRESS_DETECT_7B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_RS485Ex_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "display": "u_int32_t", "location": { "column": "19", - "line": "142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "HAL_RS485Ex_Init", + "name": "device_handle", "origin": "user_include", "scope": null }, { - "ID": "c:@F@HAL_RS485Ex_Init", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "142", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_RS485Ex_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_WakeupCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *)", - "location": { - "column": "6", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_WakeupCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_WakeupCallback", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *)", - "location": { - "column": "6", - "line": "153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_WakeupCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_StopModeWakeUpSourceConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *, UART_WakeUpTypeDef)", - "location": { - "column": "19", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_StopModeWakeUpSourceConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_StopModeWakeUpSourceConfig", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *, UART_WakeUpTypeDef)", - "location": { - "column": "19", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_StopModeWakeUpSourceConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_EnableStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_EnableStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_EnableStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_EnableStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_DisableStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_DisableStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_DisableStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_DisableStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_EnableClockStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_EnableClockStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_EnableClockStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_EnableClockStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_DisableClockStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_DisableClockStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_DisableClockStopMode", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *)", - "location": { - "column": "19", - "line": "175", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_DisableClockStopMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MultiProcessorEx_AddressLength_Set", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_MultiProcessorEx_AddressLength_Set", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_MultiProcessorEx_AddressLength_Set", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "178", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_MultiProcessorEx_AddressLength_Set", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle(UART_HandleTypeDef *, uint8_t *, uint16_t, uint16_t *, uint32_t)", - "location": { - "column": "19", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle(UART_HandleTypeDef *, uint8_t *, uint16_t, uint16_t *, uint32_t)", - "location": { - "column": "19", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_IT(UART_HandleTypeDef *, uint8_t *, uint16_t)", - "location": { - "column": "19", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_IT(UART_HandleTypeDef *, uint8_t *, uint16_t)", - "location": { - "column": "19", - "line": "189", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_DMA(UART_HandleTypeDef *, uint8_t *, uint16_t)", - "location": { - "column": "19", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_DMA", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_DMA(UART_HandleTypeDef *, uint8_t *, uint16_t)", - "location": { - "column": "19", - "line": "190", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "HAL_UARTEx_ReceiveToIdle_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@16935@macro@UART_GETCLOCKSOURCE", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_GETCLOCKSOURCE", - "location": { - "column": "9", - "line": "350", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_GETCLOCKSOURCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@35471@macro@UART_MASK_COMPUTATION", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_MASK_COMPUTATION", - "location": { - "column": "9", - "line": "640", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "UART_MASK_COMPUTATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@38512@macro@IS_UART_WORD_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_UART_WORD_LENGTH", - "location": { - "column": "9", - "line": "686", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "IS_UART_WORD_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_uart_ex.h@38962@macro@IS_UART_ADDRESSLENGTH_DETECT", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_UART_ADDRESSLENGTH_DETECT", - "location": { - "column": "9", - "line": "695", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" - }, - "name": "IS_UART_ADDRESSLENGTH_DETECT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@75@macro@_DLIB_PRODUCTS_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCTS_H_", - "location": { - "column": "9", - "line": "4", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCTS_H_", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@524@macro@_DLIB_WIDE_CHARACTERS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_WIDE_CHARACTERS", - "location": { - "column": "9", - "line": "21", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_WIDE_CHARACTERS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@680@macro@_DLIB_PRODUCT_STRING", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_STRING", - "location": { - "column": "9", - "line": "25", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_STRING", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@831@macro@_DLIB_PRODUCT_FENV", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_FENV", - "location": { - "column": "9", - "line": "29", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_FENV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@984@macro@_DLIB_PRODUCT_STDLIB", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_STDLIB", - "location": { - "column": "9", - "line": "33", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_STDLIB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1095@macro@_DLIB_QSORT_BUF_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_QSORT_BUF_SIZE", - "location": { - "column": "9", - "line": "37", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_QSORT_BUF_SIZE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1270@macro@_DLIB_SUPPORT_FOR_AEABI", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SUPPORT_FOR_AEABI", - "location": { - "column": "9", - "line": "46", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_SUPPORT_FOR_AEABI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1353@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "location": { - "column": "9", - "line": "49", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1833@macro@_USE_ATOMIC_OPS", - "What": "MacroDef", - "defdec": "Def", - "display": "_USE_ATOMIC_OPS", - "location": { - "column": "11", - "line": "65", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_USE_ATOMIC_OPS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1992@macro@__SOFTFP", - "What": "MacroDef", - "defdec": "Def", - "display": "__SOFTFP", - "location": { - "column": "11", - "line": "70", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "__SOFTFP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2116@macro@__NO_SCRATCH", - "What": "MacroDef", - "defdec": "Def", - "display": "__NO_SCRATCH", - "location": { - "column": "9", - "line": "74", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "__NO_SCRATCH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2240@macro@_DLIB_SPEEDY_FLOATS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SPEEDY_FLOATS", - "location": { - "column": "9", - "line": "77", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_SPEEDY_FLOATS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2301@macro@_DLIB_TIME_USES_64_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_USES_64_DEFAULT", - "location": { - "column": "9", - "line": "80", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_TIME_USES_64_DEFAULT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2414@macro@_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "location": { - "column": "11", - "line": "84", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2498@macro@_DLIB_ELF_INIT_STATIC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_STATIC_BASE", - "location": { - "column": "11", - "line": "85", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_STATIC_BASE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2545@macro@_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "location": { - "column": "11", - "line": "86", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2905@macro@_DLIB_ELF_INIT_TABLE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_TABLE_MEMORY", - "location": { - "column": "9", - "line": "96", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_TABLE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2955@macro@_DLIB_ELF_INIT_SOURCE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_SOURCE_MEMORY", - "location": { - "column": "9", - "line": "97", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_SOURCE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3005@macro@_DLIB_ELF_INIT_DESTINATION_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_DESTINATION_MEMORY", - "location": { - "column": "9", - "line": "98", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_DESTINATION_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3153@macro@_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "location": { - "column": "11", - "line": "103", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3214@macro@_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "location": { - "column": "9", - "line": "105", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3266@macro@_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "location": { - "column": "9", - "line": "106", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3458@macro@_DLIB_ELF_INIT_INTERFACE_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_INTERFACE_VERSION", - "location": { - "column": "9", - "line": "110", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_INTERFACE_VERSION", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3504@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "location": { - "column": "9", - "line": "112", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3556@macro@_XMATHWRAPPERS_DEF", - "What": "MacroDef", - "defdec": "Def", - "display": "_XMATHWRAPPERS_DEF", - "location": { - "column": "9", - "line": "114", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_XMATHWRAPPERS_DEF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3605@macro@_CPPINIT_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_CPPINIT_ATTR", - "location": { - "column": "9", - "line": "116", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_CPPINIT_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@g_stConfigInfo", + "ID": "c:@g_term_uart_handle", "What": "Variable", - "defdec": "Def", - "display": "g_stConfigInfo", + "defdec": "Dec", + "display": "g_term_uart_handle", "location": { - "column": "13", - "line": "6", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "column": "22", + "line": "19", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "g_stConfigInfo", - "origin": "project_file", + "name": "g_term_uart_handle", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@InFlash_Erase_Pages", - "What": "Function", - "defdec": "Def", - "display": "void InFlash_Erase_Pages(u_int16_t, u_int16_t)", - "location": { - "column": "6", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" - }, - "name": "InFlash_Erase_Pages", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:inflash.c@626@F@InFlash_Erase_Pages@EraseInitStruct", + "ID": "c:@g_lora_uart_handle", "What": "Variable", - "defdec": "Def", - "display": "EraseInitStruct", + "defdec": "Dec", + "display": "g_lora_uart_handle", "location": { - "column": "28", + "column": "22", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "g_lora_uart_handle", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:uart_dev.h@757@macro@RS485_MAX_PACK_DATA_LEN", + "What": "MacroDef", + "defdec": "Def", + "display": "RS485_MAX_PACK_DATA_LEN", + "location": { + "column": "9", + "line": "22", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "RS485_MAX_PACK_DATA_LEN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@uartIndex_e", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@uartIndex_e@RAIN_RS485_UART_INDEX", + "What": "Enumerator", + "defdec": "Def", + "display": "RAIN_RS485_UART_INDEX", + "location": { + "column": "4", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "RAIN_RS485_UART_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@uartIndex_e@TERM_UART_INDEX", + "What": "Enumerator", + "defdec": "Def", + "display": "TERM_UART_INDEX", + "location": { + "column": "4", + "line": "26", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "TERM_UART_INDEX", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@uartIndex_e@LORA_UART_INDEX", + "What": "Enumerator", + "defdec": "Def", + "display": "LORA_UART_INDEX", + "location": { + "column": "4", + "line": "27", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "LORA_UART_INDEX", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", "line": "24", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "EraseInitStruct", - "origin": "project_file", + "name": "", + "origin": "user_include", "scope": null }, { - "ID": "c:inflash.c@671@F@InFlash_Erase_Pages@PAGEError", - "What": "Variable", + "ID": "c:@S@_uart_device_info", + "What": "Struct", "defdec": "Def", - "display": "PAGEError", + "display": "_uart_device_info", "location": { - "column": "15", - "line": "25", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "column": "16", + "line": "31", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "PAGEError", - "origin": "project_file", + "members": [ + { + "ID": "c:@S@_uart_device_info@FI@init", + "What": "FieldDecl", + "defdec": "Def", + "display": "init", + "location": { + "column": "17", + "line": "32", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "init", + "origin": "user_include", + "scope": "_uart_device_info" + }, + { + "ID": "c:@S@_uart_device_info@FI@uart_index", + "What": "FieldDecl", + "defdec": "Def", + "display": "uart_index", + "location": { + "column": "17", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_index", + "origin": "user_include", + "scope": "_uart_device_info" + }, + { + "ID": "c:@S@_uart_device_info@FI@uart_baudrate", + "What": "FieldDecl", + "defdec": "Def", + "display": "uart_baudrate", + "location": { + "column": "17", + "line": "34", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_baudrate", + "origin": "user_include", + "scope": "_uart_device_info" + }, + { + "ID": "c:@S@_uart_device_info@FI@uart_ring_queue", + "What": "FieldDecl", + "defdec": "Def", + "display": "uart_ring_queue", + "location": { + "column": "17", + "line": "35", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_ring_queue", + "origin": "user_include", + "scope": "_uart_device_info" + }, + { + "ID": "c:uart_dev.h@T@uart_device_info", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct _uart_device_info", + "location": { + "column": "2", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_device_info", + "origin": "user_include", + "scope": "_uart_device_info" + } + ], + "name": "_uart_device_info", + "origin": "user_include", "scope": null }, { - "ID": "c:inflash.c@938@F@InFlash_Erase_Pages@p", - "What": "Variable", - "defdec": "Def", - "display": "p", - "location": { - "column": "5", - "line": "33", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" - }, - "name": "p", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@InFlash_Write", + "ID": "c:@F@uart_sendstr", "What": "Function", - "defdec": "Def", - "display": "void InFlash_Write(u_int32_t, u_int64_t *, u_int32_t)", + "defdec": "Dec", + "display": "void uart_sendstr(device_handle, char *)", + "location": { + "column": "6", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_sendstr", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_sendstr", + "What": "Function", + "defdec": "Dec", + "display": "void uart_sendstr(device_handle, char *)", + "location": { + "column": "6", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_sendstr", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_write", + "What": "Function", + "defdec": "Dec", + "display": "void uart_dev_write(device_handle, void *, int)", + "location": { + "column": "6", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_dev_write", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_write", + "What": "Function", + "defdec": "Dec", + "display": "void uart_dev_write(device_handle, void *, int)", + "location": { + "column": "6", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_dev_write", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@init_term_uart", + "What": "Function", + "defdec": "Dec", + "display": "void init_term_uart(void)", + "location": { + "column": "6", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "init_term_uart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@init_term_uart", + "What": "Function", + "defdec": "Dec", + "display": "void init_term_uart(void)", + "location": { + "column": "6", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "init_term_uart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@init_lora_uart", + "What": "Function", + "defdec": "Dec", + "display": "void init_lora_uart(void)", + "location": { + "column": "6", + "line": "41", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "init_lora_uart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@init_lora_uart", + "What": "Function", + "defdec": "Dec", + "display": "void init_lora_uart(void)", + "location": { + "column": "6", + "line": "41", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "init_lora_uart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_close", + "What": "Function", + "defdec": "Dec", + "display": "void uart_close(uartIndex_e)", "location": { "column": "6", "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "InFlash_Write", - "origin": "project_file", + "name": "uart_close", + "origin": "user_include", "scope": null }, { - "ID": "c:inflash.c@1130@F@InFlash_Write@i", - "What": "Variable", - "defdec": "Def", - "display": "i", + "ID": "c:@F@uart_close", + "What": "Function", + "defdec": "Dec", + "display": "void uart_close(uartIndex_e)", "location": { - "column": "11", + "column": "6", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_close", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@term_printf", + "What": "Function", + "defdec": "Dec", + "display": "void term_printf(char *, ...)", + "location": { + "column": "6", + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "term_printf", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@term_printf", + "What": "Function", + "defdec": "Dec", + "display": "void term_printf(char *, ...)", + "location": { + "column": "6", + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "term_printf", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_write", + "What": "Function", + "defdec": "Dec", + "display": "void uart_dev_write(device_handle, void *, int)", + "location": { + "column": "6", "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "i", - "origin": "project_file", + "name": "uart_dev_write", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@save_config_info", + "ID": "c:@F@uart_dev_write", "What": "Function", - "defdec": "Def", - "display": "void save_config_info(config_info)", + "defdec": "Dec", + "display": "void uart_dev_write(device_handle, void *, int)", "location": { "column": "6", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "save_config_info", - "origin": "project_file", + "name": "uart_dev_write", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@read_config_info", + "ID": "c:@F@term_uart_readln", "What": "Function", - "defdec": "Def", - "display": "BOOL read_config_info(void)", + "defdec": "Dec", + "display": "int term_uart_readln(u_int8_t *, int, u_int32_t)", + "location": { + "column": "5", + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "term_uart_readln", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_char_present", + "What": "Function", + "defdec": "Dec", + "display": "int uart_dev_char_present(device_handle)", + "location": { + "column": "5", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_dev_char_present", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_char_present", + "What": "Function", + "defdec": "Dec", + "display": "int uart_dev_char_present(device_handle)", + "location": { + "column": "5", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" + }, + "name": "uart_dev_char_present", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@uart_dev_in_char", + "What": "Function", + "defdec": "Dec", + "display": "char uart_dev_in_char(device_handle)", "location": { "column": "6", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "read_config_info", - "origin": "project_file", + "name": "uart_dev_in_char", + "origin": "user_include", "scope": null }, { - "ID": "c:inflash.c@1937@F@read_config_info@temp_config_info", - "What": "Variable", - "defdec": "Def", - "display": "temp_config_info", - "location": { - "column": "18", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" - }, - "name": "temp_config_info", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@delete_config_info", + "ID": "c:@F@uart_dev_in_char", "What": "Function", - "defdec": "Def", - "display": "void delete_config_info(void)", + "defdec": "Dec", + "display": "char uart_dev_in_char(device_handle)", "location": { "column": "6", - "line": "96", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Inc\\uart_dev.h" }, - "name": "delete_config_info", - "origin": "project_file", + "name": "uart_dev_in_char", + "origin": "user_include", "scope": null }, { - "ID": "c:inflash.c@2841@F@delete_config_info@delete_config_info", - "What": "Variable", - "defdec": "Def", - "display": "delete_config_info", - "location": { - "column": "19", - "line": "98", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" - }, - "name": "delete_config_info", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:ysizet.h@111@macro@_YSIZET_H", + "ID": "c:stm32l4xx_hal_adc_ex.h@816@macro@STM32L4xx_HAL_ADC_EX_H", "What": "MacroDef", "defdec": "Def", - "display": "_YSIZET_H", - "location": { - "column": "9", - "line": "5", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" - }, - "name": "_YSIZET_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@277@macro@_SIZE_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_SIZE_T", - "location": { - "column": "11", - "line": "16", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" - }, - "name": "_SIZE_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@296@macro@_STD_USING_SIZE_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_STD_USING_SIZE_T", - "location": { - "column": "11", - "line": "17", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" - }, - "name": "_STD_USING_SIZE_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@T@size_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Sizet", - "location": { - "column": "18", - "line": "18", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" - }, - "name": "size_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@359@macro@__DATA_PTR_MEM_HELPER1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__DATA_PTR_MEM_HELPER1__", + "display": "STM32L4xx_HAL_ADC_EX_H", "location": { "column": "9", "line": "21", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" }, - "name": "__DATA_PTR_MEM_HELPER1__", + "name": "STM32L4xx_HAL_ADC_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_InjOversamplingTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_InjOversamplingTypeDef@FI@Ratio", + "What": "FieldDecl", + "defdec": "Def", + "display": "Ratio", + "location": { + "column": "12", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "Ratio", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_46_9" + }, + { + "ID": "c:@SA@ADC_InjOversamplingTypeDef@FI@RightBitShift", + "What": "FieldDecl", + "defdec": "Def", + "display": "RightBitShift", + "location": { + "column": "12", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "RightBitShift", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_46_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_InjOversamplingTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_InjOversamplingTypeDef", + "location": { + "column": "3", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_InjOversamplingTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "members": [ + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedChannel", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedChannel", + "location": { + "column": "12", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedChannel", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedRank", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedRank", + "location": { + "column": "12", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedRank", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedSamplingTime", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedSamplingTime", + "location": { + "column": "12", + "line": "82", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedSamplingTime", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedSingleDiff", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedSingleDiff", + "location": { + "column": "12", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedSingleDiff", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedOffsetNumber", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedOffsetNumber", + "location": { + "column": "12", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedOffsetNumber", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedOffset", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedOffset", + "location": { + "column": "12", + "line": "109", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedOffset", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedNbrOfConversion", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedNbrOfConversion", + "location": { + "column": "12", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedNbrOfConversion", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjectedDiscontinuousConvMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjectedDiscontinuousConvMode", + "location": { + "column": "19", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjectedDiscontinuousConvMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@AutoInjectedConv", + "What": "FieldDecl", + "defdec": "Def", + "display": "AutoInjectedConv", + "location": { + "column": "19", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "AutoInjectedConv", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@QueueInjectedContext", + "What": "FieldDecl", + "defdec": "Def", + "display": "QueueInjectedContext", + "location": { + "column": "19", + "line": "141", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "QueueInjectedContext", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@ExternalTrigInjecConv", + "What": "FieldDecl", + "defdec": "Def", + "display": "ExternalTrigInjecConv", + "location": { + "column": "12", + "line": "152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ExternalTrigInjecConv", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@ExternalTrigInjecConvEdge", + "What": "FieldDecl", + "defdec": "Def", + "display": "ExternalTrigInjecConvEdge", + "location": { + "column": "12", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ExternalTrigInjecConvEdge", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjecOversamplingMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjecOversamplingMode", + "location": { + "column": "19", + "line": "164", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjecOversamplingMode", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + }, + { + "ID": "c:@SA@ADC_InjectionConfTypeDef@FI@InjecOversampling", + "What": "FieldDecl", + "defdec": "Def", + "display": "InjecOversampling", + "location": { + "column": "31", + "line": "168", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "InjecOversampling", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_adc_ex_h_71_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@ADC_InjectionConfTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct ADC_InjectionConfTypeDef", + "location": { + "column": "3", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_InjectionConfTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@17300@macro@ADC_INJECTED_SOFTWARE_START", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_SOFTWARE_START", + "location": { + "column": "9", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_SOFTWARE_START", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@17440@macro@ADC_EXTERNALTRIGINJEC_T1_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T1_TRGO", + "location": { + "column": "9", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T1_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@17656@macro@ADC_EXTERNALTRIGINJEC_T1_TRGO2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T1_TRGO2", + "location": { + "column": "9", + "line": "212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T1_TRGO2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@17873@macro@ADC_EXTERNALTRIGINJEC_T1_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T1_CC4", + "location": { + "column": "9", + "line": "213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T1_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@18151@macro@ADC_EXTERNALTRIGINJEC_T2_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T2_TRGO", + "location": { + "column": "9", + "line": "214", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T2_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@18367@macro@ADC_EXTERNALTRIGINJEC_T2_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T2_CC1", + "location": { + "column": "9", + "line": "215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T2_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@18645@macro@ADC_EXTERNALTRIGINJEC_T3_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T3_TRGO", + "location": { + "column": "9", + "line": "216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T3_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@18861@macro@ADC_EXTERNALTRIGINJEC_T3_CC1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T3_CC1", + "location": { + "column": "9", + "line": "217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T3_CC1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@19139@macro@ADC_EXTERNALTRIGINJEC_T3_CC3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T3_CC3", + "location": { + "column": "9", + "line": "218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T3_CC3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@19417@macro@ADC_EXTERNALTRIGINJEC_T3_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T3_CC4", + "location": { + "column": "9", + "line": "219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T3_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@19695@macro@ADC_EXTERNALTRIGINJEC_T4_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T4_TRGO", + "location": { + "column": "9", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T4_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@19911@macro@ADC_EXTERNALTRIGINJEC_T6_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T6_TRGO", + "location": { + "column": "9", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T6_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@20127@macro@ADC_EXTERNALTRIGINJEC_T8_CC4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T8_CC4", + "location": { + "column": "9", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T8_CC4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@20405@macro@ADC_EXTERNALTRIGINJEC_T8_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T8_TRGO", + "location": { + "column": "9", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T8_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@20621@macro@ADC_EXTERNALTRIGINJEC_T8_TRGO2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T8_TRGO2", + "location": { + "column": "9", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T8_TRGO2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@20838@macro@ADC_EXTERNALTRIGINJEC_T15_TRGO", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_T15_TRGO", + "location": { + "column": "9", + "line": "225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_T15_TRGO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@21055@macro@ADC_EXTERNALTRIGINJEC_EXT_IT15", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJEC_EXT_IT15", + "location": { + "column": "9", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJEC_EXT_IT15", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@21441@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", + "location": { + "column": "9", + "line": "234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@21611@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", + "location": { + "column": "9", + "line": "235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@21781@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", + "location": { + "column": "9", + "line": "236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_FALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@21951@macro@ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", + "location": { + "column": "9", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_EXTERNALTRIGINJECCONV_EDGE_RISINGFALLING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@22250@macro@ADC_SINGLE_ENDED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SINGLE_ENDED", + "location": { + "column": "9", + "line": "245", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_SINGLE_ENDED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@22412@macro@ADC_DIFFERENTIAL_ENDED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_DIFFERENTIAL_ENDED", + "location": { + "column": "9", + "line": "246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_DIFFERENTIAL_ENDED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@22675@macro@ADC_OFFSET_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_NONE", + "location": { + "column": "9", + "line": "254", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@22812@macro@ADC_OFFSET_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_1", + "location": { + "column": "9", + "line": "255", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@23046@macro@ADC_OFFSET_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_2", + "location": { + "column": "9", + "line": "256", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@23280@macro@ADC_OFFSET_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_3", + "location": { + "column": "9", + "line": "257", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@23514@macro@ADC_OFFSET_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_4", + "location": { + "column": "9", + "line": "258", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@23854@macro@ADC_INJECTED_RANK_1", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_RANK_1", + "location": { + "column": "9", + "line": "266", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_RANK_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@23962@macro@ADC_INJECTED_RANK_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_RANK_2", + "location": { + "column": "9", + "line": "267", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_RANK_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@24070@macro@ADC_INJECTED_RANK_3", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_RANK_3", + "location": { + "column": "9", + "line": "268", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_RANK_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@24178@macro@ADC_INJECTED_RANK_4", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_RANK_4", + "location": { + "column": "9", + "line": "269", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_RANK_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@28475@macro@ADC_REGULAR_GROUP", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_GROUP", + "location": { + "column": "9", + "line": "324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_REGULAR_GROUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@28611@macro@ADC_INJECTED_GROUP", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_INJECTED_GROUP", + "location": { + "column": "9", + "line": "325", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_INJECTED_GROUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@28751@macro@ADC_REGULAR_INJECTED_GROUP", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_REGULAR_INJECTED_GROUP", + "location": { + "column": "9", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_REGULAR_INJECTED_GROUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@29565@macro@ADC_CFGR_FIELDS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_FIELDS", + "location": { + "column": "9", + "line": "342", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_FIELDS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@30554@macro@ADC_SMPR1_FIELDS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_SMPR1_FIELDS", + "location": { + "column": "9", + "line": "362", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_SMPR1_FIELDS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@31243@macro@ADC_CFGR_FIELDS_2", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_FIELDS_2", + "location": { + "column": "9", + "line": "379", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_FIELDS_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@33852@macro@ADC_IS_SOFTWARE_START_INJECTED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_SOFTWARE_START_INJECTED", + "location": { + "column": "9", + "line": "443", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_IS_SOFTWARE_START_INJECTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@34198@macro@ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", + "location": { + "column": "9", + "line": "451", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@34590@macro@ADC_IS_CONVERSION_ONGOING_INJECTED", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_CONVERSION_ONGOING_INJECTED", + "location": { + "column": "9", + "line": "460", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_IS_CONVERSION_ONGOING_INJECTED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@35783@macro@ADC_IS_INDEPENDENT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_IS_INDEPENDENT", + "location": { + "column": "9", + "line": "478", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_IS_INDEPENDENT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@36324@macro@ADC_JSQR_RK", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_JSQR_RK", + "location": { + "column": "9", + "line": "489", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_JSQR_RK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@36711@macro@ADC_CFGR_INJECT_CONTEXT_QUEUE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_INJECT_CONTEXT_QUEUE", + "location": { + "column": "9", + "line": "497", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_INJECT_CONTEXT_QUEUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@37012@macro@ADC_CFGR_INJECT_DISCCONTINUOUS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_INJECT_DISCCONTINUOUS", + "location": { + "column": "9", + "line": "504", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_INJECT_DISCCONTINUOUS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@37314@macro@ADC_CFGR_REG_DISCONTINUOUS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_REG_DISCONTINUOUS", + "location": { + "column": "9", + "line": "511", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_REG_DISCONTINUOUS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@37620@macro@ADC_CFGR_DISCONTINUOUS_NUM", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_DISCONTINUOUS_NUM", + "location": { + "column": "9", + "line": "518", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_DISCONTINUOUS_NUM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@37884@macro@ADC_CFGR_AUTOWAIT", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_AUTOWAIT", + "location": { + "column": "9", + "line": "525", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_AUTOWAIT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@38099@macro@ADC_CFGR_CONTINUOUS", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_CONTINUOUS", + "location": { + "column": "9", + "line": "532", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_CONTINUOUS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@38340@macro@ADC_CFGR_DMACONTREQ", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_DMACONTREQ", + "location": { + "column": "9", + "line": "539", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_DMACONTREQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@38574@macro@ADC_OFR_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFR_CHANNEL", + "location": { + "column": "9", + "line": "546", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFR_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@38807@macro@ADC_DIFSEL_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_DIFSEL_CHANNEL", + "location": { + "column": "9", + "line": "553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_DIFSEL_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@39062@macro@ADC_CALFACT_DIFF_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CALFACT_DIFF_SET", + "location": { + "column": "9", + "line": "560", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CALFACT_DIFF_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@39478@macro@ADC_CALFACT_DIFF_GET", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CALFACT_DIFF_GET", + "location": { + "column": "9", + "line": "568", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CALFACT_DIFF_GET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@39751@macro@ADC_TRX_HIGHTHRESHOLD", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_TRX_HIGHTHRESHOLD", + "location": { + "column": "9", + "line": "575", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_TRX_HIGHTHRESHOLD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@40759@macro@ADC_OFFSET_SHIFT_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_OFFSET_SHIFT_RESOLUTION", + "location": { + "column": "9", + "line": "598", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_OFFSET_SHIFT_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@41515@macro@ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", + "location": { + "column": "9", + "line": "613", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_AWD1THRESHOLD_SHIFT_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@42251@macro@ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", + "location": { + "column": "9", + "line": "627", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_AWD23THRESHOLD_SHIFT_RESOLUTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@43727@macro@ADC_CLEAR_COMMON_CONTROL_REGISTER", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CLEAR_COMMON_CONTROL_REGISTER", + "location": { + "column": "9", + "line": "650", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CLEAR_COMMON_CONTROL_REGISTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@46037@macro@ADC_TEMPERATURE_SENSOR_INSTANCE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_TEMPERATURE_SENSOR_INSTANCE", + "location": { + "column": "9", + "line": "679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_TEMPERATURE_SENSOR_INSTANCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@47764@macro@ADC_BATTERY_VOLTAGE_INSTANCE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_BATTERY_VOLTAGE_INSTANCE", + "location": { + "column": "9", + "line": "693", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_BATTERY_VOLTAGE_INSTANCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@49060@macro@ADC_VREFINT_INSTANCE", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_VREFINT_INSTANCE", + "location": { + "column": "9", + "line": "706", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_VREFINT_INSTANCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@49427@macro@IS_ADC_INJECTED_NB_CONV", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_INJECTED_NB_CONV", + "location": { + "column": "9", + "line": "713", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_INJECTED_NB_CONV", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@49783@macro@IS_ADC_CALFACT", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_CALFACT", + "location": { + "column": "9", + "line": "720", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_CALFACT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@50437@macro@IS_ADC_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_CHANNEL", + "location": { + "column": "9", + "line": "730", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@68007@macro@IS_ADC_DIFF_CHANNEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_DIFF_CHANNEL", + "location": { + "column": "9", + "line": "904", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_DIFF_CHANNEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@73412@macro@IS_ADC_SINGLE_DIFFERENTIAL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_SINGLE_DIFFERENTIAL", + "location": { + "column": "9", + "line": "959", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_SINGLE_DIFFERENTIAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@73817@macro@IS_ADC_OFFSET_NUMBER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_OFFSET_NUMBER", + "location": { + "column": "9", + "line": "967", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_OFFSET_NUMBER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@74493@macro@IS_ADC_INJECTED_RANK", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_INJECTED_RANK", + "location": { + "column": "9", + "line": "978", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_INJECTED_RANK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@75118@macro@IS_ADC_EXTTRIGINJEC", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EXTTRIGINJEC", + "location": { + "column": "9", + "line": "989", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_EXTTRIGINJEC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@77251@macro@IS_ADC_EXTTRIGINJEC_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EXTTRIGINJEC_EDGE", + "location": { + "column": "9", + "line": "1012", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_EXTTRIGINJEC_EDGE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@80733@macro@IS_ADC_ANALOG_WATCHDOG_NUMBER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_ANALOG_WATCHDOG_NUMBER", + "location": { + "column": "9", + "line": "1065", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_ANALOG_WATCHDOG_NUMBER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@81263@macro@IS_ADC_ANALOG_WATCHDOG_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_ANALOG_WATCHDOG_MODE", + "location": { + "column": "9", + "line": "1074", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_ANALOG_WATCHDOG_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@82334@macro@IS_ADC_CONVERSION_GROUP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_CONVERSION_GROUP", + "location": { + "column": "9", + "line": "1087", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_CONVERSION_GROUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@82797@macro@IS_ADC_EVENT_TYPE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_EVENT_TYPE", + "location": { + "column": "9", + "line": "1096", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_EVENT_TYPE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@83457@macro@IS_ADC_OVERSAMPLING_RATIO", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_OVERSAMPLING_RATIO", + "location": { + "column": "9", + "line": "1108", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_OVERSAMPLING_RATIO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@84464@macro@IS_ADC_RIGHT_BIT_SHIFT", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_RIGHT_BIT_SHIFT", + "location": { + "column": "9", + "line": "1122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_RIGHT_BIT_SHIFT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@85526@macro@IS_ADC_TRIGGERED_OVERSAMPLING_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_TRIGGERED_OVERSAMPLING_MODE", + "location": { + "column": "9", + "line": "1137", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_TRIGGERED_OVERSAMPLING_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@86002@macro@IS_ADC_REGOVERSAMPLING_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_REGOVERSAMPLING_MODE", + "location": { + "column": "9", + "line": "1145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_REGOVERSAMPLING_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@86892@macro@IS_ADC_DFSDMCFG_MODE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_ADC_DFSDMCFG_MODE", + "location": { + "column": "9", + "line": "1160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "IS_ADC_DFSDMCFG_MODE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_adc_ex.h@87473@macro@ADC_CFGR_DFSDM", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC_CFGR_DFSDM", + "location": { + "column": "9", + "line": "1174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "ADC_CFGR_DFSDM", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_Start", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_Start", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADCEx_Calibration_GetValue(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_GetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADCEx_Calibration_GetValue(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_GetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_SetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_SetValue(ADC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "25", + "line": "1195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_SetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_Calibration_SetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_Calibration_SetValue(ADC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "25", + "line": "1195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_Calibration_SetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStart", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStart", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedPollForConversion", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedPollForConversion(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1201", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedPollForConversion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedPollForConversion", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedPollForConversion(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1201", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedPollForConversion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStart_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStart_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStart_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStart_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStart_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedStop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedStop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedStop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedGetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADCEx_InjectedGetValue(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedGetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedGetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_ADCEx_InjectedGetValue(ADC_HandleTypeDef *, uint32_t)", + "location": { + "column": "25", + "line": "1215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedGetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedConvCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedConvCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedConvCpltCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedConvCpltCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedQueueOverflowCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_InjectedQueueOverflowCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedQueueOverflowCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedQueueOverflowCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_InjectedQueueOverflowCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedQueueOverflowCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow2Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_LevelOutOfWindow2Callback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_LevelOutOfWindow2Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow2Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_LevelOutOfWindow2Callback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_LevelOutOfWindow2Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow3Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_LevelOutOfWindow3Callback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_LevelOutOfWindow3Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_LevelOutOfWindow3Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_LevelOutOfWindow3Callback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_LevelOutOfWindow3Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EndOfSamplingCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_EndOfSamplingCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EndOfSamplingCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EndOfSamplingCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_ADCEx_EndOfSamplingCallback(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EndOfSamplingCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_IT(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_DMA(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1227", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_RegularStop_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_RegularStop_DMA(ADC_HandleTypeDef *)", + "location": { + "column": "19", + "line": "1227", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_RegularStop_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedConfigChannel(ADC_HandleTypeDef *, ADC_InjectionConfTypeDef *)", + "location": { + "column": "25", + "line": "1240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_InjectedConfigChannel", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_InjectedConfigChannel(ADC_HandleTypeDef *, ADC_InjectionConfTypeDef *)", + "location": { + "column": "25", + "line": "1240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_InjectedConfigChannel", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EnableInjectedQueue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_EnableInjectedQueue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1245", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EnableInjectedQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EnableInjectedQueue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_EnableInjectedQueue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1245", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EnableInjectedQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_DisableInjectedQueue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_DisableInjectedQueue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_DisableInjectedQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_DisableInjectedQueue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_DisableInjectedQueue(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1246", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_DisableInjectedQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_DisableVoltageRegulator", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_DisableVoltageRegulator(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1247", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_DisableVoltageRegulator", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_DisableVoltageRegulator", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_DisableVoltageRegulator(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1247", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_DisableVoltageRegulator", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EnterADCDeepPowerDownMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_EnterADCDeepPowerDownMode(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EnterADCDeepPowerDownMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_ADCEx_EnterADCDeepPowerDownMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_ADCEx_EnterADCDeepPowerDownMode(ADC_HandleTypeDef *)", + "location": { + "column": "25", + "line": "1248", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_adc_ex.h" + }, + "name": "HAL_ADCEx_EnterADCDeepPowerDownMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@871@macro@STM32L4xx_HAL_DEF_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_DEF_H", + "location": { + "column": "9", + "line": "22", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "STM32L4xx_HAL_DEF_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_StatusTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_StatusTypeDef@HAL_OK", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_OK", + "location": { + "column": "3", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_OK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_StatusTypeDef@HAL_ERROR", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_ERROR", + "location": { + "column": "3", + "line": "41", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_ERROR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_StatusTypeDef@HAL_BUSY", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_BUSY", + "location": { + "column": "3", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_BUSY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_StatusTypeDef@HAL_TIMEOUT", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_TIMEOUT", + "location": { + "column": "3", + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_TIMEOUT", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_StatusTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_StatusTypeDef", + "location": { + "column": "3", + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_StatusTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_LockTypeDef", + "What": "Enum", + "defdec": "Def", + "display": "", + "fields": [ + { + "ID": "c:@EA@HAL_LockTypeDef@HAL_UNLOCKED", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_UNLOCKED", + "location": { + "column": "3", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_UNLOCKED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@EA@HAL_LockTypeDef@HAL_LOCKED", + "What": "Enumerator", + "defdec": "Def", + "display": "HAL_LOCKED", + "location": { + "column": "3", + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_LOCKED", + "origin": "user_include", + "scope": null + } + ], + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@HAL_LockTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "enum HAL_LockTypeDef", + "location": { + "column": "3", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_LockTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@1664@macro@UNUSED", + "What": "MacroDef", + "defdec": "Def", + "display": "UNUSED", + "location": { + "column": "9", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "UNUSED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@1730@macro@HAL_MAX_DELAY", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_MAX_DELAY", + "location": { + "column": "9", + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_MAX_DELAY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@1772@macro@HAL_IS_BIT_SET", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_IS_BIT_SET", + "location": { + "column": "9", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_IS_BIT_SET", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@1841@macro@HAL_IS_BIT_CLR", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_IS_BIT_CLR", + "location": { + "column": "9", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "HAL_IS_BIT_CLR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@1909@macro@__HAL_LINKDMA", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_LINKDMA", + "location": { + "column": "9", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__HAL_LINKDMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@3365@macro@__HAL_RESET_HANDLE_STATE", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_RESET_HANDLE_STATE", + "location": { + "column": "9", + "line": "85", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__HAL_RESET_HANDLE_STATE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@3564@macro@__HAL_LOCK", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_LOCK", + "location": { + "column": "11", + "line": "91", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__HAL_LOCK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@4392@macro@__HAL_UNLOCK", + "What": "MacroDef", + "defdec": "Def", + "display": "__HAL_UNLOCK", + "location": { + "column": "11", + "line": "103", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__HAL_UNLOCK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@5873@macro@__ALIGN_END", + "What": "MacroDef", + "defdec": "Def", + "display": "__ALIGN_END", + "location": { + "column": "13", + "line": "144", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__ALIGN_END", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@6107@macro@__ALIGN_BEGIN", + "What": "MacroDef", + "defdec": "Def", + "display": "__ALIGN_BEGIN", + "location": { + "column": "15", + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__ALIGN_BEGIN", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@6966@macro@__RAM_FUNC", + "What": "MacroDef", + "defdec": "Def", + "display": "__RAM_FUNC", + "location": { + "column": "9", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__RAM_FUNC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_def.h@7613@macro@__NOINLINE", + "What": "MacroDef", + "defdec": "Def", + "display": "__NOINLINE", + "location": { + "column": "9", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_def.h" + }, + "name": "__NOINLINE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@816@macro@STM32L4xx_HAL_DAC_EX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_DAC_EX_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "STM32L4xx_HAL_DAC_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@1532@macro@DAC_LFSRUNMASK_BIT0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BIT0", + "location": { + "column": "9", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BIT0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@1707@macro@DAC_LFSRUNMASK_BITS1_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS1_0", + "location": { + "column": "9", + "line": "56", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS1_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@1886@macro@DAC_LFSRUNMASK_BITS2_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS2_0", + "location": { + "column": "9", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS2_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2065@macro@DAC_LFSRUNMASK_BITS3_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS3_0", + "location": { + "column": "9", + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS3_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2244@macro@DAC_LFSRUNMASK_BITS4_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS4_0", + "location": { + "column": "9", + "line": "59", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS4_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2423@macro@DAC_LFSRUNMASK_BITS5_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS5_0", + "location": { + "column": "9", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS5_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2602@macro@DAC_LFSRUNMASK_BITS6_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS6_0", + "location": { + "column": "9", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS6_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2781@macro@DAC_LFSRUNMASK_BITS7_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS7_0", + "location": { + "column": "9", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS7_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@2960@macro@DAC_LFSRUNMASK_BITS8_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS8_0", + "location": { + "column": "9", + "line": "63", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS8_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3139@macro@DAC_LFSRUNMASK_BITS9_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS9_0", + "location": { + "column": "9", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS9_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3318@macro@DAC_LFSRUNMASK_BITS10_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS10_0", + "location": { + "column": "9", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS10_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3498@macro@DAC_LFSRUNMASK_BITS11_0", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_LFSRUNMASK_BITS11_0", + "location": { + "column": "9", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_LFSRUNMASK_BITS11_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3678@macro@DAC_TRIANGLEAMPLITUDE_1", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_1", + "location": { + "column": "9", + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3833@macro@DAC_TRIANGLEAMPLITUDE_3", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_3", + "location": { + "column": "9", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@3988@macro@DAC_TRIANGLEAMPLITUDE_7", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_7", + "location": { + "column": "9", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4143@macro@DAC_TRIANGLEAMPLITUDE_15", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_15", + "location": { + "column": "9", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_15", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4299@macro@DAC_TRIANGLEAMPLITUDE_31", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_31", + "location": { + "column": "9", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_31", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4455@macro@DAC_TRIANGLEAMPLITUDE_63", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_63", + "location": { + "column": "9", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_63", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4611@macro@DAC_TRIANGLEAMPLITUDE_127", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_127", + "location": { + "column": "9", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_127", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4768@macro@DAC_TRIANGLEAMPLITUDE_255", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_255", + "location": { + "column": "9", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_255", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@4925@macro@DAC_TRIANGLEAMPLITUDE_511", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_511", + "location": { + "column": "9", + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_511", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@5082@macro@DAC_TRIANGLEAMPLITUDE_1023", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_1023", + "location": { + "column": "9", + "line": "76", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_1023", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@5240@macro@DAC_TRIANGLEAMPLITUDE_2047", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_2047", + "location": { + "column": "9", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_2047", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@5398@macro@DAC_TRIANGLEAMPLITUDE_4095", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_TRIANGLEAMPLITUDE_4095", + "location": { + "column": "9", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_TRIANGLEAMPLITUDE_4095", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@5968@macro@IS_DAC_TRIGGER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_TRIGGER", + "location": { + "column": "9", + "line": "97", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_TRIGGER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@9593@macro@IS_DAC_SAMPLETIME", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_SAMPLETIME", + "location": { + "column": "9", + "line": "146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_SAMPLETIME", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@9652@macro@IS_DAC_HOLDTIME", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_HOLDTIME", + "location": { + "column": "9", + "line": "148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_HOLDTIME", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@9711@macro@IS_DAC_SAMPLEANDHOLD", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_SAMPLEANDHOLD", + "location": { + "column": "9", + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_SAMPLEANDHOLD", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@9868@macro@IS_DAC_TRIMMINGVALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_TRIMMINGVALUE", + "location": { + "column": "9", + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_TRIMMINGVALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@9942@macro@IS_DAC_NEWTRIMMINGVALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_NEWTRIMMINGVALUE", + "location": { + "column": "9", + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_NEWTRIMMINGVALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@10019@macro@IS_DAC_CHIP_CONNECTION", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_CHIP_CONNECTION", + "location": { + "column": "9", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_CHIP_CONNECTION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@10188@macro@IS_DAC_TRIMMING", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_TRIMMING", + "location": { + "column": "9", + "line": "160", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_TRIMMING", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dac_ex.h@10341@macro@IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", + "location": { + "column": "9", + "line": "163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_TriangleWaveGenerate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_TriangleWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_TriangleWaveGenerate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_TriangleWaveGenerate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_TriangleWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_TriangleWaveGenerate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_NoiseWaveGenerate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_NoiseWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_NoiseWaveGenerate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_NoiseWaveGenerate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_NoiseWaveGenerate(DAC_HandleTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_NoiseWaveGenerate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DualSetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_DualSetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DualSetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DualSetValue", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_DualSetValue(DAC_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DualSetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DualGetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DACEx_DualGetValue(DAC_HandleTypeDef *)", + "location": { + "column": "10", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DualGetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DualGetValue", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DACEx_DualGetValue(DAC_HandleTypeDef *)", + "location": { + "column": "10", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DualGetValue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ConvCpltCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ConvCpltCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ConvCpltCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ConvCpltCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ConvHalfCpltCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ConvHalfCpltCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ConvHalfCpltCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ConvHalfCpltCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ErrorCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ErrorCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_ErrorCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_ErrorCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DMAUnderrunCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_DMAUnderrunCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DMAUnderrunCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_DMAUnderrunCallbackCh2", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_DACEx_DMAUnderrunCallbackCh2(DAC_HandleTypeDef *)", + "location": { + "column": "6", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_DMAUnderrunCallbackCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_SelfCalibrate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_SelfCalibrate(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_SelfCalibrate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_SelfCalibrate", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_SelfCalibrate(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_SelfCalibrate", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_SetUserTrimming", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_SetUserTrimming(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_SetUserTrimming", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_SetUserTrimming", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_DACEx_SetUserTrimming(DAC_HandleTypeDef *, DAC_ChannelConfTypeDef *, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_SetUserTrimming", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_GetTrimOffset", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DACEx_GetTrimOffset(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_GetTrimOffset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_DACEx_GetTrimOffset", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_DACEx_GetTrimOffset(DAC_HandleTypeDef *, uint32_t)", + "location": { + "column": "10", + "line": "241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "HAL_DACEx_GetTrimOffset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAConvCpltCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAConvCpltCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "262", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAConvCpltCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAConvCpltCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAConvCpltCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "262", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAConvCpltCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAErrorCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAErrorCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "263", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAErrorCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAErrorCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAErrorCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "263", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAErrorCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAHalfConvCpltCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAHalfConvCpltCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAHalfConvCpltCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@DAC_DMAHalfConvCpltCh2", + "What": "Function", + "defdec": "Dec", + "display": "void DAC_DMAHalfConvCpltCh2(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "264", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_dac_ex.h" + }, + "name": "DAC_DMAHalfConvCpltCh2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:string.h@100@macro@_STRING", + "What": "MacroDef", + "defdec": "Def", + "display": "_STRING", + "location": { + "column": "9", + "line": "4", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "_STRING", "origin": "system_include", "scope": null }, { - "ID": "c:ysizet.h@T@__data_size_t", - "What": "Typedef", + "ID": "c:string.h@344@macro@NULL", + "What": "MacroDef", "defdec": "Def", - "display": "unsigned int", + "display": "NULL", "location": { - "column": "1", - "line": "23", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + "column": "11", + "line": "20", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" }, - "name": "__data_size_t", + "name": "NULL", "origin": "system_include", "scope": null }, + { + "ID": "c:@F@memcmp", + "What": "Function", + "defdec": "Dec", + "display": "int memcmp(const void *, const void *, size_t)", + "location": { + "column": "45", + "line": "38", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "memcmp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@memcpy", + "What": "Function", + "defdec": "Dec", + "display": "void * memcpy(void *restrict, const void *restrict, size_t)", + "location": { + "column": "45", + "line": "40", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "memcpy", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@memmove", + "What": "Function", + "defdec": "Dec", + "display": "void * memmove(void *, const void *, size_t)", + "location": { + "column": "45", + "line": "43", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "memmove", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@memset", + "What": "Function", + "defdec": "Dec", + "display": "void * memset(void *, int, size_t)", + "location": { + "column": "45", + "line": "45", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "memset", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcat", + "What": "Function", + "defdec": "Dec", + "display": "char * strcat(char *restrict, const char *restrict)", + "location": { + "column": "45", + "line": "46", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcat", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcmp", + "What": "Function", + "defdec": "Dec", + "display": "int strcmp(const char *, const char *)", + "location": { + "column": "45", + "line": "48", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcmp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcoll", + "What": "Function", + "defdec": "Dec", + "display": "int strcoll(const char *, const char *)", + "location": { + "column": "45", + "line": "49", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcoll", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcpy", + "What": "Function", + "defdec": "Dec", + "display": "char * strcpy(char *restrict, const char *restrict)", + "location": { + "column": "45", + "line": "50", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcpy", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcspn", + "What": "Function", + "defdec": "Dec", + "display": "size_t strcspn(const char *, const char *)", + "location": { + "column": "45", + "line": "52", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcspn", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strerror", + "What": "Function", + "defdec": "Dec", + "display": "char * strerror(int)", + "location": { + "column": "45", + "line": "53", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strerror", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strlen", + "What": "Function", + "defdec": "Dec", + "display": "size_t strlen(const char *)", + "location": { + "column": "45", + "line": "54", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strlen", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strncat", + "What": "Function", + "defdec": "Dec", + "display": "char * strncat(char *restrict, const char *restrict, size_t)", + "location": { + "column": "45", + "line": "55", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strncat", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strncmp", + "What": "Function", + "defdec": "Dec", + "display": "int strncmp(const char *, const char *, size_t)", + "location": { + "column": "45", + "line": "58", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strncmp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strncpy", + "What": "Function", + "defdec": "Dec", + "display": "char * strncpy(char *restrict, const char *restrict, size_t)", + "location": { + "column": "45", + "line": "60", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strncpy", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strspn", + "What": "Function", + "defdec": "Dec", + "display": "size_t strspn(const char *, const char *)", + "location": { + "column": "45", + "line": "63", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strspn", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strtok", + "What": "Function", + "defdec": "Dec", + "display": "char * strtok(char *restrict, const char *restrict)", + "location": { + "column": "45", + "line": "64", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strtok", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strxfrm", + "What": "Function", + "defdec": "Dec", + "display": "size_t strxfrm(char *restrict, const char *restrict, size_t)", + "location": { + "column": "45", + "line": "66", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strxfrm", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strdup", + "What": "Function", + "defdec": "Dec", + "display": "char * strdup(const char *)", + "location": { + "column": "45", + "line": "70", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strdup", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strcasecmp", + "What": "Function", + "defdec": "Dec", + "display": "int strcasecmp(const char *, const char *)", + "location": { + "column": "45", + "line": "71", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strcasecmp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strncasecmp", + "What": "Function", + "defdec": "Dec", + "display": "int strncasecmp(const char *, const char *, size_t)", + "location": { + "column": "45", + "line": "73", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strncasecmp", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strtok_r", + "What": "Function", + "defdec": "Dec", + "display": "char * strtok_r(char *, const char *, char **)", + "location": { + "column": "45", + "line": "75", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strtok_r", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strnlen", + "What": "Function", + "defdec": "Dec", + "display": "size_t strnlen(const char *, size_t)", + "location": { + "column": "45", + "line": "77", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strnlen", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@memchr", + "What": "Function", + "defdec": "Dec", + "display": "void * memchr(const void *, int, size_t)", + "location": { + "column": "37", + "line": "171", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "memchr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strchr", + "What": "Function", + "defdec": "Dec", + "display": "char * strchr(const char *, int)", + "location": { + "column": "37", + "line": "172", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strchr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strpbrk", + "What": "Function", + "defdec": "Dec", + "display": "char * strpbrk(const char *, const char *)", + "location": { + "column": "37", + "line": "173", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strpbrk", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strrchr", + "What": "Function", + "defdec": "Dec", + "display": "char * strrchr(const char *, int)", + "location": { + "column": "37", + "line": "174", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strrchr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@strstr", + "What": "Function", + "defdec": "Dec", + "display": "char * strstr(const char *, const char *)", + "location": { + "column": "37", + "line": "175", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\string.h" + }, + "name": "strstr", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@981@macro@STM32L4xx_HAL_CONF_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_CONF_H", + "location": { + "column": "9", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "STM32L4xx_HAL_CONF_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@1386@macro@HAL_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_MODULE_ENABLED", + "location": { + "column": "9", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@1414@macro@HAL_ADC_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_ADC_MODULE_ENABLED", + "location": { + "column": "9", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_ADC_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@1644@macro@HAL_DAC_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DAC_MODULE_ENABLED", + "location": { + "column": "9", + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_DAC_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@2999@macro@HAL_TIM_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_TIM_MODULE_ENABLED", + "location": { + "column": "9", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_TIM_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3070@macro@HAL_UART_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_UART_MODULE_ENABLED", + "location": { + "column": "9", + "line": "81", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_UART_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3264@macro@HAL_GPIO_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_GPIO_MODULE_ENABLED", + "location": { + "column": "9", + "line": "86", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_GPIO_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3297@macro@HAL_EXTI_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_EXTI_MODULE_ENABLED", + "location": { + "column": "9", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_EXTI_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3330@macro@HAL_I2C_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_I2C_MODULE_ENABLED", + "location": { + "column": "9", + "line": "88", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_I2C_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3362@macro@HAL_DMA_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_DMA_MODULE_ENABLED", + "location": { + "column": "9", + "line": "89", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_DMA_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3394@macro@HAL_RCC_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_RCC_MODULE_ENABLED", + "location": { + "column": "9", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_RCC_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3426@macro@HAL_FLASH_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_FLASH_MODULE_ENABLED", + "location": { + "column": "9", + "line": "91", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_FLASH_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3460@macro@HAL_PWR_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_PWR_MODULE_ENABLED", + "location": { + "column": "9", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_PWR_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3492@macro@HAL_CORTEX_MODULE_ENABLED", + "What": "MacroDef", + "defdec": "Def", + "display": "HAL_CORTEX_MODULE_ENABLED", + "location": { + "column": "9", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HAL_CORTEX_MODULE_ENABLED", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@3916@macro@HSE_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSE_VALUE", + "location": { + "column": "11", + "line": "102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HSE_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@4071@macro@HSE_STARTUP_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "HSE_STARTUP_TIMEOUT", + "location": { + "column": "11", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HSE_STARTUP_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@4374@macro@MSI_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "MSI_VALUE", + "location": { + "column": "11", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "MSI_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@4752@macro@HSI_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSI_VALUE", + "location": { + "column": "11", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HSI_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@5336@macro@HSI48_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSI48_VALUE", + "location": { + "column": "10", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "HSI48_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@5699@macro@LSI_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "LSI_VALUE", + "location": { + "column": "10", + "line": "141", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "LSI_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@6224@macro@LSE_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "LSE_VALUE", + "location": { + "column": "11", + "line": "151", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "LSE_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@6364@macro@LSE_STARTUP_TIMEOUT", + "What": "MacroDef", + "defdec": "Def", + "display": "LSE_STARTUP_TIMEOUT", + "location": { + "column": "11", + "line": "155", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "LSE_STARTUP_TIMEOUT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@6707@macro@EXTERNAL_SAI1_CLOCK_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTERNAL_SAI1_CLOCK_VALUE", + "location": { + "column": "11", + "line": "164", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "EXTERNAL_SAI1_CLOCK_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7075@macro@EXTERNAL_SAI2_CLOCK_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "EXTERNAL_SAI2_CLOCK_VALUE", + "location": { + "column": "11", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "EXTERNAL_SAI2_CLOCK_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7531@macro@VDD_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "VDD_VALUE", + "location": { + "column": "10", + "line": "184", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "VDD_VALUE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7590@macro@TICK_INT_PRIORITY", + "What": "MacroDef", + "defdec": "Def", + "display": "TICK_INT_PRIORITY", + "location": { + "column": "10", + "line": "185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "TICK_INT_PRIORITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7668@macro@USE_RTOS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_RTOS", + "location": { + "column": "10", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_RTOS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7710@macro@PREFETCH_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "PREFETCH_ENABLE", + "location": { + "column": "10", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "PREFETCH_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7752@macro@INSTRUCTION_CACHE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "INSTRUCTION_CACHE_ENABLE", + "location": { + "column": "10", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "INSTRUCTION_CACHE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@7794@macro@DATA_CACHE_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "DATA_CACHE_ENABLE", + "location": { + "column": "10", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "DATA_CACHE_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8694@macro@USE_HAL_ADC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_ADC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_ADC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8744@macro@USE_HAL_CAN_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_CAN_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "209", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_CAN_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8794@macro@USE_HAL_COMP_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_COMP_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_COMP_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8844@macro@USE_HAL_CRYP_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_CRYP_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_CRYP_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8894@macro@USE_HAL_DAC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_DAC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_DAC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8944@macro@USE_HAL_DCMI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_DCMI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_DCMI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@8994@macro@USE_HAL_DFSDM_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_DFSDM_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "214", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_DFSDM_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9044@macro@USE_HAL_DMA2D_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_DMA2D_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "215", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_DMA2D_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9094@macro@USE_HAL_DSI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_DSI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "216", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_DSI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9144@macro@USE_HAL_GFXMMU_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_GFXMMU_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "217", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_GFXMMU_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9194@macro@USE_HAL_HASH_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_HASH_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "218", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_HASH_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9244@macro@USE_HAL_HCD_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_HCD_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "219", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_HCD_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9294@macro@USE_HAL_I2C_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_I2C_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "220", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_I2C_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9344@macro@USE_HAL_IRDA_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_IRDA_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_IRDA_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9394@macro@USE_HAL_LPTIM_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_LPTIM_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_LPTIM_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9444@macro@USE_HAL_LTDC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_LTDC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_LTDC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9494@macro@USE_HAL_MMC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_MMC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_MMC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9544@macro@USE_HAL_OPAMP_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_OPAMP_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_OPAMP_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9594@macro@USE_HAL_OSPI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_OSPI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_OSPI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9644@macro@USE_HAL_PCD_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_PCD_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "227", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_PCD_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9694@macro@USE_HAL_QSPI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_QSPI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "228", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_QSPI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9744@macro@USE_HAL_RNG_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_RNG_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "229", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_RNG_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9794@macro@USE_HAL_RTC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_RTC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "230", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_RTC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9844@macro@USE_HAL_SAI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SAI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "231", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SAI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9894@macro@USE_HAL_SD_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SD_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "232", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SD_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9944@macro@USE_HAL_SMARTCARD_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SMARTCARD_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "233", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SMARTCARD_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@9994@macro@USE_HAL_SMBUS_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SMBUS_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SMBUS_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10044@macro@USE_HAL_SPI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SPI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SPI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10094@macro@USE_HAL_SWPMI_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_SWPMI_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_SWPMI_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10144@macro@USE_HAL_TIM_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_TIM_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_TIM_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10194@macro@USE_HAL_TSC_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_TSC_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_TSC_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10244@macro@USE_HAL_UART_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_UART_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_UART_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10294@macro@USE_HAL_USART_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_USART_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_USART_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10344@macro@USE_HAL_WWDG_REGISTER_CALLBACKS", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_HAL_WWDG_REGISTER_CALLBACKS", + "location": { + "column": "9", + "line": "241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_HAL_WWDG_REGISTER_CALLBACKS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@10649@macro@USE_SPI_CRC", + "What": "MacroDef", + "defdec": "Def", + "display": "USE_SPI_CRC", + "location": { + "column": "9", + "line": "250", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "USE_SPI_CRC", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_conf.h@16998@macro@assert_param", + "What": "MacroDef", + "defdec": "Def", + "display": "assert_param", + "location": { + "column": "11", + "line": "475", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\stm32l4xx_hal_conf.h" + }, + "name": "assert_param", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@810@macro@STM32L4xx_HAL_CORTEX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_CORTEX_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "STM32L4xx_HAL_CORTEX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "members": [ + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Enable", + "What": "FieldDecl", + "defdec": "Def", + "display": "Enable", + "location": { + "column": "26", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "Enable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Number", + "What": "FieldDecl", + "defdec": "Def", + "display": "Number", + "location": { + "column": "26", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "Number", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@BaseAddress", + "What": "FieldDecl", + "defdec": "Def", + "display": "BaseAddress", + "location": { + "column": "26", + "line": "55", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "BaseAddress", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@Size", + "What": "FieldDecl", + "defdec": "Def", + "display": "Size", + "location": { + "column": "26", + "line": "56", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "Size", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@SubRegionDisable", + "What": "FieldDecl", + "defdec": "Def", + "display": "SubRegionDisable", + "location": { + "column": "26", + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "SubRegionDisable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@TypeExtField", + "What": "FieldDecl", + "defdec": "Def", + "display": "TypeExtField", + "location": { + "column": "26", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "TypeExtField", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@AccessPermission", + "What": "FieldDecl", + "defdec": "Def", + "display": "AccessPermission", + "location": { + "column": "26", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "AccessPermission", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@DisableExec", + "What": "FieldDecl", + "defdec": "Def", + "display": "DisableExec", + "location": { + "column": "26", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "DisableExec", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsShareable", + "What": "FieldDecl", + "defdec": "Def", + "display": "IsShareable", + "location": { + "column": "26", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IsShareable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsCacheable", + "What": "FieldDecl", + "defdec": "Def", + "display": "IsCacheable", + "location": { + "column": "26", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IsCacheable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@SA@MPU_Region_InitTypeDef@FI@IsBufferable", + "What": "FieldDecl", + "defdec": "Def", + "display": "IsBufferable", + "location": { + "column": "26", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IsBufferable", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + }, + { + "ID": "c:@T@MPU_Region_InitTypeDef", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct MPU_Region_InitTypeDef", + "location": { + "column": "2", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_Region_InitTypeDef", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_cortex_h_49_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@4404@macro@NVIC_PRIORITYGROUP_0", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_PRIORITYGROUP_0", + "location": { + "column": "9", + "line": "91", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "NVIC_PRIORITYGROUP_0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@4595@macro@NVIC_PRIORITYGROUP_1", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_PRIORITYGROUP_1", + "location": { + "column": "9", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "NVIC_PRIORITYGROUP_1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@4786@macro@NVIC_PRIORITYGROUP_2", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_PRIORITYGROUP_2", + "location": { + "column": "9", + "line": "95", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "NVIC_PRIORITYGROUP_2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@4977@macro@NVIC_PRIORITYGROUP_3", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_PRIORITYGROUP_3", + "location": { + "column": "9", + "line": "97", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "NVIC_PRIORITYGROUP_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5168@macro@NVIC_PRIORITYGROUP_4", + "What": "MacroDef", + "defdec": "Def", + "display": "NVIC_PRIORITYGROUP_4", + "location": { + "column": "9", + "line": "99", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "NVIC_PRIORITYGROUP_4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5465@macro@SYSTICK_CLKSOURCE_HCLK_DIV8", + "What": "MacroDef", + "defdec": "Def", + "display": "SYSTICK_CLKSOURCE_HCLK_DIV8", + "location": { + "column": "9", + "line": "108", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "SYSTICK_CLKSOURCE_HCLK_DIV8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5520@macro@SYSTICK_CLKSOURCE_HCLK", + "What": "MacroDef", + "defdec": "Def", + "display": "SYSTICK_CLKSOURCE_HCLK", + "location": { + "column": "9", + "line": "109", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "SYSTICK_CLKSOURCE_HCLK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5734@macro@MPU_HFNMI_PRIVDEF_NONE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_HFNMI_PRIVDEF_NONE", + "location": { + "column": "10", + "line": "119", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_HFNMI_PRIVDEF_NONE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5789@macro@MPU_HARDFAULT_NMI", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_HARDFAULT_NMI", + "location": { + "column": "10", + "line": "120", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_HARDFAULT_NMI", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5856@macro@MPU_PRIVILEGED_DEFAULT", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_PRIVILEGED_DEFAULT", + "location": { + "column": "10", + "line": "121", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_PRIVILEGED_DEFAULT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@5925@macro@MPU_HFNMI_PRIVDEF", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_HFNMI_PRIVDEF", + "location": { + "column": "10", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_HFNMI_PRIVDEF", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6118@macro@MPU_REGION_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_ENABLE", + "location": { + "column": "10", + "line": "130", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6172@macro@MPU_REGION_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_DISABLE", + "location": { + "column": "10", + "line": "131", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6336@macro@MPU_INSTRUCTION_ACCESS_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_INSTRUCTION_ACCESS_ENABLE", + "location": { + "column": "10", + "line": "139", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_INSTRUCTION_ACCESS_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6397@macro@MPU_INSTRUCTION_ACCESS_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_INSTRUCTION_ACCESS_DISABLE", + "location": { + "column": "10", + "line": "140", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_INSTRUCTION_ACCESS_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6576@macro@MPU_ACCESS_SHAREABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_SHAREABLE", + "location": { + "column": "10", + "line": "148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_SHAREABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6630@macro@MPU_ACCESS_NOT_SHAREABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_NOT_SHAREABLE", + "location": { + "column": "10", + "line": "149", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_NOT_SHAREABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6802@macro@MPU_ACCESS_CACHEABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_CACHEABLE", + "location": { + "column": "10", + "line": "157", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_CACHEABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@6856@macro@MPU_ACCESS_NOT_CACHEABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_NOT_CACHEABLE", + "location": { + "column": "10", + "line": "158", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_NOT_CACHEABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7030@macro@MPU_ACCESS_BUFFERABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_BUFFERABLE", + "location": { + "column": "10", + "line": "166", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_BUFFERABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7084@macro@MPU_ACCESS_NOT_BUFFERABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_ACCESS_NOT_BUFFERABLE", + "location": { + "column": "10", + "line": "167", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_ACCESS_NOT_BUFFERABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7232@macro@MPU_TEX_LEVEL0", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TEX_LEVEL0", + "location": { + "column": "10", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_TEX_LEVEL0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7286@macro@MPU_TEX_LEVEL1", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TEX_LEVEL1", + "location": { + "column": "10", + "line": "176", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_TEX_LEVEL1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7340@macro@MPU_TEX_LEVEL2", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TEX_LEVEL2", + "location": { + "column": "10", + "line": "177", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_TEX_LEVEL2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7394@macro@MPU_TEX_LEVEL4", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_TEX_LEVEL4", + "location": { + "column": "10", + "line": "178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_TEX_LEVEL4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7545@macro@MPU_REGION_SIZE_32B", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_32B", + "location": { + "column": "11", + "line": "186", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_32B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7599@macro@MPU_REGION_SIZE_64B", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_64B", + "location": { + "column": "11", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_64B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7653@macro@MPU_REGION_SIZE_128B", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_128B", + "location": { + "column": "11", + "line": "188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_128B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7707@macro@MPU_REGION_SIZE_256B", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_256B", + "location": { + "column": "11", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_256B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7761@macro@MPU_REGION_SIZE_512B", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_512B", + "location": { + "column": "11", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_512B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7815@macro@MPU_REGION_SIZE_1KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_1KB", + "location": { + "column": "11", + "line": "191", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_1KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7869@macro@MPU_REGION_SIZE_2KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_2KB", + "location": { + "column": "11", + "line": "192", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_2KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7923@macro@MPU_REGION_SIZE_4KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_4KB", + "location": { + "column": "11", + "line": "193", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_4KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@7977@macro@MPU_REGION_SIZE_8KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_8KB", + "location": { + "column": "11", + "line": "194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_8KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8031@macro@MPU_REGION_SIZE_16KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_16KB", + "location": { + "column": "11", + "line": "195", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_16KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8085@macro@MPU_REGION_SIZE_32KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_32KB", + "location": { + "column": "11", + "line": "196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_32KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8139@macro@MPU_REGION_SIZE_64KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_64KB", + "location": { + "column": "11", + "line": "197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_64KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8193@macro@MPU_REGION_SIZE_128KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_128KB", + "location": { + "column": "11", + "line": "198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_128KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8247@macro@MPU_REGION_SIZE_256KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_256KB", + "location": { + "column": "11", + "line": "199", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_256KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8301@macro@MPU_REGION_SIZE_512KB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_512KB", + "location": { + "column": "11", + "line": "200", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_512KB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8355@macro@MPU_REGION_SIZE_1MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_1MB", + "location": { + "column": "11", + "line": "201", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_1MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8409@macro@MPU_REGION_SIZE_2MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_2MB", + "location": { + "column": "11", + "line": "202", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_2MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8463@macro@MPU_REGION_SIZE_4MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_4MB", + "location": { + "column": "11", + "line": "203", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_4MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8517@macro@MPU_REGION_SIZE_8MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_8MB", + "location": { + "column": "11", + "line": "204", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_8MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8571@macro@MPU_REGION_SIZE_16MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_16MB", + "location": { + "column": "11", + "line": "205", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_16MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8625@macro@MPU_REGION_SIZE_32MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_32MB", + "location": { + "column": "11", + "line": "206", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_32MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8679@macro@MPU_REGION_SIZE_64MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_64MB", + "location": { + "column": "11", + "line": "207", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_64MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8733@macro@MPU_REGION_SIZE_128MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_128MB", + "location": { + "column": "11", + "line": "208", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_128MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8787@macro@MPU_REGION_SIZE_256MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_256MB", + "location": { + "column": "11", + "line": "209", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_256MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8841@macro@MPU_REGION_SIZE_512MB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_512MB", + "location": { + "column": "11", + "line": "210", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_512MB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8895@macro@MPU_REGION_SIZE_1GB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_1GB", + "location": { + "column": "11", + "line": "211", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_1GB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@8949@macro@MPU_REGION_SIZE_2GB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_2GB", + "location": { + "column": "11", + "line": "212", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_2GB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9003@macro@MPU_REGION_SIZE_4GB", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_SIZE_4GB", + "location": { + "column": "11", + "line": "213", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_SIZE_4GB", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9187@macro@MPU_REGION_NO_ACCESS", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NO_ACCESS", + "location": { + "column": "10", + "line": "221", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NO_ACCESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9241@macro@MPU_REGION_PRIV_RW", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_PRIV_RW", + "location": { + "column": "10", + "line": "222", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_PRIV_RW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9295@macro@MPU_REGION_PRIV_RW_URO", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_PRIV_RW_URO", + "location": { + "column": "10", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_PRIV_RW_URO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9349@macro@MPU_REGION_FULL_ACCESS", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_FULL_ACCESS", + "location": { + "column": "10", + "line": "224", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_FULL_ACCESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9403@macro@MPU_REGION_PRIV_RO", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_PRIV_RO", + "location": { + "column": "10", + "line": "225", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_PRIV_RO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9457@macro@MPU_REGION_PRIV_RO_URO", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_PRIV_RO_URO", + "location": { + "column": "10", + "line": "226", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_PRIV_RO_URO", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9611@macro@MPU_REGION_NUMBER0", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER0", + "location": { + "column": "10", + "line": "234", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER0", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9665@macro@MPU_REGION_NUMBER1", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER1", + "location": { + "column": "10", + "line": "235", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9719@macro@MPU_REGION_NUMBER2", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER2", + "location": { + "column": "10", + "line": "236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9773@macro@MPU_REGION_NUMBER3", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER3", + "location": { + "column": "10", + "line": "237", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9827@macro@MPU_REGION_NUMBER4", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER4", + "location": { + "column": "10", + "line": "238", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9881@macro@MPU_REGION_NUMBER5", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER5", + "location": { + "column": "10", + "line": "239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER5", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9935@macro@MPU_REGION_NUMBER6", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER6", + "location": { + "column": "10", + "line": "240", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER6", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@9989@macro@MPU_REGION_NUMBER7", + "What": "MacroDef", + "defdec": "Def", + "display": "MPU_REGION_NUMBER7", + "location": { + "column": "10", + "line": "241", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "MPU_REGION_NUMBER7", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", + "location": { + "column": "6", + "line": "270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", + "location": { + "column": "6", + "line": "270", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPriority", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPriority", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "271", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_EnableIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_EnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_EnableIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "272", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_EnableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_DisableIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_DisableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_DisableIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "273", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_DisableIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SystemReset", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SystemReset(void)", + "location": { + "column": "6", + "line": "274", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SystemReset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SystemReset", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SystemReset(void)", + "location": { + "column": "6", + "line": "274", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SystemReset", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Config", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", + "location": { + "column": "10", + "line": "275", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_Config", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Config", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", + "location": { + "column": "10", + "line": "275", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_Config", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", + "location": { + "column": "10", + "line": "286", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", + "location": { + "column": "10", + "line": "286", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPriorityGrouping", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriority", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", + "location": { + "column": "6", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriority", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", + "location": { + "column": "6", + "line": "287", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPriority", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", + "location": { + "column": "10", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", + "location": { + "column": "10", + "line": "288", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "289", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_SetPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_ClearPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "290", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_ClearPendingIRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetActive", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", + "location": { + "column": "10", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetActive", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetActive", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", + "location": { + "column": "10", + "line": "291", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_NVIC_GetActive", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", + "location": { + "column": "6", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_CLKSourceConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", + "location": { + "column": "6", + "line": "292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_CLKSourceConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_IRQHandler(void)", + "location": { + "column": "6", + "line": "293", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_IRQHandler", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_IRQHandler(void)", + "location": { + "column": "6", + "line": "293", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_IRQHandler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_Callback(void)", + "location": { + "column": "6", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Callback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_SYSTICK_Callback(void)", + "location": { + "column": "6", + "line": "294", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_SYSTICK_Callback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Enable", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_Enable(uint32_t)", + "location": { + "column": "6", + "line": "297", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_Enable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Enable", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_Enable(uint32_t)", + "location": { + "column": "6", + "line": "297", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_Enable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Disable", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_Disable(void)", + "location": { + "column": "6", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_Disable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Disable", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_Disable(void)", + "location": { + "column": "6", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_Disable", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_ConfigRegion", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", + "location": { + "column": "6", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_ConfigRegion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_ConfigRegion", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", + "location": { + "column": "6", + "line": "299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "HAL_MPU_ConfigRegion", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@12372@macro@IS_NVIC_PRIORITY_GROUP", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_NVIC_PRIORITY_GROUP", + "location": { + "column": "9", + "line": "316", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_NVIC_PRIORITY_GROUP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@12765@macro@IS_NVIC_PREEMPTION_PRIORITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_NVIC_PREEMPTION_PRIORITY", + "location": { + "column": "9", + "line": "322", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_NVIC_PREEMPTION_PRIORITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@12835@macro@IS_NVIC_SUB_PRIORITY", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_NVIC_SUB_PRIORITY", + "location": { + "column": "9", + "line": "324", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_NVIC_SUB_PRIORITY", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@12905@macro@IS_NVIC_DEVICE_IRQ", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_NVIC_DEVICE_IRQ", + "location": { + "column": "9", + "line": "326", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_NVIC_DEVICE_IRQ", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@12971@macro@IS_SYSTICK_CLK_SOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_SYSTICK_CLK_SOURCE", + "location": { + "column": "9", + "line": "328", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_SYSTICK_CLK_SOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13164@macro@IS_MPU_REGION_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_REGION_ENABLE", + "location": { + "column": "9", + "line": "332", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_REGION_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13311@macro@IS_MPU_INSTRUCTION_ACCESS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_INSTRUCTION_ACCESS", + "location": { + "column": "9", + "line": "335", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_INSTRUCTION_ACCESS", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13492@macro@IS_MPU_ACCESS_SHAREABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_ACCESS_SHAREABLE", + "location": { + "column": "9", + "line": "338", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_ACCESS_SHAREABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13658@macro@IS_MPU_ACCESS_CACHEABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_ACCESS_CACHEABLE", + "location": { + "column": "9", + "line": "341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_ACCESS_CACHEABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13824@macro@IS_MPU_ACCESS_BUFFERABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_ACCESS_BUFFERABLE", + "location": { + "column": "9", + "line": "344", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_ACCESS_BUFFERABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@13993@macro@IS_MPU_TEX_LEVEL", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_TEX_LEVEL", + "location": { + "column": "9", + "line": "347", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_TEX_LEVEL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@14254@macro@IS_MPU_REGION_PERMISSION_ATTRIBUTE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_REGION_PERMISSION_ATTRIBUTE", + "location": { + "column": "9", + "line": "352", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_REGION_PERMISSION_ATTRIBUTE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@14798@macro@IS_MPU_REGION_NUMBER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_REGION_NUMBER", + "location": { + "column": "9", + "line": "359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_REGION_NUMBER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@15436@macro@IS_MPU_REGION_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_REGION_SIZE", + "location": { + "column": "9", + "line": "368", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_REGION_SIZE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.h@17588@macro@IS_MPU_SUB_REGION_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_MPU_SUB_REGION_DISABLE", + "location": { + "column": "9", + "line": "397", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_cortex.h" + }, + "name": "IS_MPU_SUB_REGION_DISABLE", + "origin": "user_include", + "scope": null + }, { "ID": "c:stm32l4xx_hal_pwr.h@801@macro@STM32L4xx_HAL_PWR_H", "What": "MacroDef", @@ -328213,6 +327075,1562 @@ "origin": "user_include", "scope": null }, + { + "ID": "c:@g_stConfigInfo", + "What": "Variable", + "defdec": "Def", + "display": "g_stConfigInfo", + "location": { + "column": "13", + "line": "6", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "g_stConfigInfo", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@InFlash_Erase_Pages", + "What": "Function", + "defdec": "Def", + "display": "void InFlash_Erase_Pages(u_int16_t, u_int16_t)", + "location": { + "column": "6", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "InFlash_Erase_Pages", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@626@F@InFlash_Erase_Pages@EraseInitStruct", + "What": "Variable", + "defdec": "Def", + "display": "EraseInitStruct", + "location": { + "column": "28", + "line": "24", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "EraseInitStruct", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@671@F@InFlash_Erase_Pages@PAGEError", + "What": "Variable", + "defdec": "Def", + "display": "PAGEError", + "location": { + "column": "15", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "PAGEError", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@938@F@InFlash_Erase_Pages@p", + "What": "Variable", + "defdec": "Def", + "display": "p", + "location": { + "column": "5", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "p", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@InFlash_Write", + "What": "Function", + "defdec": "Def", + "display": "void InFlash_Write(u_int32_t, u_int64_t *, u_int32_t)", + "location": { + "column": "6", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "InFlash_Write", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@1130@F@InFlash_Write@i", + "What": "Variable", + "defdec": "Def", + "display": "i", + "location": { + "column": "11", + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "i", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@save_config_info", + "What": "Function", + "defdec": "Def", + "display": "void save_config_info(config_info)", + "location": { + "column": "6", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "save_config_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@read_config_info", + "What": "Function", + "defdec": "Def", + "display": "BOOL read_config_info(void)", + "location": { + "column": "6", + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "read_config_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@1937@F@read_config_info@temp_config_info", + "What": "Variable", + "defdec": "Def", + "display": "temp_config_info", + "location": { + "column": "18", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "temp_config_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@delete_config_info", + "What": "Function", + "defdec": "Def", + "display": "void delete_config_info(void)", + "location": { + "column": "6", + "line": "96", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "delete_config_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:inflash.c@2841@F@delete_config_info@delete_config_info", + "What": "Variable", + "defdec": "Def", + "display": "delete_config_info", + "location": { + "column": "19", + "line": "98", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\App\\Src\\inflash.c" + }, + "name": "delete_config_info", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:DLib_Product.h@75@macro@_DLIB_PRODUCTS_H_", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCTS_H_", + "location": { + "column": "9", + "line": "4", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_PRODUCTS_H_", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@524@macro@_DLIB_WIDE_CHARACTERS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_WIDE_CHARACTERS", + "location": { + "column": "9", + "line": "21", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_WIDE_CHARACTERS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@680@macro@_DLIB_PRODUCT_STRING", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCT_STRING", + "location": { + "column": "9", + "line": "25", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_PRODUCT_STRING", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@831@macro@_DLIB_PRODUCT_FENV", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCT_FENV", + "location": { + "column": "9", + "line": "29", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_PRODUCT_FENV", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@984@macro@_DLIB_PRODUCT_STDLIB", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCT_STDLIB", + "location": { + "column": "9", + "line": "33", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_PRODUCT_STDLIB", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@1095@macro@_DLIB_QSORT_BUF_SIZE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_QSORT_BUF_SIZE", + "location": { + "column": "9", + "line": "37", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_QSORT_BUF_SIZE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@1270@macro@_DLIB_SUPPORT_FOR_AEABI", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_SUPPORT_FOR_AEABI", + "location": { + "column": "9", + "line": "46", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_SUPPORT_FOR_AEABI", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@1353@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "location": { + "column": "9", + "line": "49", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@1833@macro@_USE_ATOMIC_OPS", + "What": "MacroDef", + "defdec": "Def", + "display": "_USE_ATOMIC_OPS", + "location": { + "column": "11", + "line": "65", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_USE_ATOMIC_OPS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@1992@macro@__SOFTFP", + "What": "MacroDef", + "defdec": "Def", + "display": "__SOFTFP", + "location": { + "column": "11", + "line": "70", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "__SOFTFP", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2116@macro@__NO_SCRATCH", + "What": "MacroDef", + "defdec": "Def", + "display": "__NO_SCRATCH", + "location": { + "column": "9", + "line": "74", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "__NO_SCRATCH", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2240@macro@_DLIB_SPEEDY_FLOATS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_SPEEDY_FLOATS", + "location": { + "column": "9", + "line": "77", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_SPEEDY_FLOATS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2301@macro@_DLIB_TIME_USES_64_DEFAULT", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_TIME_USES_64_DEFAULT", + "location": { + "column": "9", + "line": "80", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_TIME_USES_64_DEFAULT", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2414@macro@_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", + "location": { + "column": "11", + "line": "84", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2498@macro@_DLIB_ELF_INIT_STATIC_BASE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_STATIC_BASE", + "location": { + "column": "11", + "line": "85", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_STATIC_BASE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2545@macro@_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", + "location": { + "column": "11", + "line": "86", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2905@macro@_DLIB_ELF_INIT_TABLE_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_TABLE_MEMORY", + "location": { + "column": "9", + "line": "96", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_TABLE_MEMORY", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@2955@macro@_DLIB_ELF_INIT_SOURCE_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_SOURCE_MEMORY", + "location": { + "column": "9", + "line": "97", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_SOURCE_MEMORY", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3005@macro@_DLIB_ELF_INIT_DESTINATION_MEMORY", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_DESTINATION_MEMORY", + "location": { + "column": "9", + "line": "98", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_DESTINATION_MEMORY", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3153@macro@_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", + "location": { + "column": "11", + "line": "103", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3214@macro@_DLIB_ELF_INIT_REGION_COUNT_TYPE", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", + "location": { + "column": "9", + "line": "105", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3266@macro@_DLIB_ELF_INIT_MODULE_ATTRIBUTES", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", + "location": { + "column": "9", + "line": "106", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3458@macro@_DLIB_ELF_INIT_INTERFACE_VERSION", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_ELF_INIT_INTERFACE_VERSION", + "location": { + "column": "9", + "line": "110", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_ELF_INIT_INTERFACE_VERSION", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3504@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "location": { + "column": "9", + "line": "112", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3556@macro@_XMATHWRAPPERS_DEF", + "What": "MacroDef", + "defdec": "Def", + "display": "_XMATHWRAPPERS_DEF", + "location": { + "column": "9", + "line": "114", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_XMATHWRAPPERS_DEF", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product.h@3605@macro@_CPPINIT_ATTR", + "What": "MacroDef", + "defdec": "Def", + "display": "_CPPINIT_ATTR", + "location": { + "column": "9", + "line": "116", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product.h" + }, + "name": "_CPPINIT_ATTR", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@819@macro@STM32L4xx_HAL_UART_EX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_UART_EX_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "STM32L4xx_HAL_UART_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@SA@UART_WakeUpTypeDef", + "What": "Struct", + "defdec": "Def", + "display": "", + "location": { + "column": "9", + "line": "46", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "members": [ + { + "ID": "c:@SA@UART_WakeUpTypeDef@FI@WakeUpEvent", + "What": "FieldDecl", + "defdec": "Def", + "display": "WakeUpEvent", + "location": { + "column": "12", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "WakeUpEvent", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" + }, + { + "ID": "c:@SA@UART_WakeUpTypeDef@FI@AddressLength", + "What": "FieldDecl", + "defdec": "Def", + "display": "AddressLength", + "location": { + "column": "12", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "AddressLength", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" + }, + { + "ID": "c:@SA@UART_WakeUpTypeDef@FI@Address", + "What": "FieldDecl", + "defdec": "Def", + "display": "Address", + "location": { + "column": "11", + "line": "56", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "Address", + "origin": "user_include", + "scope": "_anonymous_stm32l4xx_hal_uart_ex_h_46_9" + } + ], + "name": "", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@T@UART_WakeUpTypeDef", + "What": "Typedef", + "defdec": "Def", + "display": "struct UART_WakeUpTypeDef", + "location": { + "column": "3", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_WakeUpTypeDef", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@2283@macro@UART_WORDLENGTH_7B", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_WORDLENGTH_7B", + "location": { + "column": "9", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_WORDLENGTH_7B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@2365@macro@UART_WORDLENGTH_8B", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_WORDLENGTH_8B", + "location": { + "column": "9", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_WORDLENGTH_8B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@2447@macro@UART_WORDLENGTH_9B", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_WORDLENGTH_9B", + "location": { + "column": "9", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_WORDLENGTH_9B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@2637@macro@UART_ADDRESS_DETECT_4B", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_ADDRESS_DETECT_4B", + "location": { + "column": "9", + "line": "81", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_ADDRESS_DETECT_4B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@2726@macro@UART_ADDRESS_DETECT_7B", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_ADDRESS_DETECT_7B", + "location": { + "column": "9", + "line": "82", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_ADDRESS_DETECT_7B", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RS485Ex_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_RS485Ex_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_RS485Ex_Init", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "142", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_RS485Ex_Init", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_WakeupCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *)", + "location": { + "column": "6", + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_WakeupCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_WakeupCallback", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *)", + "location": { + "column": "6", + "line": "153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_WakeupCallback", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_StopModeWakeUpSourceConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *, UART_WakeUpTypeDef)", + "location": { + "column": "19", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_StopModeWakeUpSourceConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_StopModeWakeUpSourceConfig", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *, UART_WakeUpTypeDef)", + "location": { + "column": "19", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_StopModeWakeUpSourceConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_EnableStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_EnableStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_EnableStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_EnableStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_DisableStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_DisableStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_DisableStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_DisableStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_EnableClockStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_EnableClockStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_EnableClockStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_EnableClockStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_DisableClockStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_DisableClockStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_DisableClockStopMode", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *)", + "location": { + "column": "19", + "line": "175", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_DisableClockStopMode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MultiProcessorEx_AddressLength_Set", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_MultiProcessorEx_AddressLength_Set", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_MultiProcessorEx_AddressLength_Set", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "178", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_MultiProcessorEx_AddressLength_Set", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle(UART_HandleTypeDef *, uint8_t *, uint16_t, uint16_t *, uint32_t)", + "location": { + "column": "19", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle(UART_HandleTypeDef *, uint8_t *, uint16_t, uint16_t *, uint32_t)", + "location": { + "column": "19", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_IT(UART_HandleTypeDef *, uint8_t *, uint16_t)", + "location": { + "column": "19", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_IT(UART_HandleTypeDef *, uint8_t *, uint16_t)", + "location": { + "column": "19", + "line": "189", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_DMA(UART_HandleTypeDef *, uint8_t *, uint16_t)", + "location": { + "column": "19", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_UARTEx_ReceiveToIdle_DMA", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_DMA(UART_HandleTypeDef *, uint8_t *, uint16_t)", + "location": { + "column": "19", + "line": "190", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "HAL_UARTEx_ReceiveToIdle_DMA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@16935@macro@UART_GETCLOCKSOURCE", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_GETCLOCKSOURCE", + "location": { + "column": "9", + "line": "350", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_GETCLOCKSOURCE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@35471@macro@UART_MASK_COMPUTATION", + "What": "MacroDef", + "defdec": "Def", + "display": "UART_MASK_COMPUTATION", + "location": { + "column": "9", + "line": "640", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "UART_MASK_COMPUTATION", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@38512@macro@IS_UART_WORD_LENGTH", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_UART_WORD_LENGTH", + "location": { + "column": "9", + "line": "686", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "IS_UART_WORD_LENGTH", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_uart_ex.h@38962@macro@IS_UART_ADDRESSLENGTH_DETECT", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_UART_ADDRESSLENGTH_DETECT", + "location": { + "column": "9", + "line": "695", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_uart_ex.h" + }, + "name": "IS_UART_ADDRESSLENGTH_DETECT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@892@macro@__MAIN_H", + "What": "MacroDef", + "defdec": "Def", + "display": "__MAIN_H", + "location": { + "column": "9", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "__MAIN_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@Error_Handler", + "What": "Function", + "defdec": "Dec", + "display": "void Error_Handler(void)", + "location": { + "column": "6", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "Error_Handler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@Error_Handler", + "What": "Function", + "defdec": "Dec", + "display": "void Error_Handler(void)", + "location": { + "column": "6", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "Error_Handler", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@1873@macro@SYS_WKUP2_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "SYS_WKUP2_Pin", + "location": { + "column": "9", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "SYS_WKUP2_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@1908@macro@SYS_WKUP2_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "SYS_WKUP2_GPIO_Port", + "location": { + "column": "9", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "SYS_WKUP2_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@1943@macro@CN3791_CHRG_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_CHRG_Pin", + "location": { + "column": "9", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_CHRG_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@1980@macro@CN3791_CHRG_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_CHRG_GPIO_Port", + "location": { + "column": "9", + "line": "63", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_CHRG_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2017@macro@WDI_OUT_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "WDI_OUT_Pin", + "location": { + "column": "9", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "WDI_OUT_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2050@macro@WDI_OUT_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "WDI_OUT_GPIO_Port", + "location": { + "column": "9", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "WDI_OUT_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2083@macro@ADC1_CH1_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC1_CH1_Pin", + "location": { + "column": "9", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "ADC1_CH1_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2116@macro@ADC1_CH1_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "ADC1_CH1_GPIO_Port", + "location": { + "column": "9", + "line": "67", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "ADC1_CH1_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2150@macro@DAC_OUT1_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_OUT1_Pin", + "location": { + "column": "9", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "DAC_OUT1_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2183@macro@DAC_OUT1_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "DAC_OUT1_GPIO_Port", + "location": { + "column": "9", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "DAC_OUT1_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2217@macro@RF_PWR_CTRL_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_PWR_CTRL_Pin", + "location": { + "column": "9", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_PWR_CTRL_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2253@macro@RF_PWR_CTRL_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_PWR_CTRL_GPIO_Port", + "location": { + "column": "9", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_PWR_CTRL_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2290@macro@RF_AUX_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_AUX_Pin", + "location": { + "column": "9", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_AUX_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2321@macro@RF_AUX_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_AUX_GPIO_Port", + "location": { + "column": "9", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_AUX_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2353@macro@RF_M1_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_M1_Pin", + "location": { + "column": "9", + "line": "74", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_M1_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2383@macro@RF_M1_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_M1_GPIO_Port", + "location": { + "column": "9", + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_M1_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2414@macro@SENSOR_PWR_CTRL_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "SENSOR_PWR_CTRL_Pin", + "location": { + "column": "9", + "line": "76", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "SENSOR_PWR_CTRL_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2454@macro@SENSOR_PWR_CTRL_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "SENSOR_PWR_CTRL_GPIO_Port", + "location": { + "column": "9", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "SENSOR_PWR_CTRL_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2495@macro@GAIN_SET_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "GAIN_SET_Pin", + "location": { + "column": "9", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "GAIN_SET_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2528@macro@GAIN_SET_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "GAIN_SET_GPIO_Port", + "location": { + "column": "9", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "GAIN_SET_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2562@macro@GPIO_LED_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "GPIO_LED_Pin", + "location": { + "column": "9", + "line": "80", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "GPIO_LED_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2595@macro@GPIO_LED_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "GPIO_LED_GPIO_Port", + "location": { + "column": "9", + "line": "81", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "GPIO_LED_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2629@macro@RF_M0_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_M0_Pin", + "location": { + "column": "9", + "line": "82", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_M0_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2660@macro@RF_M0_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "RF_M0_GPIO_Port", + "location": { + "column": "9", + "line": "83", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "RF_M0_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2691@macro@CN3791_CHRGB8_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_CHRGB8_Pin", + "location": { + "column": "9", + "line": "84", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_CHRGB8_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2729@macro@CN3791_CHRGB8_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_CHRGB8_GPIO_Port", + "location": { + "column": "9", + "line": "85", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_CHRGB8_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2768@macro@CN3791_DONE_Pin", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_DONE_Pin", + "location": { + "column": "9", + "line": "86", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_DONE_Pin", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:main.h@2804@macro@CN3791_DONE_GPIO_Port", + "What": "MacroDef", + "defdec": "Def", + "display": "CN3791_DONE_GPIO_Port", + "location": { + "column": "9", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "CN3791_DONE_GPIO_Port", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@read_uart_flag", + "What": "Variable", + "defdec": "Dec", + "display": "read_uart_flag", + "location": { + "column": "12", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "read_uart_flag", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@read_uart_flag", + "What": "Variable", + "defdec": "Dec", + "display": "read_uart_flag", + "location": { + "column": "12", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "read_uart_flag", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@max_rms_mA", + "What": "Variable", + "defdec": "Dec", + "display": "max_rms_mA", + "location": { + "column": "14", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "max_rms_mA", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@Pulse_Count", + "What": "Variable", + "defdec": "Dec", + "display": "Pulse_Count", + "location": { + "column": "17", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "Pulse_Count", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@Pulse_Count", + "What": "Variable", + "defdec": "Dec", + "display": "Pulse_Count", + "location": { + "column": "17", + "line": "93", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" + }, + "name": "Pulse_Count", + "origin": "user_include", + "scope": null + }, { "ID": "c:e22.h@27@macro@__E22_H__", "What": "MacroDef", @@ -328594,185 +329012,789 @@ "scope": null }, { - "ID": "c:DLib_Product_string.h@269@macro@_DLIB_PRODUCTS_STRING_H_", + "ID": "c:ring_queue.h@32@macro@_RING_QUEUE_H_", "What": "MacroDef", "defdec": "Def", - "display": "_DLIB_PRODUCTS_STRING_H_", + "display": "_RING_QUEUE_H_", "location": { "column": "9", + "line": "2", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "_RING_QUEUE_H_", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@147@macro@RQ_OK", + "What": "MacroDef", + "defdec": "Def", + "display": "RQ_OK", + "location": { + "column": "9", + "line": "7", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RQ_OK", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@164@macro@RQ_ERROR", + "What": "MacroDef", + "defdec": "Def", + "display": "RQ_ERROR", + "location": { + "column": "9", + "line": "8", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RQ_ERROR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@184@macro@RQ_OVERFLOW", + "What": "MacroDef", + "defdec": "Def", + "display": "RQ_OVERFLOW", + "location": { + "column": "9", + "line": "9", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RQ_OVERFLOW", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@T@RQ_ElementType", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned char", + "location": { + "column": "23", + "line": "10", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RQ_ElementType", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_ring_queue", + "What": "Struct", + "defdec": "Def", + "display": "_ring_queue", + "location": { + "column": "16", "line": "12", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" }, - "name": "_DLIB_PRODUCTS_STRING_H_", - "origin": "system_include", + "members": [ + { + "ID": "c:@S@_ring_queue@FI@elems", + "What": "FieldDecl", + "defdec": "Def", + "display": "elems", + "location": { + "column": "18", + "line": "14", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "elems", + "origin": "user_include", + "scope": "_ring_queue" + }, + { + "ID": "c:@S@_ring_queue@FI@size", + "What": "FieldDecl", + "defdec": "Def", + "display": "size", + "location": { + "column": "6", + "line": "15", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "size", + "origin": "user_include", + "scope": "_ring_queue" + }, + { + "ID": "c:@S@_ring_queue@FI@front", + "What": "FieldDecl", + "defdec": "Def", + "display": "front", + "location": { + "column": "15", + "line": "16", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "front", + "origin": "user_include", + "scope": "_ring_queue" + }, + { + "ID": "c:@S@_ring_queue@FI@rear", + "What": "FieldDecl", + "defdec": "Def", + "display": "rear", + "location": { + "column": "22", + "line": "16", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "rear", + "origin": "user_include", + "scope": "_ring_queue" + }, + { + "ID": "c:ring_queue.h@T@RingQueue", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct _ring_queue", + "location": { + "column": "2", + "line": "17", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RingQueue", + "origin": "user_include", + "scope": "_ring_queue" + } + ], + "name": "_ring_queue", + "origin": "user_include", "scope": null }, { - "ID": "c:DLib_Product_string.h@887@macro@_DLIB_STRING_SKIP_INLINE_MEMCHR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMCHR", - "location": { - "column": "11", - "line": "38", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMCHR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@930@macro@_DLIB_STRING_SKIP_INLINE_MEMCMP", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMCMP", - "location": { - "column": "11", - "line": "39", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMCMP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@973@macro@_DLIB_STRING_SKIP_INLINE_STRCHR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_STRCHR", - "location": { - "column": "11", - "line": "40", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_STRCHR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1016@macro@_DLIB_STRING_SKIP_INLINE_STRCMP", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_STRCMP", - "location": { - "column": "11", - "line": "41", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_STRCMP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1059@macro@_DLIB_STRING_SKIP_INLINE_STRLEN", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_STRLEN", - "location": { - "column": "11", - "line": "42", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_STRLEN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1102@macro@_DLIB_STRING_SKIP_INLINE_STRNCPY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_STRNCPY", - "location": { - "column": "11", - "line": "43", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_STRNCPY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1299@macro@_DLIB_STRING_SKIP_INLINE_MEMCPY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMCPY", - "location": { - "column": "11", - "line": "54", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMCPY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memcpy", + "ID": "c:@F@InitRingQueue", "What": "Function", - "defdec": "Def", - "display": "void * memcpy(void *, const void *, size_t)", + "defdec": "Dec", + "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", "location": { - "column": "40", + "column": "5", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "InitRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@InitRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", + "location": { + "column": "5", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "InitRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@508@macro@RingQueueFull", + "What": "MacroDef", + "defdec": "Def", + "display": "RingQueueFull", + "location": { + "column": "9", + "line": "22", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RingQueueFull", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ring_queue.h@576@macro@RingQueueEmpty", + "What": "MacroDef", + "defdec": "Def", + "display": "RingQueueEmpty", + "location": { + "column": "9", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RingQueueEmpty", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ShowRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int ShowRingQueue(RingQueue *)", + "location": { + "column": "5", + "line": "27", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "ShowRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@ShowRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int ShowRingQueue(RingQueue *)", + "location": { + "column": "5", + "line": "27", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "ShowRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@InRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int InRingQueue(RingQueue *, RQ_ElementType)", + "location": { + "column": "5", + "line": "30", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "InRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@InRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int InRingQueue(RingQueue *, RQ_ElementType)", + "location": { + "column": "5", + "line": "30", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "InRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@OutRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", + "location": { + "column": "5", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "OutRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@OutRingQueue", + "What": "Function", + "defdec": "Dec", + "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", + "location": { + "column": "5", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "OutRingQueue", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@RingQueueLength", + "What": "Function", + "defdec": "Dec", + "display": "int RingQueueLength(RingQueue *)", + "location": { + "column": "5", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RingQueueLength", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@RingQueueLength", + "What": "Function", + "defdec": "Dec", + "display": "int RingQueueLength(RingQueue *)", + "location": { + "column": "5", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.h" + }, + "name": "RingQueueLength", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:ysizet.h@111@macro@_YSIZET_H", + "What": "MacroDef", + "defdec": "Def", + "display": "_YSIZET_H", + "location": { + "column": "9", + "line": "5", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "_YSIZET_H", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:ysizet.h@277@macro@_SIZE_T", + "What": "MacroDef", + "defdec": "Def", + "display": "_SIZE_T", + "location": { + "column": "11", + "line": "16", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "_SIZE_T", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:ysizet.h@296@macro@_STD_USING_SIZE_T", + "What": "MacroDef", + "defdec": "Def", + "display": "_STD_USING_SIZE_T", + "location": { + "column": "11", + "line": "17", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "_STD_USING_SIZE_T", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:ysizet.h@T@size_t", + "What": "Typedef", + "defdec": "Def", + "display": "_Sizet", + "location": { + "column": "18", + "line": "18", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "size_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:ysizet.h@359@macro@__DATA_PTR_MEM_HELPER1__", + "What": "MacroDef", + "defdec": "Def", + "display": "__DATA_PTR_MEM_HELPER1__", + "location": { + "column": "9", + "line": "21", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "__DATA_PTR_MEM_HELPER1__", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:ysizet.h@T@__data_size_t", + "What": "Typedef", + "defdec": "Def", + "display": "unsigned int", + "location": { + "column": "1", + "line": "23", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\ysizet.h" + }, + "name": "__data_size_t", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@816@macro@STM32L4xx_HAL_I2C_EX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_I2C_EX_H", + "location": { + "column": "9", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "STM32L4xx_HAL_I2C_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@1431@macro@I2C_ANALOGFILTER_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_ANALOGFILTER_ENABLE", + "location": { + "column": "9", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_ANALOGFILTER_ENABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@1484@macro@I2C_ANALOGFILTER_DISABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_ANALOGFILTER_DISABLE", + "location": { + "column": "9", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_ANALOGFILTER_DISABLE", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@1637@macro@I2C_FMP_NOT_SUPPORTED", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FMP_NOT_SUPPORTED", + "location": { + "column": "9", "line": "56", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" }, - "name": "memcpy", - "origin": "system_include", + "name": "I2C_FMP_NOT_SUPPORTED", + "origin": "user_include", "scope": null }, { - "ID": "c:DLib_Product_string.h@1522@macro@_DLIB_STRING_SKIP_INLINE_MEMMOVE", + "ID": "c:stm32l4xx_hal_i2c_ex.h@1769@macro@I2C_FASTMODEPLUS_PB6", "What": "MacroDef", "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", + "display": "I2C_FASTMODEPLUS_PB6", "location": { - "column": "11", - "line": "62", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + "column": "9", + "line": "57", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", - "origin": "system_include", + "name": "I2C_FASTMODEPLUS_PB6", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@memmove", - "What": "Function", - "defdec": "Def", - "display": "void * memmove(void *, const void *, size_t)", - "location": { - "column": "40", - "line": "64", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "memmove", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1748@macro@_DLIB_STRING_SKIP_INLINE_MEMSET", + "ID": "c:stm32l4xx_hal_i2c_ex.h@1901@macro@I2C_FASTMODEPLUS_PB7", "What": "MacroDef", "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMSET", + "display": "I2C_FASTMODEPLUS_PB7", "location": { - "column": "11", - "line": "70", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + "column": "9", + "line": "58", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMSET", - "origin": "system_include", + "name": "I2C_FASTMODEPLUS_PB7", + "origin": "user_include", "scope": null }, { - "ID": "c:@F@memset", - "What": "Function", + "ID": "c:stm32l4xx_hal_i2c_ex.h@2072@macro@I2C_FASTMODEPLUS_PB8", + "What": "MacroDef", "defdec": "Def", - "display": "void * memset(void *, int, size_t)", + "display": "I2C_FASTMODEPLUS_PB8", "location": { - "column": "37", + "column": "9", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_FASTMODEPLUS_PB8", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@2204@macro@I2C_FASTMODEPLUS_PB9", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FASTMODEPLUS_PB9", + "location": { + "column": "9", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_FASTMODEPLUS_PB9", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@2646@macro@I2C_FASTMODEPLUS_I2C1", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FASTMODEPLUS_I2C1", + "location": { + "column": "9", + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_FASTMODEPLUS_I2C1", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@2814@macro@I2C_FASTMODEPLUS_I2C2", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FASTMODEPLUS_I2C2", + "location": { + "column": "9", + "line": "68", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_FASTMODEPLUS_I2C2", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@3121@macro@I2C_FASTMODEPLUS_I2C3", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FASTMODEPLUS_I2C3", + "location": { + "column": "9", "line": "72", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_string.h" + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" }, - "name": "memset", - "origin": "system_include", + "name": "I2C_FASTMODEPLUS_I2C3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@3428@macro@I2C_FASTMODEPLUS_I2C4", + "What": "MacroDef", + "defdec": "Def", + "display": "I2C_FASTMODEPLUS_I2C4", + "location": { + "column": "9", + "line": "76", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "I2C_FASTMODEPLUS_I2C4", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_ConfigAnalogFilter", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_ConfigAnalogFilter", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_ConfigAnalogFilter", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_ConfigAnalogFilter", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_ConfigDigitalFilter", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_ConfigDigitalFilter", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_ConfigDigitalFilter", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "105", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_ConfigDigitalFilter", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_EnableWakeUp", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *)", + "location": { + "column": "19", + "line": "113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_EnableWakeUp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_EnableWakeUp", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *)", + "location": { + "column": "19", + "line": "113", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_EnableWakeUp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_DisableWakeUp", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *)", + "location": { + "column": "19", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_DisableWakeUp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_DisableWakeUp", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *)", + "location": { + "column": "19", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_DisableWakeUp", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_EnableFastModePlus", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_I2CEx_EnableFastModePlus(uint32_t)", + "location": { + "column": "6", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_EnableFastModePlus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_EnableFastModePlus", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_I2CEx_EnableFastModePlus(uint32_t)", + "location": { + "column": "6", + "line": "122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_EnableFastModePlus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_DisableFastModePlus", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_I2CEx_DisableFastModePlus(uint32_t)", + "location": { + "column": "6", + "line": "123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_DisableFastModePlus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_I2CEx_DisableFastModePlus", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_I2CEx_DisableFastModePlus(uint32_t)", + "location": { + "column": "6", + "line": "123", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "HAL_I2CEx_DisableFastModePlus", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@5233@macro@IS_I2C_ANALOG_FILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_I2C_ANALOG_FILTER", + "location": { + "column": "9", + "line": "145", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "IS_I2C_ANALOG_FILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@5402@macro@IS_I2C_DIGITAL_FILTER", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_I2C_DIGITAL_FILTER", + "location": { + "column": "9", + "line": "148", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "IS_I2C_DIGITAL_FILTER", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_i2c_ex.h@5471@macro@IS_I2C_FASTMODEPLUS", + "What": "MacroDef", + "defdec": "Def", + "display": "IS_I2C_FASTMODEPLUS", + "location": { + "column": "9", + "line": "150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" + }, + "name": "IS_I2C_FASTMODEPLUS", + "origin": "user_include", "scope": null }, { @@ -329335,1070 +330357,6 @@ "origin": "user_include", "scope": null }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@816@macro@STM32L4xx_HAL_I2C_EX_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_I2C_EX_H", - "location": { - "column": "9", - "line": "21", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "STM32L4xx_HAL_I2C_EX_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@1431@macro@I2C_ANALOGFILTER_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ANALOGFILTER_ENABLE", - "location": { - "column": "9", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_ANALOGFILTER_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@1484@macro@I2C_ANALOGFILTER_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ANALOGFILTER_DISABLE", - "location": { - "column": "9", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_ANALOGFILTER_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@1637@macro@I2C_FMP_NOT_SUPPORTED", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FMP_NOT_SUPPORTED", - "location": { - "column": "9", - "line": "56", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FMP_NOT_SUPPORTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@1769@macro@I2C_FASTMODEPLUS_PB6", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_PB6", - "location": { - "column": "9", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_PB6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@1901@macro@I2C_FASTMODEPLUS_PB7", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_PB7", - "location": { - "column": "9", - "line": "58", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_PB7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@2072@macro@I2C_FASTMODEPLUS_PB8", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_PB8", - "location": { - "column": "9", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_PB8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@2204@macro@I2C_FASTMODEPLUS_PB9", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_PB9", - "location": { - "column": "9", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_PB9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@2646@macro@I2C_FASTMODEPLUS_I2C1", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_I2C1", - "location": { - "column": "9", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_I2C1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@2814@macro@I2C_FASTMODEPLUS_I2C2", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_I2C2", - "location": { - "column": "9", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_I2C2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@3121@macro@I2C_FASTMODEPLUS_I2C3", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_I2C3", - "location": { - "column": "9", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_I2C3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@3428@macro@I2C_FASTMODEPLUS_I2C4", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_FASTMODEPLUS_I2C4", - "location": { - "column": "9", - "line": "76", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "I2C_FASTMODEPLUS_I2C4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_ConfigAnalogFilter", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_ConfigAnalogFilter", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_ConfigAnalogFilter", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_ConfigAnalogFilter", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_ConfigDigitalFilter", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_ConfigDigitalFilter", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_ConfigDigitalFilter", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "105", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_ConfigDigitalFilter", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_EnableWakeUp", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *)", - "location": { - "column": "19", - "line": "113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_EnableWakeUp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_EnableWakeUp", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *)", - "location": { - "column": "19", - "line": "113", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_EnableWakeUp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_DisableWakeUp", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *)", - "location": { - "column": "19", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_DisableWakeUp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_DisableWakeUp", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *)", - "location": { - "column": "19", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_DisableWakeUp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_EnableFastModePlus", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_I2CEx_EnableFastModePlus(uint32_t)", - "location": { - "column": "6", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_EnableFastModePlus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_EnableFastModePlus", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_I2CEx_EnableFastModePlus(uint32_t)", - "location": { - "column": "6", - "line": "122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_EnableFastModePlus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_DisableFastModePlus", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_I2CEx_DisableFastModePlus(uint32_t)", - "location": { - "column": "6", - "line": "123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_DisableFastModePlus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_I2CEx_DisableFastModePlus", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_I2CEx_DisableFastModePlus(uint32_t)", - "location": { - "column": "6", - "line": "123", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "HAL_I2CEx_DisableFastModePlus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@5233@macro@IS_I2C_ANALOG_FILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_I2C_ANALOG_FILTER", - "location": { - "column": "9", - "line": "145", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "IS_I2C_ANALOG_FILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@5402@macro@IS_I2C_DIGITAL_FILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_I2C_DIGITAL_FILTER", - "location": { - "column": "9", - "line": "148", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "IS_I2C_DIGITAL_FILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_i2c_ex.h@5471@macro@IS_I2C_FASTMODEPLUS", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_I2C_FASTMODEPLUS", - "location": { - "column": "9", - "line": "150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_i2c_ex.h" - }, - "name": "IS_I2C_FASTMODEPLUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@892@macro@__MAIN_H", - "What": "MacroDef", - "defdec": "Def", - "display": "__MAIN_H", - "location": { - "column": "9", - "line": "23", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "__MAIN_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Error_Handler", - "What": "Function", - "defdec": "Dec", - "display": "void Error_Handler(void)", - "location": { - "column": "6", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "Error_Handler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Error_Handler", - "What": "Function", - "defdec": "Dec", - "display": "void Error_Handler(void)", - "location": { - "column": "6", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "Error_Handler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@1873@macro@SYS_WKUP2_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "SYS_WKUP2_Pin", - "location": { - "column": "9", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "SYS_WKUP2_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@1908@macro@SYS_WKUP2_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "SYS_WKUP2_GPIO_Port", - "location": { - "column": "9", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "SYS_WKUP2_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@1943@macro@CN3791_CHRG_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_CHRG_Pin", - "location": { - "column": "9", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_CHRG_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@1980@macro@CN3791_CHRG_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_CHRG_GPIO_Port", - "location": { - "column": "9", - "line": "63", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_CHRG_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2017@macro@WDI_OUT_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "WDI_OUT_Pin", - "location": { - "column": "9", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "WDI_OUT_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2050@macro@WDI_OUT_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "WDI_OUT_GPIO_Port", - "location": { - "column": "9", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "WDI_OUT_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2083@macro@ADC1_CH1_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC1_CH1_Pin", - "location": { - "column": "9", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "ADC1_CH1_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2116@macro@ADC1_CH1_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC1_CH1_GPIO_Port", - "location": { - "column": "9", - "line": "67", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "ADC1_CH1_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2150@macro@DAC_OUT1_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_OUT1_Pin", - "location": { - "column": "9", - "line": "68", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "DAC_OUT1_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2183@macro@DAC_OUT1_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "DAC_OUT1_GPIO_Port", - "location": { - "column": "9", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "DAC_OUT1_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2217@macro@RF_PWR_CTRL_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_PWR_CTRL_Pin", - "location": { - "column": "9", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_PWR_CTRL_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2253@macro@RF_PWR_CTRL_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_PWR_CTRL_GPIO_Port", - "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_PWR_CTRL_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2290@macro@RF_AUX_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_AUX_Pin", - "location": { - "column": "9", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_AUX_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2321@macro@RF_AUX_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_AUX_GPIO_Port", - "location": { - "column": "9", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_AUX_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2353@macro@RF_M1_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_M1_Pin", - "location": { - "column": "9", - "line": "74", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_M1_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2383@macro@RF_M1_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_M1_GPIO_Port", - "location": { - "column": "9", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_M1_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2414@macro@SENSOR_PWR_CTRL_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "SENSOR_PWR_CTRL_Pin", - "location": { - "column": "9", - "line": "76", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "SENSOR_PWR_CTRL_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2454@macro@SENSOR_PWR_CTRL_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "SENSOR_PWR_CTRL_GPIO_Port", - "location": { - "column": "9", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "SENSOR_PWR_CTRL_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2495@macro@GAIN_SET_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "GAIN_SET_Pin", - "location": { - "column": "9", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "GAIN_SET_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2528@macro@GAIN_SET_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "GAIN_SET_GPIO_Port", - "location": { - "column": "9", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "GAIN_SET_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2562@macro@GPIO_LED_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_LED_Pin", - "location": { - "column": "9", - "line": "80", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "GPIO_LED_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2595@macro@GPIO_LED_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_LED_GPIO_Port", - "location": { - "column": "9", - "line": "81", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "GPIO_LED_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2629@macro@RF_M0_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_M0_Pin", - "location": { - "column": "9", - "line": "82", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_M0_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2660@macro@RF_M0_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "RF_M0_GPIO_Port", - "location": { - "column": "9", - "line": "83", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "RF_M0_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2691@macro@CN3791_CHRGB8_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_CHRGB8_Pin", - "location": { - "column": "9", - "line": "84", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_CHRGB8_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2729@macro@CN3791_CHRGB8_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_CHRGB8_GPIO_Port", - "location": { - "column": "9", - "line": "85", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_CHRGB8_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2768@macro@CN3791_DONE_Pin", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_DONE_Pin", - "location": { - "column": "9", - "line": "86", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_DONE_Pin", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.h@2804@macro@CN3791_DONE_GPIO_Port", - "What": "MacroDef", - "defdec": "Def", - "display": "CN3791_DONE_GPIO_Port", - "location": { - "column": "9", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "CN3791_DONE_GPIO_Port", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@read_uart_flag", - "What": "Variable", - "defdec": "Dec", - "display": "read_uart_flag", - "location": { - "column": "12", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "read_uart_flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@read_uart_flag", - "What": "Variable", - "defdec": "Dec", - "display": "read_uart_flag", - "location": { - "column": "12", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "read_uart_flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@max_rms_mA", - "What": "Variable", - "defdec": "Dec", - "display": "max_rms_mA", - "location": { - "column": "14", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "max_rms_mA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@Pulse_Count", - "What": "Variable", - "defdec": "Dec", - "display": "Pulse_Count", - "location": { - "column": "17", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "Pulse_Count", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@Pulse_Count", - "What": "Variable", - "defdec": "Dec", - "display": "Pulse_Count", - "location": { - "column": "17", - "line": "93", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Inc\\main.h" - }, - "name": "Pulse_Count", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash_ex.h@817@macro@STM32L4xx_HAL_FLASH_EX_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STM32L4xx_HAL_FLASH_EX_H", - "location": { - "column": "9", - "line": "20", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "STM32L4xx_HAL_FLASH_EX_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_Erase", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *, uint32_t *)", - "location": { - "column": "19", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_Erase", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_Erase", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *, uint32_t *)", - "location": { - "column": "19", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_Erase", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_Erase_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *)", - "location": { - "column": "19", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_Erase_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_Erase_IT", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *)", - "location": { - "column": "19", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_Erase_IT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_OBProgram", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *)", - "location": { - "column": "19", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_OBProgram", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_OBProgram", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *)", - "location": { - "column": "19", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_OBProgram", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_OBGetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *)", - "location": { - "column": "19", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_OBGetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASHEx_OBGetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *)", - "location": { - "column": "19", - "line": "72", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "HAL_FLASHEx_OBGetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_PageErase", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_PageErase(uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "95", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "FLASH_PageErase", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_PageErase", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_PageErase(uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "95", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "FLASH_PageErase", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_FlushCaches", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_FlushCaches(void)", - "location": { - "column": "6", - "line": "96", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "FLASH_FlushCaches", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLASH_FlushCaches", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_FlushCaches(void)", - "location": { - "column": "6", - "line": "96", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" - }, - "name": "FLASH_FlushCaches", - "origin": "user_include", - "scope": null - }, { "ID": "c:stddef.h@100@macro@_STDDEF", "What": "MacroDef", @@ -330695,6 +330653,188 @@ "origin": "system_include", "scope": null }, + { + "ID": "c:stm32l4xx_hal_flash_ex.h@817@macro@STM32L4xx_HAL_FLASH_EX_H", + "What": "MacroDef", + "defdec": "Def", + "display": "STM32L4xx_HAL_FLASH_EX_H", + "location": { + "column": "9", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "STM32L4xx_HAL_FLASH_EX_H", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_Erase", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *, uint32_t *)", + "location": { + "column": "19", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_Erase", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_Erase", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *, uint32_t *)", + "location": { + "column": "19", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_Erase", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_Erase_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *)", + "location": { + "column": "19", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_Erase_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_Erase_IT", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *)", + "location": { + "column": "19", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_Erase_IT", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_OBProgram", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *)", + "location": { + "column": "19", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_OBProgram", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_OBProgram", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *)", + "location": { + "column": "19", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_OBProgram", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_OBGetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *)", + "location": { + "column": "19", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_OBGetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASHEx_OBGetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *)", + "location": { + "column": "19", + "line": "72", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "HAL_FLASHEx_OBGetConfig", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_PageErase", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_PageErase(uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "95", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "FLASH_PageErase", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_PageErase", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_PageErase(uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "95", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "FLASH_PageErase", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_FlushCaches", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_FlushCaches(void)", + "location": { + "column": "6", + "line": "96", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "FLASH_FlushCaches", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@FLASH_FlushCaches", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_FlushCaches(void)", + "location": { + "column": "6", + "line": "96", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Inc\\stm32l4xx_hal_flash_ex.h" + }, + "name": "FLASH_FlushCaches", + "origin": "user_include", + "scope": null + }, { "ID": "c:DLib_Config_Full.h@105@macro@_DLIB_CONFIG_H", "What": "MacroDef", @@ -330765,188 +330905,6 @@ "origin": "system_include", "scope": null }, - { - "ID": "c:system_stm32l4xx.h@903@macro@__SYSTEM_STM32L4XX_H", - "What": "MacroDef", - "defdec": "Def", - "display": "__SYSTEM_STM32L4XX_H", - "location": { - "column": "9", - "line": "31", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "__SYSTEM_STM32L4XX_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "17", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemCoreClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "17", - "line": "57", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemCoreClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@AHBPrescTable", - "What": "Variable", - "defdec": "Dec", - "display": "AHBPrescTable", - "location": { - "column": "23", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "AHBPrescTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@AHBPrescTable", - "What": "Variable", - "defdec": "Dec", - "display": "AHBPrescTable", - "location": { - "column": "23", - "line": "59", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "AHBPrescTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@APBPrescTable", - "What": "Variable", - "defdec": "Dec", - "display": "APBPrescTable", - "location": { - "column": "23", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "APBPrescTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@APBPrescTable", - "What": "Variable", - "defdec": "Dec", - "display": "APBPrescTable", - "location": { - "column": "23", - "line": "60", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "APBPrescTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@MSIRangeTable", - "What": "Variable", - "defdec": "Dec", - "display": "MSIRangeTable", - "location": { - "column": "23", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "MSIRangeTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@MSIRangeTable", - "What": "Variable", - "defdec": "Dec", - "display": "MSIRangeTable", - "location": { - "column": "23", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "MSIRangeTable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Dec", - "display": "void SystemInit(void)", - "location": { - "column": "13", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Dec", - "display": "void SystemInit(void)", - "location": { - "column": "13", - "line": "87", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Dec", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "13", - "line": "88", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemCoreClockUpdate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Dec", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "13", - "line": "88", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\CMSIS\\Device\\ST\\STM32L4xx\\Include\\system_stm32l4xx.h" - }, - "name": "SystemCoreClockUpdate", - "origin": "user_include", - "scope": null - }, { "ID": "c:usart.h@853@macro@__USART_H__", "What": "MacroDef", diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi index b499438..a13b7d4 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi differ 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 78b7c72..3cad3be 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 @@ -1,29 +1,29 @@ :020000040800F2 -:1000000090FB002031590208FD530208FF530208FB -:1000100001540208035402080554020800000000BD -:10002000000000000000000000000000075402086B -:1000300009540208000000000B5402080D54020885 -:10004000595902085D5902086159020865590208A8 -:10005000695902086D590208715902087559020858 -:10006000795902087D59020881590208155402087D -:1000700085590208895902088D59020891590208C8 -:1000800095590208995902089D590208A159020878 -:10009000A5590208A9590208AD590208C15402081D -:1000A000B1590208B5590208B9590208BD590208E8 -:1000B000C15902080000000000000000C5590208F4 -:1000C000C9590208CD590208D1590208D559020868 -:1000D000D95902081F540208DD5902085B5402086E -:1000E000E1590208E5590208000000000000000084 +:1000000090FB0020F1580208BD530208BF530208BC +:10001000C1530208C3530208C55302080000000080 +:10002000000000000000000000000000C7530208AC +:10003000C953020800000000CB530208CD53020848 +:10004000195902081D5902082159020825590208A8 +:10005000295902082D590208315902083559020858 +:10006000395902083D59020841590208D55302087E +:1000700045590208495902084D59020851590208C8 +:1000800055590208595902085D5902086159020878 +:1000900065590208695902086D590208815402081D +:1000A0007159020875590208795902087D590208E8 +:1000B0008159020800000000000000008559020874 +:1000C000895902088D590208915902089559020868 +:1000D00099590208DF5302089D5902081B5402086F +:1000E000A1590208A5590208000000000000000004 :1000F0000000000000000000000000000000000000 -:1001000000000000E959020800000000ED59020853 -:100110000000000000000000F15902089754020896 -:10012000F5590208F9590208FD590208015A020856 -:10013000055A020800000000000000000000000056 -:10014000095A02080D5A0208115A0208000000005C -:10015000155A0208195A02081D5A0208215A0208A3 -:10016000255A0208295A02082D5A020800000000E8 -:10017000315A0208355A0208000000000000000051 -:10018000395A02083D5A0208415A02080000803FCD +:1001000000000000A959020800000000AD590208D3 +:100110000000000000000000B15902085754020816 +:10012000B5590208B9590208BD590208C159020857 +:10013000C559020800000000000000000000000097 +:10014000C9590208CD590208D1590208000000001F +:10015000D5590208D9590208DD590208E1590208A7 +:10016000E5590208E9590208ED59020800000000AB +:10017000F1590208F55902080000000000000000D3 +:10018000F9590208FD590208015A02080000803F8F :1001900000000000ECFF7F3FD40FC93AB1FF7F3F62 :1001A000C70F493B4EFF7F3FC1CB963BC4FE7F3F0D :1001B000890FC93B13FE7F3F3053FB3B39FD7F3F27 @@ -7738,9 +7738,9 @@ :10E37000022402E0702D00D1012411480168C9086F :10E38000C90021430160006810F00700A04201D0DD :10E39000012000E0002076BD0C10024094100240E5 -:10E3A00004100240905802085810024000700040CB +:10E3A000041002405058020858100240007000400B :10E3B00090100240981002408C809D01FCFFEEFE00 -:10E3C00000200240285702080024F4005059020897 +:10E3C00000200240E85602080024F4001059020818 :10E3D0007047704710B59FED3F0ADFED3E0A002001 :10E3E0000AE0DFF8981401EB8001D1ED000AF8EEA5 :10E3F000600A30EE800A401CB0F5006FF1DBDFED03 @@ -7790,21 +7790,21 @@ :10E6B0008E480188491C0180FFF78CFE754821684F :10E6C0000160296841608949098800EE101AB8EE96 :10E6D000400A80ED020A02B0BDEC048B70BD80B52B -:10E6E0008348006801F01AFD8248006801F016FDB9 -:10E6F00001BD0000DB0F494038B501F059FD00F0C5 -:10E7000059F84FF400616B4801F0F5FD4FF40061DA +:10E6E0008348006801F0FAFC8248006801F0F6FCFB +:10E6F00001BD0000DB0F494038B501F039FD00F0E5 +:10E7000059F84FF400616B4801F0D5FD4FF40061FA :10E710006548FFF79BFE012210215F4800F005FCD1 -:10E7200001F036FE01F002FF01F016FF01F0D6FF06 -:10E7300001F0FAFF02F04EF802F075F902F06AF902 +:10E7200001F016FE01F0E2FE01F0F6FE01F0B6FF88 +:10E7300001F0DAFF02F02EF802F055F902F04AF982 :10E740004FF4007000F0F1FC6B4C7F21200002F0D0 -:10E7500093F9524D0021280000F08AFE0023002288 +:10E7500073F9524D0021280000F08AFE00230022A8 :10E760000021280000F0BAFEFFF79DFE4FF4805212 -:10E770004B49200002F06DFB604802F00AFF604C3C -:10E78000200002F036FF200002F003FF03F0B9F88A -:10E7900003F039F90121002003F060F9FAE70000E5 +:10E770004B49200002F04DFB604802F0EAFE604C7D +:10E78000200002F016FF200002F0E3FE03F099F8EB +:10E7900003F019F90121002003F040F9FAE7000025 :10E7A0000000003BDBF97E6ABC74A33F0000000060 :10E7B00000C8A94010B596B04421002205AC200045 -:10E7C00003F072F9142100226C46200003F06CF96A +:10E7C00003F052F9142100226C46200003F04CF9AA :10E7D0004FF4806000F072FC002801D000F022F8B5 :10E7E000012005905FF48030069000200F9005A86E :10E7F000FFF740F9002801D000F014F80F20009036 @@ -7825,7 +7825,7 @@ :10E8E00068F700206CF7002070F7002088F7002000 :10E8F00080F700207CF70020D4F4002000F60020F0 :10E900004CF600200C010020A00000207C0000201C -:10E9100010B5044610460A460146204603F0C4F8E6 +:10E9100010B5044610460A460146204603F0A4F806 :10E92000204610BD2DE9FC47040000270025206883 :10E93000000526D5606C00280DD0B0F5000F03D07F :10E94000B0F5400F0DD00DE0DFF8C402016851F4BE @@ -7925,7 +7925,7 @@ :10EF2000012000E00020C0B27047D2B2002A02D017 :10EF300089B2816101E089B28162704780B5104970 :10EF40000A6803009BB21A4205D0020092B20A601E -:10EF500080B202F0DCFD01BD001000480804014051 +:10EF500080B202F0BCFD01BD001000480804014071 :10EF60000C04014004040140000401406010024010 :10EF7000080001400004004800080048000C004858 :10EF80001404014010F00700414B1A684FF6FF01CE @@ -8005,7 +8005,7 @@ :10F42000FEF77CF9050014F1010F02D004480078C2 :10F430002418FEF773F9401BA042FAD331BD00BF78 :10F440000C01002010B50400002C01D101200EE0B9 -:10F450002079002804D100206071200001F0E0F93B +:10F450002079002804D100206071200001F0C0F95B :10F46000022020710020206101202071002010BDA9 :10F4700010B44279012A01D102202DE0012242710B :10F480000222027102681368012411F010029440F4 @@ -8061,8 +8061,8 @@ :10F7A000C0ED001A20EE811A80ED011A08350830EC :10F7B0000831083A5B1ED1D130BC7047F0B51F004C :10F7C00081B004460D4616460AD0FFF7A5FF3A461B -:10F7D0003146204601B0BDE8F040012302F058BC9C -:10F7E0000123002202F054FC32462946204601B093 +:10F7D0003146204601B0BDE8F040012302F038BCBC +:10F7E0000123002202F034FC32462946204601B0B3 :10F7F000BDE8F0403AE7000030B40346900857D027 :10F8000093ED000AD3ED010A20EE000A00EEA00AF3 :10F810000C1DB5EE400AF1EE10FA04DBB1EEC00AA1 @@ -8122,7 +8122,7 @@ :10FB7000F8D100EE101AB8EE400A80EE800AB5EE19 :10FB8000400AF1EE10FA04DBB1EEC00A82ED000A81 :10FB9000704700201060704700000000BFF34F8FD7 -:10FBA000DFF8C4150A6812F4E062DFF8C00502430A +:10FBA000DFF884150A6812F4E062DFF8800502438A :10FBB0000A60BFF34F8F00BFFDE730B44FF6FF730D :10FBC000002400E0641C22000D00D2B2EDB2AA4273 :10FBD00019D202785340401C002202E09BB25B081D @@ -8130,1499 +8130,1499 @@ :10FBF0000105012DF2DB9BB25B0883F4204393F0F7 :10FC00000103521CEDE7180080B2000A50EA0320FD :10FC100080B230BC70470100080080B2000A50EA90 -:10FC2000012080B27047000080B5DFF8440590EDF8 -:10FC3000000ADFEDA70A20EE200ABDEEC00A10EE92 +:10FC2000012080B27047000080B5DFF8040590ED38 +:10FC3000000ADFEDA60A20EE200ABDEEC00A10EE93 :10FC4000100A80B2FFF7E7FF02BD000080B5DFF8C1 -:10FC5000200590ED010ADFED9E0A20EE200ABDEEA0 +:10FC5000E00490ED010ADFED9D0A20EE200ABDEEE2 :10FC6000C00A10EE100A80B2FFF7D5FF02BD80B5C2 -:10FC7000DFF8FC0490ED020ABDEEC00A10EE100A97 -:10FC800080B2FFF7C8FF02BD80B5DFF8E40490ED55 -:10FC9000030ADFED900A20EE200ABDEEC00A10EE46 -:10FCA000100A80B2FFF7B7FF02BD10B5DFF8C044FD -:10FCB0004FF48041DFF8BC04FFF72EF92074207C5C -:10FCC00080B2FFF7A8FF10BD80B5DFF8AC04C178A3 +:10FC7000DFF8BC0490ED020ABDEEC00A10EE100AD7 +:10FC800080B2FFF7C8FF02BD80B5DFF8A40490ED95 +:10FC9000030ADFED8F0A20EE200ABDEEC00A10EE47 +:10FCA000100A80B2FFF7B7FF02BD10B5DFF880443D +:10FCB0004FF48041DFF87C04FFF72EF92074207C9C +:10FCC00080B2FFF7A8FF10BD80B5DFF86C04C178E3 :10FCD000007950EA012080B2FFF79DFF02BDE0B538 -:10FCE0000088DFF89414487068460622FBF70AF98A -:10FCF000DDE9000101F0F5FD01F085FE00200EBDFB -:10FD0000E0B50088DFF87014887068460622FBF7BB -:10FD1000F9F8DDE9000101F0E4FD01F074FE0020D6 -:10FD20000EBD008880B2012807D1DFF8440400210D -:10FD30004160DFF84804002101607047008880B20C -:10FD4000012807D1DFF82804002181600020DFF8B6 -:10FD500030140880704780B5008880B2012804D133 +:10FCE0000088DFF85414487068460622FBF70AF9CA +:10FCF000DDE9000101F0D5FD01F065FE00200EBD3B +:10FD0000E0B50088DFF83014887068460622FBF7FB +:10FD1000F9F8DDE9000101F0C4FD01F054FE002016 +:10FD20000EBD008880B2012807D1DFF8040400214D +:10FD30004160DFF80804002101607047008880B24C +:10FD4000012807D1DFF8E803002181600020DFF8F7 +:10FD5000F0130880704780B5008880B2012804D174 :10FD6000012080F31388FFF719FF002002BD2DE961 -:10FD7000F041040017001D0032210022DFF8046466 -:10FD8000B046404601F090FE0020307000207070B8 -:10FD9000DFF8E40381781B2291FBF2F302FB1311DD +:10FD7000F041040017001D0032210022DFF8C463A7 +:10FD8000B046404601F070FE0020307000207070D8 +:10FD9000DFF8A40381781B2291FBF2F302FB13111D :10FDA0000A31B1704078F0700320307175712A000B :10FDB00092B216F1060839004046FBF7A3F87179B4 :10FDC000C91CC9B2F01CFFF7F8FEADB206EB050185 -:10FDD000C880727908323100200000F0D4FDBDE8FF +:10FDD000C880727908323100200000F0B4FDBDE81F :10FDE000F08110B5002100E0491C0A0092B2062AF9 -:10FDF00010D2DFF894230300DBB20C00A4B252F857 +:10FDF00010D2DFF854230300DBB20C00A4B252F897 :10FE00003440A342F0D1002089B202EBC10149681D :10FE1000884700E0002010BD2DE9F04104008878FB :10FE2000CD7855EA002508794E7956EA0026280053 -:10FE300080B2062806DBADB22900DFF8500300F0DF -:10FE4000D2FD42E0300080B2002806D0280080B207 -:10FE500010FA86F0401E062805D3B6B23100CC4811 -:10FE600000F0C1FD31E0C8210022CA4FB84640462B -:10FE700001F01AFE5FF000080AE018EB0500C0B2BE -:10FE8000FFF7AFFF414689B227F8110018F10108CA -:10FE90004046310080B289B28842EED3BE48006845 -:10FEA000844206D173009BB23A0003212000FFF781 -:10FEB0005EFFBA480068844207D1760033009BB2E7 -:10FEC0003A0003212000FFF752FFBDE8F081000057 -:10FED0000000C84200007A44F8B59CB00E00B0782B -:10FEE000F47854EA00243079757955EA0025B07920 -:10FEF000200080B23138052805D3A4B22100A348E0 -:10FF000000F071FD82E0280080B2002806D02000B9 -:10FF100080B210FA85F03238052805D3ADB2290039 -:10FF20009B4800F060FD71E000208DF800006F46F6 -:10FF300000207870904881781B2291FBF2F302FB3D -:10FF400013110A31B9704078F87010203871002010 -:10FF50007871F078B8710020F871707938720621E4 -:10FF60000DF10300FFF729FE01008DF8091080B2A2 -:10FF7000000AB8720B2269468848006800F003FD49 -:10FF80006421002203AF380001F08EFD002011E053 -:10FF9000010089B206EB4101C979020092B206EB79 -:10FFA0004202127A52EA012203A903009BB221F80D -:10FFB0001320401C01002A0089B292B29142E7D37B -:10FFC00000261BE07649380080B251F8300032003C -:10FFD00092B212FA84F290420AD103A8320092B28D -:10FFE00000EB42003A0092B201EBC2014968884737 -:10FFF0007F1C380080B20528E4D3761C300029002D +:10FE300080B2062805DBADB22900C44800F0B3FD4E +:10FE400042E0300080B2002806D0280080B210FACC +:10FE500086F0401E062805D3B6B23100BC4800F03B +:10FE6000A2FD31E0C8210022BA4FB846404601F059 +:10FE7000FBFD5FF000080AE018EB0500C0B2FFF7D9 +:10FE8000B0FF414689B227F8110018F10108404639 +:10FE9000310080B289B28842EED3AF480068844214 +:10FEA00006D173009BB23A0003212000FFF75FFFE9 +:10FEB000AA480068844207D1760033009BB23A001A +:10FEC00003212000FFF753FFBDE8F0810000C84286 +:10FED00000007A44F8B59CB00E00B078F47854EA8B +:10FEE00000243079757955EA0025B079200080B278 +:10FEF0003138052805D3A4B22100944800F053FD01 +:10FF000082E0280080B2002806D0200080B210FADB +:10FF100085F03238052805D3ADB229008C4800F0B1 +:10FF200042FD71E000208DF800006F4600207870DF +:10FF3000814881781B2291FBF2F302FB13110A31F5 +:10FF4000B9704078F8701020387100207871F0781E +:10FF5000B8710020F8717079387206210DF1030034 +:10FF6000FFF72BFE01008DF8091080B2000AB8726D +:10FF70000B2269467948006800F0E5FC6421002204 +:10FF800003AF380001F070FD002011E0010089B2DC +:10FF900006EB4101C979020092B206EB4202127AE5 +:10FFA00052EA012203A903009BB221F81320401C4E +:10FFB00001002A0089B292B29142E7D300261BE0E9 +:10FFC0006749380080B251F83000320092B212FA1C +:10FFD00084F290420AD103A8320092B200EB4200B0 +:10FFE0003A0092B201EBC201496888477F1C380091 +:10FFF00080B20528E4D3761C3000290080B289B293 :020000040802F0 -:1000000080B289B2884201D20027F2E71DB0F0BD6C -:10001000F0B58DB006000C001500002000206D1E0C -:10002000002704E0300000F0CDFCE0557F1CAF421B -:10003000F8D32E00002000E0401CA8420FD2215C23 -:100040004D4A52789142F7D104EB000149780329D7 -:1000500004D004EB000149781029EDD10600AE422E -:1000600001D1002023E0AA1B04EB06016F463800F3 -:10007000FAF748FF2A00002127003800FAF742FF6C -:10008000AD1B69462A002000FAF73CFF684641781C -:10009000032901D108200AE04078102806D1002069 -:1000A00007209DF806100818801C00E000200DB005 -:1000B000F0BD70B504000D00160016F1FE01C9B2C6 -:1000C0002800FFF77AFD80B205EB060111F8021C4B -:1000D00005EB060212F8012C51EA022188421CD1DC -:1000E0006878032802D06878102816D1002610E01E -:1000F0002C4A6878310089B252F83110884207D111 -:100100002900200033009BB202EBC30252689047E3 -:10011000761C300080B20228EAD370BD70B50400AE -:10012000200000F03EFC00281CD01F480168012977 -:1001300003DA0168491C016014E0002101603221EA -:1001400000221A4D2E00300001F0AEFC32222900B0 -:100150002000FFF75DFF0200012A03DB29002000D9 -:10016000FFF7A7FF70BD00000CED00E00400FA05EA -:1001700040F70020000800487400002070F70020BD -:1001800088F7002038F500201C0000206458020881 -:100190007C5802083CF200207CF7002080F7002009 -:1001A0004C0000200C00002074F70020E0F6002036 -:1001B00010B500240320FEF74CFF0F20FEF734FBA0 -:1001C000002801D0012401E002F024F82000C0B290 -:1001D00010BD000010B5040002D14FF0FF3010BD7B -:1001E000102102F033F8010004D1202020820020E9 -:1001F0005749616110BD10B5040002D14FF0FF30C6 -:1002000010BD202102F022F8010004D140202082FC -:1002100000205049616110BD10B5040002D14FF0BB -:10022000FF3010BD402102F011F8010004D1802000 -:10023000208200204849616110BD10B5040002D140 -:100240004FF0FF3010BD802102F000F8010005D111 -:100250004FF48070208200204049616110BD10B5CC -:10026000040002D14FF0FF3010BD4FF4807101F057 -:10027000EDFF010005D14FF40070208200203849C5 -:10028000616110BD10B5040002D14FF0FF3010BD08 -:100290004FF4007101F0DAFF010005D14FF48060E6 -:1002A000208200202F49616110BD10B5040002D1E9 -:1002B0004FF0FF3010BD4FF4806101F0C7FF010027 -:1002C00005D14FF40060208200202749616110BDF4 -:1002D00010B5040002D14FF0FF3010BD4FF40061A3 -:1002E00001F0B4FF010005D14FF4805020820020BE -:1002F0001E49616110BD202924D0402920D08029C9 -:100300001CD0B1F5807F17D0B1F5007F12D0B1F5C8 -:10031000806F0DD0B1F5006F08D0B1F5805F13D1BB -:1003200013490A0013D14FF0FF3070471149F8E725 -:100330001149F6E71149F4E71149F2E71149F0E7ED -:100340001149EEE71149ECE74FF0FF3070470847DD -:1003500064550208FC5202085C4E02086C41020817 -:100360006C350208CC8E01088C2101088CC1000874 -:10037000D1020208AB020208850202085F020208ED -:100380003B02020819020208F7010208D50102081F -:1003900038B586B0142200216846FEF7B9FA5E48E7 -:1003A000016851F004010160016811F00401059138 -:1003B0000599016851F080010160016811F0800128 -:1003C00005910599016851F001010160016811F082 -:1003D000010105910599016851F002010160016870 -:1003E00011F0020105910599016851F008010160C1 -:1003F000006810F0080005900598484C002249F26A -:10040000D0312000FEF791FD454D00224FF44071A0 -:100410002800FEF78AFD202000905FF44410019030 -:100420000020029069462000FEF7B2FC00220F2156 -:100430001720FEF712FE1720FEF720FE4FF4C040F3 -:100440000090002001900020029069462000FEF7F5 -:100450009FFC002210212000FEF767FD1020009075 -:1004600001200190002002900020039069462000A6 -:10047000FEF78EFC49F2C030009001200190002070 -:1004800002900020039069462000FEF781FC0E20B8 -:100490000090032001900020029069462000FEF7A2 -:1004A00077FC49F6EF1000900320019000200290A5 -:1004B00069465FF09040FEF76BFC4FF6FF400090FE -:1004C000032001900020029069462800FEF760FC9E -:1004D00004200090032001900020029069461148FA -:1004E000FEF756FC082000900320019000200290A7 -:1004F00069460D48FEF74CFC4FF440700090012017 -:100500000190002002900020039069462800FEF729 -:100510003FFC07B030BD00BF4C100240000800484F -:1005200000040048000C0048001C004880B5094841 -:10053000016851F001010160006810F001000090B5 -:100540000098002200210B20FEF787FD0B20FEF70C -:1005500095FD01BD4810024010B586B0182200215B -:100560006846FEF7D5F9554C55482060002060607C -:100570000020A0600020E060012020610420606174 -:1005800001202076012060760220E061002084F8BE -:1005900020004FF4E860A0624FF48060E062012028 -:1005A00084F830004FF480506063002084F83800F5 -:1005B000200000F06BFB002801D0FEF733F9414822 -:1005C000009006200190072002907F2003900420D5 -:1005D0000490002005906946200000F0ADFC002842 -:1005E00001D0FEF71FF9384800900C2001906946B1 -:1005F000200000F0A1FC002801D0FEF713F906B09E -:1006000010BD30B59DB004001422002101A8FEF7F2 -:100610007FF95C22002106A8FEF77AF920682849B4 -:10062000884248D14FF4804006905FF040501A90C5 -:1006300006A8FEF777F9002801D0FEF7F3F8234863 -:10064000016851F400510160016811F400510091FA -:100650000099016851F004010160006810F0040085 -:1006600000900098012001900B2002900020039040 -:1006700001A91748FEF78CFB164D1748286000208B -:1006800068600020A8600020E860802028614FF4A6 -:10069000007068614FF40060A8612020E8614FF4A9 -:1006A000005028622800FDF73FF8002801D0FEF72F -:1006B000B9F8E564AC621DB030BD0000D4F4002090 -:1006C0000000045002003004040060084C10024096 -:1006D0000008004898F60020080002401FB50C22D0 -:1006E00000216846FEF714F9354C3648206000209A -:1006F00060600020A06041F63F70E0608020A06153 -:10070000200000F009FF002801D0FEF78BF8202020 -:100710000090002002906946200001F0E3FD0028CF -:1007200001D0FEF77FF81FBD1FB50C2200216846DF -:10073000FEF7EEF8244C2548206041F63F706060DB -:100740000020A0606320E0608020A061200000F015 -:10075000E3FE002801D0FEF765F80020009000209D -:1007600002906946200001F0BDFD002801D0FEF78F -:1007700059F81FBD80B50168124A914209D1144948 -:100780000A6852F010020A60096811F01001009125 -:10079000009900680D49884211D10D48016851F057 -:1007A00020010160006810F02000009000980122F4 -:1007B0000E213720FEF751FC3720FEF75FFC01BD0C -:1007C00000F60020001000404CF60020001400400D -:1007D0005810024018B589B0242200216846FEF75F -:1007E00097F8264C264820602000FEF72BFE0028B4 -:1007F00001D0FEF717F800200090002001900220A1 -:1008000002900020039000200490002269462000FE -:10081000FEF779FE002801D0FEF704F80AB010BDFB -:1008200010B586B004001422002101A8FEF770F86C -:100830002068134988421ED11248016851F00051C6 -:100840000160006810F00050009000980E480168A8 -:1008500051F001010160006810F001000090009863 -:1008600010200190032002900020039001A95FF066 -:100870009040FEF78DFA06B010BD00002CF7002066 -:1008800000740040581002404C100240F8B50400BB -:10089000002500E06D1C022D24D21826674F06FBB0 -:1008A00005F0384440782300DBB29842F2D106FBD1 -:1008B00005F0385C002811D106FB05F038440830FB -:1008C00001F04EFD06FB05F0384441682000C0B23F -:1008D00000F00AF8012006FB05F17854754307EB98 -:1008E000050000E00020F2BD80B50200D2B2012A6E -:1008F00003D10800FCF734FE05E0C0B2032802D1A2 -:100900000800FCF74FFE01BD02B5012102000028DE -:1009100002D01078002801D1002019E05078012879 -:1009200007D10A23012269464548FCF732F8010045 -:1009300009E05078032806D10A230122694641487C -:10094000FCF727F80100002901D1012000E0002078 -:1009500002BD38B504000D0008E00D212000FFF7AE -:10096000D3FF0A212000FFF7CFFF6D1C2878002855 -:1009700008D028780A28F0D029782000FFF7C4FF93 -:100980006D1CF3E731BDF8B504000D00160000271B -:1009900004E0E95D2000FFF7B7FF7F1CB742F8DBFA -:1009A000F1BD0100002802D00878002801D1002004 -:1009B00007E008694969884201D0012000E0002071 -:1009C000C0B270471CB5040000218DF80010FFF77D -:1009D000E8FF002804D0694614F1080001F0E3FCA8 -:1009E0009DF8000016BD0EB478B504006421002205 -:1009F000154D2E00300001F057F805AA21002800FF -:100A000001F0E6FC290011480068FFF7A2FF71BC65 -:100A10005DF810FB80B5C8220D490120FFF736FFB5 -:100A20000A49086001BD80B54FF496720949032058 -:100A3000FFF72CFF0849086001BD0000A40000205A -:100A4000CCF3002050F400209CF500207CF700201F -:100A500004F3002010F1002080F700208368DFF805 -:100A6000A820134011F08041194351F000418160EA -:100A700070478068C00F70477CB504000D000020EF -:100A8000009094F85000012801D102203AE00120A2 -:100A900084F85000200000F0ABFC06003000C0B22B -:100AA000002826D1606D30F4885050F00200606557 -:100AB00029002068FFF7D2FF2068FFF7DAFF00283F -:100AC00011D00098401C00900098B0F5912FF3D3FE -:100AD000606D30F0020050F010006065002084F876 -:100AE000500001200EE00120616D60F3010161659D -:100AF00003E0606D50F010006065002084F8500045 -:100B00003000C0B276BD0000C0FFFF3F826832F403 -:100B10007C12114381607047826832F0E0721143A9 -:100B200081607047806810F0E070704710B410F179 -:100B3000600414EB81042168DFF8D403014012F053 -:100B4000F8420A431A4352F00042226010BC704738 -:100B5000603010EB8100006810F0F84070476030A2 -:100B600010EB8100016821F000410A4302607047E8 -:100B7000C06810F4406F01D1012000E000207047F0 -:100B800030B430300B009B0913F00C031B181C68A9 -:100B90001F2511F01F008540AC43C2F3846011F0A3 -:100BA0001F0110FA01F12143196030BC704730B4C5 -:100BB00010F114030800C00D10F00400C018036801 -:100BC00007240D002D0D15F01F05AC40A343090DA2 -:100BD00011F01F0112FA01F11943016030BC704796 -:100BE00010B4D0F8B0404B035B0B9C43DFF82433C8 -:100BF00012F01802D34019404903490B2143C0F8B1 -:100C0000B01010BC70478268DFF80C130A40826095 -:100C100070478068400F10F0010070478268DFF86D -:100C2000FC120A4052F08052826070478068000FC8 -:100C300010F0010070478268DFF8E0120A4052F0BD -:100C40000102826070478268DFF8D0120A4052F0D9 -:100C5000020282607047806810F00100704780686F -:100C6000400810F0010070478268DFF8B0120A40B7 -:100C700052F00402826070478068800810F0010022 -:100C800070478068C00810F0010070477CB5040010 -:100C9000002600200090002C01D10120D8E020691E -:100CA000002802D094F820000128606D002807D1A8 -:100CB0002000FFF7A6FC0020A065002084F850006B -:100CC0002068FFF7A6FF002802D02068FFF79BFFEF -:100CD0002068FFF7ABFF002813D12068FFF79EFFC5 -:100CE000DFF83C020068DFF83C12B0FBF1F0401C7A -:100CF0004000009002E00098401E009000980028FC -:100D0000F9D12068FFF792FF002808D1606D50F0FC -:100D100010006065A06D50F00100A06501262068FC -:100D2000FFF7AAFF616DC90600F18B80002840F033 -:100D30008880606D30F4807050F00200606520683B -:100D4000FFF789FF00280AD1DFF8DC01FFF783FFF6 -:100D5000002804D16168DFF8D401FFF7D7FE607E78 -:100D6000626B52EA4032E0680243A168114394F892 -:100D7000200051EA004194F82000012803D1606A64 -:100D8000401E51EA4041A06A002806D0A06A10F433 -:100D9000707001430800E16A01432068C268DFF80F -:100DA0009001024011432068C1602068FFF764FF92 -:100DB00005002068FFF765FF0543002D28D1207E40 -:100DC00094F83010490051EA80312068C268DFF899 -:100DD0006401024011432068C16094F83800012882 -:100DE00010D1206801696FF38A01E06B0143206C28 -:100DF0000143606C0143A06C014351F00101206884 -:100E0000016105E020680069400840002168086130 -:100E10002069012809D12068006B00090001E169FF -:100E2000491E08432168086305E02068006B00093B -:100E30000001216808630120616D60F301016165B3 -:100E400004E0606D50F01000606501263000C0B213 -:100E500076BDF8B504000D0016002068FFF70CFF02 -:100E6000002850D194F85000012801D102204DE013 -:100E7000012084F85000200000F04EFA07003800EE -:100E8000C0B200283BD1616DDFF88804014051F405 -:100E900080716165606DC00404D5A06D30F00600FE -:100EA000A06501E00020A0650FF2C550E16CC862AA -:100EB000DFF81005E16C0863DFF80C05E16C4863AE -:100EC0001C2021680860002084F8500020684068D9 -:100ED00050F01000216848602068C06850F00100A0 -:100EE0002168C86033002A00206810F14001E06CDE -:100EF000FCF798FC07002068FFF7B6FE04E000202E -:100F000084F8500000E002273800C0B2F2BD0000B3 -:100F100000F0FF03FFFF0700C0FFFF5FC0FFFF7F80 -:100F2000A0000020400D0300000004500003045006 -:100F300007C0F0FFFDBFFFFF2DE9FC4106000F00D9 -:100F4000002500200090DFF88484F8684045FFD138 -:100F500096F85000012801D10220D8E1012086F83E -:100F600050003068FFF788FE002840F0C68178689E -:100F7000062818D27868022806D012D3042809D08F -:100F800005D3052809D00CE00C2078600BE0122076 -:100F9000786008E01820786005E04FF48070786091 -:100FA00001E0062078603A6879683068FFF7E8FD6C -:100FB0003068FFF761FE04003068FFF762FE04430B -:100FC000002C40F0B580BA6839683068FFF7EFFD53 -:100FD0007B693068C068C0F3C10040008340386955 -:100FE000042805D03A6839693068FFF79FFD9FE013 -:100FF00000213068FFF7ACFD400306D100213068C6 -:10100000FFF7A6FDC0F3846007E000213068FFF71A -:101010009FFD90FAA0F0B0FA80F03968490303D13F -:101020003968C1F3846104E0396891FAA1F1B1FA39 -:1010300081F1884204D1002200213068FFF78FFD42 -:1010400001213068FFF784FD400306D1012130689B -:10105000FFF77EFDC0F3846007E001213068FFF7F1 -:1010600077FD90FAA0F0B0FA80F03968490303D117 -:101070003968C1F3846104E0396891FAA1F1B1FAE9 -:1010800081F1884204D1002201213068FFF767FD19 -:1010900002213068FFF75CFD400306D10221306871 -:1010A000FFF756FDC0F3846007E002213068FFF7C8 -:1010B0004FFD90FAA0F0B0FA80F03968490303D1EF -:1010C0003968C1F3846104E0396891FAA1F1B1FA99 -:1010D00081F1884204D1002202213068FFF73FFDF0 -:1010E00003213068FFF734FD400306D10321306847 -:1010F000FFF72EFDC0F3846007E003213068FFF79F -:1011000027FD90FAA0F0B0FA80F03968490303D1C6 -:101110003968C1F3846104E0396891FAA1F1B1FA48 -:1011200081F1884204D1002203213068FFF717FDC6 -:101130003068FFF790FD002840F08D80FA6839682C -:101140003068FFF74DFDF868404540F0848038680E -:10115000400303D13868C0F3846004E0386890FA33 -:10116000A0F0B0FA80F0401C10F01F000A2836D220 -:101170003868400303D13868C0F3846104E03868FC -:1011800090FAA0F0B0FA80F13868400303D13868D3 -:10119000C0F3846004E0386890FAA0F0B0FA80F000 -:1011A0003A68520303D13A68C2F3846204E03A68B1 -:1011B00092FAA2F2B2FA82F2491C890611F0F841C1 -:1011C0000123401C10F01F0013FA00F00143521CD1 -:1011D00012F01F020320424351EA025137E03868FF -:1011E000400303D13868C0F3846004E0386890FAA3 -:1011F000A0F0B0FA80F03968490303D13968C1F32F -:10120000846204E0396891FAA1F1B1FA81F2396897 -:10121000490303D13968C1F3846304E0396891FA62 -:10122000A1F1B1FA81F3401C800610F0F8400121D1 -:10123000521C12F01F02914001435B1C13F01F036C -:101240000A3B0320434351EA035151F00071BA684D -:101250003068FFF7ACFC3868DFF87411084251D0F1 -:10126000DFF870412000FFF75DFC01003868DFF80F -:10127000682190421DD108021BD43068DFF85C2140 -:1012800090423FD151F400012000FFF745FCDFF808 -:1012900050010068DFF84C11B0FBF1F1491C0C2043 -:1012A00041430091009800282CD00098401E0090E7 -:1012B000F8E73868DFF8302190420CD1C8010AD431 -:1012C0003068DFF8182190421CD151F08071200065 -:1012D000FFF722FC16E03868DFF81021904211D1A8 -:1012E00048020FD43068DFF8F42090420AD151F45C -:1012F00080012000FFF710FC04E0706D50F020002A -:1013000070650125002086F850002800C0B2BDE8B5 -:10131000F6810000FEF1FFFF38B5040000200090C8 -:101320002068FFF798FC002849D1206880686FF397 -:101330009E10002809D0606D50F010006065A06D0F -:1013400050F00100A06501203AE02068FFF773FC2F -:101350002048FFF7E7FB00020FD52148006821492C -:10136000B0FBF1F1491C0C204143009102E00098D0 -:10137000401E009000980028F9D1FCF7CFF9050035 -:1013800020680068C0071AD42068FFF764FC0028B2 -:1013900002D12068FFF74FFCFCF7C0F9401B03287F -:1013A000EED320680068C007EAD4606D50F01000EA -:1013B0006065A06D50F00100A065012000E00020F4 -:1013C00032BD0000F3140208FD14020800007F4043 -:1013D0000000088000030450000052C700000450C1 -:1013E000A0000020400D0300000084CB010000801D -:1013F00038B505002868FFF732FC04002868FFF7BD -:101400002AFC002831D0002C2FD12868806810F0E9 -:101410000D0001281FD12868FFF715FC032029685B -:101420000860FCF77BF9040028688068C0071CD5B9 -:10143000FCF774F9001B0328F6D328688068C007FE -:10144000F2D5686D50F010006865A86D50F001008D -:10145000A86501200AE0686D50F010006865A86D6D -:1014600050F00100A865012000E0002032BD00001E -:1014700010B5846A616D11F0500F2FD1606D50F47A -:101480000070606520680068000714D52068FFF7C9 -:101490006FFB00281ED02068C06880041AD4606DDD -:1014A00030F480706065606DC00413D4606D50F0DE -:1014B000010060650EE02068C06880070AD4606D96 -:1014C00030F480706065606DC00403D4606D50F0CE -:1014D000010060652000FDF701F809E0616DC906B3 -:1014E00003D5200000F08EFF02E0E16C496B8847D5 -:1014F00010BD80B5806A00F086FF01BD80B5806AAE -:10150000416D51F040014165816D51F004018165EB -:1015100000F078FF01BD000010B50400002C01D1DF -:10152000012035E094F83D00002805D1002084F822 -:101530003C002000FFF71EF9022084F83D00211D29 -:10154000206800F05DF9012084F84800012084F84B -:101550003E00012084F83F00012084F84000012073 -:1015600084F84100012084F84200012084F84300FF -:10157000012084F84400012084F84500012084F80B -:101580004600012084F84700012084F83D00002037 -:1015900010BD90F83D10012901D0012028E0022162 -:1015A00080F83D100168DFF8B820914208D001684A -:1015B000B1F1804F04D00168DFF8A820914210D12A -:1015C00001688A68DFF8A010114006290FD0B1F534 -:1015D000803F0CD00168096851F00101006801608A -:1015E00005E00168096851F0010100680160002010 -:1015F000704790F83D10012901D001202EE0022112 -:1016000080F83D100168C96851F001010268D1609D -:101610000168DFF84C20914208D00168B1F1804F99 -:1016200004D00168DFF83C20914210D101688A683B -:10163000DFF83410114006290FD0B1F5803F0CD0EF -:101640000168096851F001010068016005E0016866 -:10165000096851F001010068016000207047000036 -:10166000002C0140004001400700010010B50400BB -:101670002068006980071AD52068C068800716D5E1 -:101680007FF00200216808610120207720688069CE -:1016900010F0030F03D0200000F0B6FE05E020009C -:1016A00000F0B3FE200000F0B1FE0020207720689B -:1016B000006940071AD52068C068400716D57FF03A -:1016C000040021680861022020772068806910F4F6 -:1016D000407F03D0200000F097FE05E0200000F0DE -:1016E00094FE200000F092FE002020772068006920 -:1016F00000071AD52068C068000716D57FF00800DB -:1017000021680861042020772068C06910F0030F69 -:1017100003D0200000F078FE05E0200000F075FE08 -:10172000200000F073FE0020207720680069C006CA -:101730001AD52068C068C00616D57FF01000216851 -:101740000861082020772068C06910F4407F03D02A -:10175000200000F059FE05E0200000F056FE2000B9 -:1017600000F054FE0020207720680069C0070AD5E9 -:101770002068C068C00706D57FF0010021680861B5 -:101780002000FCF7ACFF2068006900060AD520683D -:10179000C068000606D57FF080002168086120003F -:1017A00000F035FE20680069C0050AD52068C068D1 -:1017B000000606D57FF4807021680861200000F0E3 -:1017C00027FE2068006940060AD52068C0684006E8 -:1017D00006D57FF0400021680861200000F019FE66 -:1017E0002068006980060AD52068C068800606D592 -:1017F0007FF0200021680861200000F00BFE10BD82 -:1018000010B40368DFF86C40A04202D0B0F1804F02 -:1018100004D133F070031A004B681343A0420AD07E -:10182000B0F1804F07D0DFF85020904203D0DFF8AE -:101830004C20904204D133F440731A00CB68134318 -:1018400033F080034A69134303608A68C2620A68FE -:101850008262A04207D0DFF82020904203D0DFF858 -:101860001C20904201D1096901630121416110BC32 -:1018700070470000002C014000400140004401403E -:1018800000B585B0002200920022019280B2039040 -:1018900089B20491694601A800F0BEFD002808D075 -:1018A0005C21274800F086FE2122411C2548FFF7D5 -:1018B0009AF805B000BDF8B504000D001600002729 -:1018C00001E008347F1CB7420AD205EBC700D0E91B -:1018D00000232100002000F07BFE0028F1D0FFE76C -:1018E000F1BD03B581B000F0CCFE01216420FFF70B -:1018F000C7FF012201A91448FFF7DDFF00F0D1FE68 -:1019000007BD1CB5062100226C46200000F0CCF873 -:1019100006220D496C462000F9F7F4FA9DF8000004 -:1019200055280BD19DF80500162807D106226946D7 -:10193000064C2000F9F7E6FA012000E0002016BD71 -:10194000B45602085857020800200308740000200B -:1019500010B53E4C00224FF480512000FDF7E5FA0F -:10196000002240212000FDF7E0FA6420FDF756FD3B -:1019700010BD10B5354C01224FF480512000FDF709 -:10198000D4FA002240212000FDF7CFFA6420FDF7B1 -:1019900045FD10BD10B52D4C00224FF480512000A4 -:1019A000FDF7C3FA012240212000FDF7BEFA6420B2 -:1019B000FDF734FD10BD10B5244C01224FF48051C9 -:1019C0002000FDF7B2FA012240212000FDF7ADFA18 -:1019D0006420FDF723FD10BD80B56F3806D06F3849 -:1019E00007D06F3808D06F3809D00BE0FFF7B0FF91 -:1019F00008E0FFF7BEFF05E0FFF7CCFF02E0FFF7CE -:101A0000DAFFFFE701BD10B5012210210F48FDF7F5 -:101A10008CFA0F4C0F4841782171807860716079A1 -:101A20001B2190FBF1F201FB12000A30207240F200 -:101A30004D10FFF7D1FF0C22210007480068FEF788 -:101A4000A2FF6F20FFF7C8FF10BD0000000800488C -:101A5000000000207400002080F7002010B50C006A -:101A6000002808D10E48006880050AD5FDF76FFBF5 -:101A7000002806D012E00A480068800501D4FDF76E -:101A800060FB0848016831F004010160E4B2012CF8 -:101A900001D130BF02E040BF20BF20BF10BD000019 -:101AA0001470004010ED00E062F30F2262F31F4259 -:101AB000401810F0030308D0C91A1FD3DB0748BF32 -:101AC00000F8012D28BF20F8022D130030B4144671 -:101AD0001546103928BF20E93C00FAD8490728BF2D -:101AE00020E90C0048BF40F8042D890028BF20F8E9 -:101AF000022D48BF00F8012D30BC7047C91818BF2F -:101B000000F8012DCB0728BF00F8012D7047704762 -:101B10002DE9F04105462DED048B2F886A6801EB15 -:101B200087037F08B80894460C46984601EB870E59 -:101B300003EB870600F0928091ED000A93ED002AF6 -:101B4000D1ED010A91ED021AD1ED031AD3ED012A6C -:101B500093ED023AD3ED033A9EED004ADEED014AE1 -:101B60009EED025ADEED035A96ED006AD6ED016A4B -:101B700096ED027AD6ED037A30EE028A81ED008A84 -:101B800030EE420A30EEA28A71EE038A31EEA39A59 -:101B900071EEE31A77EEE53A34EE062A81ED018A1A -:101BA000C1ED028A81ED039A70EEE20A31EE431A2A -:101BB0008EED002A103134EEA62A75EE072A35EE96 -:101BC000A73A8EED012A36EE442ACEED022A76EEB1 -:101BD000E42A8EED033A37EE453A9CED004ADCEDFF -:101BE000014A20EE045A00EEA45A60EE840A83ED06 -:101BF000005A40EE640A22EE240AC3ED010A02EE06 -:101C0000C40A86ED000A22EEA40A02EE040A86ED5A -:101C1000010A9CED020ADCED030A21EE002A01EE26 -:101C2000A02A61EE801A41EE601A23EE201A63EEBC -:101C3000A00A03EEC01A43EE000A83ED022AC3EDA8 -:101C4000031A86ED021AC6ED030A10331036401E41 -:101C50000EF1100E0CF1100C7FF46EAF022339461A -:101C6000204600F08FFD6A68BDEC048B3946404683 -:101C7000BDE8F041022300F085BD00002DE9F04FE2 -:101C800081B004462DED048B86B022880591520860 -:101C900001EB820303EB820505EB820004930395BD -:101CA0000290A0F1040E666801960EEB82085208BD -:101CB0000092D5ED000A91ED001AD5ED011A91EDD3 -:101CC000012AD3ED014A90ED014AD3ED005A90ED7F -:101CD000005A31EE200A71EE600A32EE211A72EEDD -:101CE000611A30EEA42A71EE643A70EEE40A32EE24 -:101CF000442A73EEC43A70EE840A71EEE52A71EE5E -:101D0000A51A30EE653A30EE250A30EE050A81ED6F -:101D1000000A71EEC51A93ED014A90ED010A31EE09 -:101D2000041A31EE000A72EE852A33EE453A81ED4F -:101D3000010A01F1080200F10809A3F1040AA5F162 -:101D4000040C83ED002AC3ED012A85ED003AC5EDB0 -:101D5000013AC0ED000AC0ED011A06F10800009F2B -:101D600006F11001083308351836BF1E5FEA570721 -:101D700000F0FB8095ED000AD2ED000A30EE803ACB -:101D800030EEC01A95ED010AD2ED010AD3ED005AEA -:101D9000D3ED014A99ED005A70EE803A70EEC02AF8 -:101DA00072EEE50A72EEA52A72EEC52A99ED014A95 -:101DB00031EE240A30EE852A70EE441A73EE650A7D -:101DC00030EEC50A33EE253A73EEE40A31EE641ABA -:101DD00033EE053A70EEC40A31EE041A82ED003A91 -:101DE00093ED014A99ED013A73EE843A33EE833A6A -:101DF00082ED013A08325EF804BC9EED006A9AED6D -:101E0000007A03EE10BA77EE066A5AF804BCD8EDF1 -:101E1000007A9CED008A36EEC85A35EE675A76EEA7 -:101E2000886A04EE10BA58F804BC09EE10BA5CF8DF -:101E300004BC09EE90BA76EEA76AACF1040B74EE1E -:101E4000033A74EE435A37EE464A34EE694A74EE6A -:101E5000094A33EEE94A34EE494A78EE678ACAED18 -:101E6000006A38EEA53A78EEE55A79EE698A36EEE0 -:101E7000476A9BED007AA8F1040B73EE873ADBED1D -:101E8000006AAAF1040B73EEA66A38EE866ACBEDFF -:101E9000006AACF1040BD0ED003AD0ED016A21EEFE -:101EA000A37A02EE267A22EE232A83ED007A01EE4F -:101EB000E62A64EEA61A43EE631A83ED012ACCEDFE -:101EC000001A63EE261A44EEA31ACBED001AAEF107 -:101ED000040BD1ED001A91ED012A20EE213A00EE1B -:101EE000823A60EEA10A85ED003A40EE420A25EE04 -:101EF000610A04EE420AC5ED010A8EED000A25EEE4 -:101F0000020A04EE610A8BED000A96ED000AD6ED96 -:101F1000010A61EE001A42EEA01AC9ED001A62EE43 -:101F2000801A0830083310310835183641EE601A2F -:101F300026EE201A05EEC01A65EEA00AA8F1040BE1 -:101F4000C9ED011A88ED001A46EE000A7F1EAAF1BB -:101F5000080AACF1080CAEF1080E09F10809CBED46 -:101F6000000AA8F108087FF405AFD5ED000A92ED4C -:101F7000001AD5ED011A92ED012AD3ED014A99ED2F -:101F8000014AD3ED005A99ED005A31EE200A71EE64 -:101F9000600A32EE211A72EE611A30EEA42A71EE56 -:101FA000643A70EEE40A32EE442A73EEC43A70EEFC -:101FB000840A71EEE52A72EE852A30EE653A30EE3B -:101FC000250A30EE050A82ED000A33EE453A93ED1C -:101FD000014A99ED010A31EE041A31EE000A82ED50 -:101FE000010A71EEA51A90ED000A90ED011A22EE99 -:101FF000004A02EE814A22EE800A83ED004A02EE98 -:10200000410A83ED010A71EEC51A91ED000A91EDC6 -:10201000011A23EE002A03EE812A23EE800A85EDC1 -:10202000002A03EE410A85ED010A042396ED000A19 -:1020300096ED011A20EE802A01EE812A21EE800A17 -:1020400089ED002A00EEC10A89ED010A0099019A82 -:10205000059889B200F096FB009962680498042301 -:1020600089B200F08FFB009962680398042389B25B -:1020700000F088FB62680298009906B00423BDEC6A -:10208000048B89B201B0BDE8F04F00F07BBB0000CB -:102090002DE9F041064617463488012F0D46984633 -:1020A0002DD1291D002C52D014F0030000F009801E -:1020B00091ED000AB1EE400A81ED000A0831401EA0 -:1020C000F6D1A00800F01B8091ED000AB1EE400AA5 -:1020D00081ED000AD1ED020A91ED040AF1EE600AE9 -:1020E000C1ED020AB1EE400AD1ED060A81ED040A03 -:1020F000F1EE600AC1ED060A2031401EE4D1102C39 -:1021000015D0202C18D0402C1BD0802C0FD0B4F52B -:10211000807F11D0B4F5007F13D0B4F5806F06D066 -:10212000B4F5006F08D0B4F5805F0AD00FE02946FF -:102130003046FFF7EDFC0AE029463046FFF79EFDEA -:1021400005E0726801232146284600F01BFBB8F128 -:10215000000F04D0B268B189284600F0E4FD012FD9 -:1021600056D100EE104AB8EE400AF7EE000A002CF5 -:1021700080EE800A4CD014F003000ED0D5ED000A9A -:1021800060EE800AC5ED000A95ED011A21EE401AB5 -:1021900085ED011A0835401EF0D1A40800F0388002 -:1021A000D5ED000A60EE800AC5ED000A05F10800D1 -:1021B00095ED011A21EE401A85ED011AD0ED000AC5 -:1021C00090ED011A60EE800A21EE401AC0ED000A7F -:1021D00080ED011A0830D0ED000A90ED011A60EE92 -:1021E000800A21EE401AC0ED000A80ED011A083085 -:1021F000D0ED000A90ED011A60EE800A21EE401A3F -:10220000641EC0ED000A80ED011A00F10805C7D177 -:10221000BDE8F08181B00B48016851F00101016017 -:10222000006810F00100009000980748016851F024 -:1022300080510160006810F080500090009801B05B -:10224000704700BF60100240581002400022018019 -:1022500042600388102B24D0202B20D0402B1CD090 -:10226000802B18D0B3F5807F13D0B3F5007F0ED04C -:10227000B3F5806F09D0B3F5006F04D0B3F5805F7C -:102280001AD10F490EE00F490CE00F490AE00F493F -:1022900008E00F4906E00F4904E00F4902E00F494A -:1022A00000E00F498B898381D1F808C0C0F808C0CD -:1022B00049684160104670474FF0FF321046704742 -:1022C000205902081059020800590208F058020863 -:1022D000E0580208D0580208C0580208B058020856 -:1022E000A058020830B490F83C20012A01D1022005 -:1022F00030E0012280F83C20022280F83D20026874 -:10230000546802689368144D0268AA4204D134F4F8 -:10231000700422004C68144334F070040A681443BB -:10232000026854600268AA4207D00268B2F1804F86 -:1023300003D00268094CA24205D133F080038968BA -:102340000B4301688B60012180F83D10002180F86B -:102350003C10002030BC7047002C01400040014080 -:10236000016042600021C16081600120704710B4AB -:10237000C268521C436892FBF3F403FB1422836887 -:102380009A4202D17FF001000BE00268C368D15489 -:10239000C168491C426891FBF2F302FB1311C16052 -:1023A000012010BC70478268C3689A4201D10020A6 -:1023B0000CE002688368D25C0A708168491C42683C -:1023C00091FBF2F302FB13118160012070470000C2 -:1023D00037B5044600250A460194009502AB01A9D1 -:1023E000074878441A30F7F774FD019A15700028F1 -:1023F0004EBF04460198041B204603B030BD00BF09 -:102400002B8AFFFF704770477047704770477047CF -:1024100070477047704700002DE9F84304000D0035 -:10242000DFF880613078012801D1022064E00120CA -:1024300030704CF25037380000F03AF98046404690 -:10244000C0B2002854D100207060DFF85C01016840 -:1024500089050CD50168490506D5016831F480610C -:102460000160032030770EE0012030770BE0016837 -:10247000490506D5016831F480610160022030779A -:1024800001E000203077206801280DD1606800F05D -:1024900035F8380000F00CF98046DFF810010168CB -:1024A00031F00401016021E05FF0FF302860D4F8D2 -:1024B000089001E019F10109A168E0684118894517 -:1024C00014D26168484600F028F8380000F0F0F8AF -:1024D0008046DFF8D8100A68DFF8D40002400A60AE -:1024E0004046C0B20028E5D0C5F8009000F028F8BA -:1024F000002030704046C0B2BDE8F283C00705D569 -:10250000DFF8A800016851F004010160DFF89C00C9 -:10251000016851F4803101607047DFF890100A685B -:1025200032F47E72C00010F4FF6010430860086847 -:1025300050F002000860086850F48030086070476E -:102540001848017F0A00D2B2012A03D00A00D2B291 -:10255000032A10D1144A136833F40073136013680C -:1025600053F400631360136833F40063136013685B -:1025700053F4007313600A00D2B2022A02D0C9B227 -:1025800003290CD108490A6852F480520A600A688B -:1025900032F480520A600A6852F480620A600021B4 -:1025A0000177704780000020002002401420024084 -:1025B00005FCFFFF0246C9B2002013788B4205D00C -:1025C00012F801CBBCF1000FF7D170471046F7E7C6 -:1025D0002DE9F84F81460E0014001D005FF0000A3F -:1025E000DFF87C713878012801D1022047E0012012 -:1025F00038704CF25038404600F05AF8834658463E -:10260000C0B2002837D100207860DFF85801016897 -:10261000490506D5016831F48061016002203877F0 -:1026200001E000203877300022002B00B9F1000FC4 -:1026300004D100F070F85FF0010A0DE0B9F1010F6C -:1026400002D0B9F1020F07D1110000F071F8B9F111 -:10265000020F01D15FF4802A404600F029F883463A -:10266000BAF1000F05D04048016831EA0A0AC0F803 -:1026700000A0FFF765FF002038705846C0B2BDE8E3 -:10268000F28F002038490A68002A08D53A4A3B4BA5 -:1026900013603B4B13600968002900D50120C0B2CC -:1026A00070473148016851F00041016000207047D7 -:1026B00038B50400FBF732F805002C4A1068C00357 -:1026C00009D514F1010FF8D0FBF728F8401BA04200 -:1026D000F3D303201EE0116825480840002813D0DA -:1026E0001F494B6803434B6010F0404F05D0214B0E -:1026F0001C6810F040410C431C60810002D020F0A7 -:1027000040401060012005E01068C00701D501209D -:102710001060002032BD10B413490C6854F001045D -:102720000C600260BFF36F8F001D036010BC704728 -:1027300010B440230C4A146854F480241460EFF35E -:10274000108272B60C680460001D091D5B1E1C001F -:10275000E4B2002CF6D182F3108810BC7047000060 -:10276000800000200020024014200240102002407F -:10277000FAC30200182002400820024023016745E6 -:10278000AB89EFCD2DE9F44F2DED108B83B00A46C8 -:102790009FED037AADF80230ADF80010AAE100BF5A -:1027A000F304353F0024012301940293019BBDF8FB -:1027B0000240DDF84CE0BDF800B01B195C000EEBE8 -:1027C000C4081D195E199F1903EB070C0EEBC30912 -:1027D0000193634498ED006AD9ED006ADDF8049036 -:1027E0000EEBC508D8ED005A0EEBC60898ED005A5E -:1027F0000EEBC708D8ED004A0EEBCC0898ED004A66 -:102800000EEBC308D8ED003A0EF1040808EBC90E30 -:10281000DDF84C809EED003A08F1040E0EEBC40486 -:10282000D4ED002A08F1040404EBC50494ED002A59 -:1028300008F1040404EBC60604EBC303D6ED001A4A -:1028400093ED000A04EBC70696ED001A04EBCC06E4 -:10285000029CD6ED000A01EBC4031619D3ED008AE1 -:10286000971902EB070C02EB0C0E01EBCE0502EB05 -:102870000E08D5ED007A01EBC80538EEA78A38EED0 -:10288000E79AD5ED007A01EBC60502EB0809D5ED14 -:10289000009A79EEA78A01EBC90579EEE79AD5EDA2 -:1028A000007A01EBC70502EB090A95ED00AA3AEEA2 -:1028B00027BA01EBCA057AEE677A95ED00AA01EB1B -:1028C000CC05D5ED00AA7AEE8ABA3AEECAAA78EE1D -:1028D0004BAA38EE0B8A38EEEBBA78EEAB8A78EE7C -:1028E00028BA0D1DC3ED00BA05EBCE0578EE68BA27 -:1028F00095ED008AD3ED018A0D1D78EE88DA05EB9F -:10290000C80538EEC88AD5ED008A0D1D05EBC60551 -:1029100095ED00CA0D1D3CEE28EA05EBC9053CEE1D -:1029200068CAD5ED008A0D1D05EBC705D5ED00CAB7 -:102930000D1D3CEEA8FA05EBCA057CEEE88AD5ED44 -:1029400000CA0D1D05EBCC0595ED00DA7DEE2CEAF5 -:102950007DEE6CCA3DEECFDA7DEE8FDA3EEE6EFA9A -:102960007EEE2EEA3AEE8FEA7AEECFAA3DEEAEFA8E -:102970007DEEEEEA7DEE4BDA3DEE0BBA25EE2BDA7C -:1029800001EBCE0583ED01FA01EEAEDA85ED00DA5A -:102990000D1D65EE2EEA05EBCE0541EEEBEAC5ED29 -:1029A00000EA66EE0EBA01EBC70542EEADBAC5ED20 -:1029B00000BA0D1D26EE2DDA05EBC70702EECEDAC2 -:1029C00064EE2ADA01EBC90587ED00DA40EE8BDA16 -:1029D000C5ED00DA0F1D24EE0BBA07EBC90500EEBA -:1029E000EABA85ED00BA79EECAAA79EE8A9A29EE9A -:1029F00087BA7CEE6C9A29EE87DA7CEE2C9A6AEE26 -:102A000087AA69EE87BA79EE6A9A39EE2AAA37EE72 -:102A1000CB9A77EE8BAA38EEEBCA78EE4D7A38EE89 -:102A20000DBA78EEAB8A3AEE288A7AEE688A7BEEA7 -:102A30006ABA39EE8CAA7BEE2AAA79EECC9A37EEE6 -:102A4000C9BA77EE897A26EE889A01EBC60503EEBD -:102A50002B9A85ED009A0D1D66EEABBA05EBC60606 -:102A600043EE48BA23EEA88A01EBCA07C6ED00BAC6 -:102A700000EE2A8A23EEAA9A05EBCA0587ED008AA2 -:102A800000EE689A64EE8A8A01EBC8060F1D85ED98 -:102A9000009A41EE0B8A24EE8B8A07EBC805C6ED3F -:102AA000008A01EE4A8A85ED008A25EEA99A01EB9B -:102AB000CC050E1D02EE279A65EEA77A06EBCC0731 -:102AC000041985ED009A42EE697A5C45C7ED007AFB -:102AD00003EBC003FFF4C1AE029BADF800B05B1C7A -:102AE00093420293FFF462AE0846BDF80210C9009B -:102AF000ADF802101346BDF80040D2084FF0000BAD -:102B00004FEA0001D1ED000A02EB0B06971902EB28 -:102B1000070C02EB0C0E00EBCE0502EB0E0895ED58 -:102B2000000A30EE802A00EBC80530EEC00AD5ED71 -:102B3000000A00EBC60502EB080995ED001A71EEDC -:102B4000203A00EBC90531EE601AD5ED000A00EB22 -:102B5000C70502EB090AD5ED001A31EEA03A00EBE9 -:102B6000CA0571EEE00AD5ED001A00EBCC059B44D6 -:102B7000D5ED002A32EEA14A72EEE11A72EE432A36 -:102B800032EE032A33EEC43A73EE843A32EE234A2D -:102B900000EBCE0581ED004A32EE632A85ED002A76 -:102BA000051D05EBCE05D1ED013A95ED002A051D79 -:102BB00073EE824A05EBC80533EEC22AD5ED003A22 -:102BC000051D05EBC60595ED004A051D34EE235A9B -:102BD00005EBC90534EE634AD5ED003A051D05EB5A -:102BE000C705D5ED005A051D05EBCA0535EEA36AEC -:102BF000D5ED006A051D05EBCC0575EEE33AD5ED84 -:102C0000007A77EEA65A77EEE66A74EEC67A74EE2C -:102C1000864A35EE656A35EE255A051D74EE855AED -:102C200005EBCE0EC1ED015A74EEC54ACEED004A59 -:102C300000EBC70E32EE865A8EED005A00EBC90E3D -:102C400072EEC62A05EBC707CEED002A77EEC34A1F -:102C5000C7ED004A071D07EBC90537EE833A71EE51 -:102C6000612A31EE211A85ED003A62EE872A61EE83 -:102C7000071A34EE661A30EE623A21EE071A30EE89 -:102C8000220A34EE264A70EEE12A72EE414A24EE20 -:102C9000074A70EEA10A32EE011A33EEC42A73EE2F -:102CA000841A00EBC60570EE213AC5ED003A00EB40 -:102CB000CA0530EE610A00EBC80785ED000A73EE25 -:102CC000021A00EBCC05C7ED001A33EE422A85ED5F -:102CD000002A051D05EBC60631EE603A86ED003A86 -:102CE000071D07EBCA0631EE200A86ED000A05EB48 -:102CF000C80674EEE20A07EBCC05C6ED000A34EE16 -:102D0000A20AA34585ED000A01EBC301FFF4FAAE68 -:102D10000146082A1846BFF445AD03B0BDEC108B40 -:102D200001B0BDE8F08FF0B500230C001CD0148872 -:102D30005588A408AD0850F8246050F8257040F874 -:102D4000247040F82560071D061D57F8257056F8B9 -:102D5000246000F1040E9B1C4EF82470041D121D0B -:102D600044F825608B42E2D3F0BD00000000803FB4 -:102D70000000000043EC7F3FB00AC93C0FB17F3F29 -:102D80002FFB483D6D4E7F3F05A9963D6DC47E3FAC -:102D900036BDC83D24137E3F73B2FA3DAC3A7D3F49 -:102DA0008340163E283B7C3FA2102F3EBE147B3F43 -:102DB000C2C5473E9DC7793F135C603EF853783FDC -:102DC000CCCF783E07BA763F938E883E0BFA743F9D -:102DD00031A0943E4714733FE59AA03E0809713F25 -:102DE000D47CAC3E9ED86E3F2A44B83E5E836C3F96 -:102DF00015EFC33EA7096A3FCA7BCF3ED86B673F3A -:102E000080E8DA3E59AA643F7533E63E98C5613FD3 -:102E1000EA5AF13E05BE5E3F275DFC3E1A945B3FD9 -:102E20003D9C033F5348583F9BF5083F31DB543FDF -:102E3000DA390E3F3D4D513F2A68133F029F4D3F07 -:102E4000C07F183F12D1493FD17F1D3F03E4453F6A -:102E50009967223F70D8413F5636273FF9AE3D3F34 -:102E60004AEB2B3F4268393FBB85303FF304353F87 -:102E7000F304353FBB85303F4268393F4AEB2B3F77 -:102E8000F9AE3D3F5636273F70D8413F9967223F04 -:102E900003E4453FD17F1D3F12D1493FC07F183F1A -:102EA000029F4D3F2A68133F3D4D513FDA390E3F97 -:102EB00031DB543F9BF5083F5348583F3D9C033F4F -:102EC0001A945B3F275DFC3E05BE5E3FEA5AF13E29 -:102ED00098C5613F7533E63E59AA643F80E8DA3E03 -:102EE000D86B673FCA7BCF3EA7096A3F15EFC33E49 -:102EF0005E836C3F2A44B83E9ED86E3FD47CAC3E85 -:102F00000809713FE59AA03E4714733F31A0943EF3 -:102F10000BFA743F938E883E07BA763FCCCF783E4B -:102F2000F853783F135C603E9DC7793FC2C5473E6A -:102F3000BE147B3FA2102F3E283B7C3F8340163EB1 -:102F4000AC3A7D3F73B2FA3D24137E3F36BDC83D97 -:102F50006DC47E3F05A9963D6D4E7F3F2FFB483DDA -:102F60000FB17F3FB00AC93C43EC7F3F0000000037 -:102F70000000803FB00AC9BC43EC7F3F2FFB48BD37 -:102F80000FB17F3F05A996BD6D4E7F3F36BDC8BDD1 -:102F90006DC47E3F73B2FABD24137E3F834016BEDC -:102FA000AC3A7D3FA2102FBE283B7C3FC2C547BE36 -:102FB000BE147B3F135C60BE9DC7793FCCCF78BE0B -:102FC000F853783F938E88BE07BA763F31A094BEFF -:102FD0000BFA743FE59AA0BE4714733FD47CACBE95 -:102FE0000809713F2A44B8BE9ED86E3F15EFC3BE94 -:102FF0005E836C3FCA7BCFBEA7096A3F80E8DABE1A -:10300000D86B673F7533E6BE59AA643FEA5AF1BEF2 -:1030100098C5613F275DFCBE05BE5E3F3D9C03BF7A -:103020001A945B3F9BF508BF5348583FDA390EBFEF -:1030300031DB543F2A6813BF3D4D513FC07F18BF5D -:10304000029F4D3FD17F1DBF12D1493F996722BFDB -:1030500003E4453F563627BF70D8413F4AEB2BBFAC -:10306000F9AE3D3FBB8530BF4268393FF30435BF01 -:10307000F304353F426839BFBB85303FF9AE3DBFF1 -:103080004AEB2B3F70D841BF5636273F03E445BF7C -:103090009967223F12D149BFD17F1D3F029F4DBF8B -:1030A000C07F183F3D4D51BF2A68133F31DB54BFED -:1030B000DA390E3F534858BF9BF5083F1A945BBF5F -:1030C0003D9C033F05BE5EBF275DFC3E98C561BFCA -:1030D000EA5AF13E59AA64BF7533E63ED86B67BF22 -:1030E00080E8DA3EA7096ABFCA7BCF3E5E836CBF29 -:1030F00015EFC33E9ED86EBF2A44B83E080971BF83 -:10310000D47CAC3E471473BFE59AA03E0BFA74BF63 -:1031100031A0943E07BA76BF938E883EF85378BFAD -:10312000CCCF783E9DC779BF135C603EBE147BBF99 -:10313000C2C5473E283B7CBFA2102F3EAC3A7DBFA4 -:103140008340163E24137EBF73B2FA3D6DC47EBF2A -:1031500036BDC83D6D4E7FBF05A9963D0FB17FBFFF -:103160002FFB483D43EC7FBFB00AC93C000080BF45 -:103170000000000043EC7FBFB00AC9BC0FB17FBFA5 -:103180002FFB48BD6D4E7FBF05A996BD6DC47EBFA8 -:1031900036BDC8BD24137EBF73B2FABDAC3A7DBF45 -:1031A000834016BE283B7CBFA2102FBEBE147BBF3F -:1031B000C2C547BE9DC779BF135C60BEF85378BFD8 -:1031C000CCCF78BE07BA76BF938E88BE0BFA74BF99 -:1031D00031A094BE471473BFE59AA0BE080971BF21 -:1031E000D47CACBE9ED86EBF2A44B8BE5E836CBF92 -:1031F00015EFC3BEA7096ABFCA7BCFBED86B67BF36 -:1032000080E8DABE59AA64BF7533E6BE98C561BFCF -:10321000EA5AF1BE05BE5EBF275DFCBE1A945BBFD5 -:103220003D9C03BF534858BF9BF508BF31DB54BFDB -:10323000DA390EBF3D4D51BF2A6813BF029F4DBF03 -:10324000C07F18BF12D149BFD17F1DBF03E445BF66 -:10325000996722BF70D841BF563627BFF9AE3DBF30 -:103260004AEB2BBF426839BFBB8530BFF30435BF83 -:10327000F30435BFBB8530BF426839BF4AEB2BBF73 -:10328000F9AE3DBF563627BF70D841BF996722BF00 -:1032900003E445BFD17F1DBF12D149BFC07F18BF16 -:1032A000029F4DBF2A6813BF3D4D51BFDA390EBF93 -:1032B00031DB54BF9BF508BF534858BF3D9C03BF4B -:1032C0001A945BBF275DFCBE05BE5EBFEA5AF1BE25 -:1032D00098C561BF7533E6BE59AA64BF80E8DABEFF -:1032E000D86B67BFCA7BCFBEA7096ABF15EFC3BE45 -:1032F0005E836CBF2A44B8BE9ED86EBFD47CACBE81 -:10330000080971BFE59AA0BE471473BF31A094BEEF -:103310000BFA74BF938E88BE07BA76BFCCCF78BE47 -:10332000F85378BF135C60BE9DC779BFC2C547BE66 -:10333000BE147BBFA2102FBE283B7CBF834016BEAD -:10334000AC3A7DBF73B2FABD24137EBF36BDC8BD93 -:103350006DC47EBF05A996BD6D4E7FBF2FFB48BDD6 -:103360000FB17FBFB00AC9BC43EC7FBF0000008033 -:10337000000080BFB00AC93C43EC7FBF2FFB483D33 -:103380000FB17FBF05A9963D6D4E7FBF36BDC83DCD -:103390006DC47EBF73B2FA3D24137EBF8340163ED8 -:1033A000AC3A7DBFA2102F3E283B7CBFC2C5473E32 -:1033B000BE147BBF135C603E9DC779BFCCCF783E07 -:1033C000F85378BF938E883E07BA76BF31A0943EFB -:1033D0000BFA74BFE59AA03E471473BFD47CAC3E91 -:1033E000080971BF2A44B83E9ED86EBF15EFC33E90 -:1033F0005E836CBFCA7BCF3EA7096ABF80E8DA3E16 -:10340000D86B67BF7533E63E59AA64BFEA5AF13EEE -:1034100098C561BF275DFC3E05BE5EBF3D9C033F76 -:103420001A945BBF9BF5083F534858BFDA390E3FEB -:1034300031DB54BF2A68133F3D4D51BFC07F183F59 -:10344000029F4DBFD17F1D3F12D149BF9967223FD7 -:1034500003E445BF5636273F70D841BF4AEB2B3FA8 -:10346000F9AE3DBFBB85303F426839BFF304353FFD -:10347000F30435BF4268393FBB8530BFF9AE3D3FED -:103480004AEB2BBF70D8413F563627BF03E4453F78 -:10349000996722BF12D1493FD17F1DBF029F4D3F87 -:1034A000C07F18BF3D4D513F2A6813BF31DB543FE9 -:1034B000DA390EBF5348583F9BF508BF1A945B3F5B -:1034C0003D9C03BF05BE5E3F275DFCBE98C5613FC6 -:1034D000EA5AF1BE59AA643F7533E6BED86B673F1E -:1034E00080E8DABEA7096A3FCA7BCFBE5E836C3F25 -:1034F00015EFC3BE9ED86E3F2A44B8BE0809713F7F -:10350000D47CACBE4714733FE59AA0BE0BFA743F5F -:1035100031A094BE07BA763F938E88BEF853783FA9 -:10352000CCCF78BE9DC7793F135C60BEBE147B3F95 -:10353000C2C547BE283B7C3FA2102FBEAC3A7D3FA0 -:10354000834016BE24137E3F73B2FABD6DC47E3F26 -:1035500036BDC8BD6D4E7F3F05A996BD0FB17F3FFB -:103560002FFB48BD43EC7F3FB00AC9BC0000000000 -:103570000000803F900E493C11FB7F3FB00AC93CE0 -:1035800043EC7F3F2CC3163D98D37F3F2FFB483D34 -:103590000FB17F3F742B7B3DAB847F3F05A9963DE8 -:1035A0006D4E7F3F80B6AF3D580E7F3F36BDC83D64 -:1035B0006DC47E3F2EBCE13DB0707E3F73B2FA3DDC -:1035C00024137E3F86CF093ECCAB7D3F8340163E21 -:1035D000AC3A7D3FB6AB223EC9BF7C3FA2102F3E26 -:1035E000283B7C3FCF6E3B3ECDAC7B3FC2C5473EC8 -:1035F000BE147B3F0115543E02737A3F135C603E5C -:103600009DC7793F7F9A6C3E9812793FCCCF783E28 -:10361000F853783FC07D823EC58B773F938E883EBE -:1036200007BA763F229A8E3EC6DE753F31A0943EA1 -:103630000BFA743F86A09A3EDD0B743FE59AA03EDC -:103640004714733F128FA63E5213723FD47CAC3E98 -:103650000809713FEF63B23E73F56F3F2A44B83EED -:103660009ED86E3F4A1DBE3E93B26D3F15EFC33EDE -:103670005E836C3F53B9C93E0C4B6B3FCA7BCF3E58 -:10368000A7096A3F4136D53E3CBF683F80E8DA3E35 -:10369000D86B673F4F92E03E880F663F7533E63E3A -:1036A00059AA643FBBCBEB3E5A3C633FEA5AF13E1A -:1036B00098C5613FCBE0F63E2146603F275DFC3E6A -:1036C00005BE5E3FE4E7003F532D5D3F3D9C033F59 -:1036D0001A945B3F824B063F6AF2593F9BF5083FC5 -:1036E0005348583F6B9A0B3FE595563FDA390E3FEA -:1036F00031DB543FCDD3103F4918533F2A68133F65 -:103700003D4D513FD9F6153F1F7A4F3FC07F183FBF -:10371000029F4D3FC6021B3FF8BB4B3FD17F1D3F71 -:1037200012D1493FCBF61F3F65DE473F9967223FE5 -:1037300003E4453F25D2243F00E2433F5636273F6E -:1037400070D8413F1594293F67C73F3F4AEB2B3F55 -:10375000F9AE3D3FDE3B2E3F3B8F3B3FBB85303FCD -:103760004268393FC9C8323F233A373FF304353FF7 -:10377000F304353F233A373FC9C8323F4268393FE7 -:10378000BB85303F3B8F3B3FDE3B2E3FF9AE3D3F9D -:103790004AEB2B3F67C73F3F1594293F70D8413F05 -:1037A0005636273F00E2433F25D2243F03E4453FFE -:1037B0009967223F65DE473FCBF61F3F12D1493F55 -:1037C000D17F1D3FF8BB4B3FC6021B3F029F4D3FC1 -:1037D000C07F183F1F7A4F3FD9F6153F3D4D513FEF -:1037E0002A68133F4918533FCDD3103F31DB543F74 -:1037F000DA390E3FE595563F6B9A0B3F5348583FD9 -:103800009BF5083F6AF2593F824B063F1A945B3F93 -:103810003D9C033F532D5D3FE4E7003F05BE5E3F07 -:10382000275DFC3E2146603FCBE0F63E98C5613FF8 -:10383000EA5AF13E5A3C633FBBCBEB3E59AA643F88 -:103840007533E63E880F663F4F92E03ED86B673F88 -:1038500080E8DA3E3CBF683F4136D53EA7096A3F63 -:10386000CA7BCF3E0C4B6B3F53B9C93E5E836C3F66 -:1038700015EFC33E93B26D3F4A1DBE3E9ED86E3FCC -:103880002A44B83E73F56F3FEF63B23E0809713FBB -:10389000D47CAC3E5213723F128FA63E4714733F46 -:1038A000E59AA03EDD0B743F86A09A3E0BFA743F6A -:1038B00031A0943EC6DE753F229A8E3E07BA763F0F -:1038C000938E883EC58B773FC07D823EF853783F0C -:1038D000CCCF783E9812793F7F9A6C3E9DC7793F56 -:1038E000135C603E02737A3F0115543EBE147B3F69 -:1038F000C2C5473ECDAC7B3FCF6E3B3E283B7C3FB5 -:10390000A2102F3EC9BF7C3FB6AB223EAC3A7D3FF2 -:103910008340163ECCAB7D3F86CF093E24137E3FCD -:1039200073B2FA3DB0707E3F2EBCE13D6DC47E3F68 -:1039300036BDC83D580E7F3F80B6AF3D6D4E7F3FD0 -:1039400005A9963DAB847F3F742B7B3D0FB17F3F34 -:103950002FFB483D98D37F3F2CC3163D43EC7F3F60 -:10396000B00AC93C11FB7F3F900E493C0000803FEC -:103970000000000011FB7F3F900E49BC43EC7F3FED -:10398000B00AC9BC98D37F3F2CC316BD0FB17F3F8F -:103990002FFB48BDAB847F3F742B7BBD6D4E7F3FBB -:1039A00005A996BD580E7F3F80B6AFBD6DC47E3F62 -:1039B00036BDC8BDB0707E3F2EBCE1BD24137E3F36 -:1039C00073B2FABDCCAB7D3F86CF09BEAC3A7D3F2A -:1039D000834016BEC9BF7C3FB6AB22BE283B7C3FAE -:1039E000A2102FBECDAC7B3FCF6E3BBEBE147B3F43 -:1039F000C2C547BE02737A3F011554BE9DC7793FC9 -:103A0000135C60BE9812793F7F9A6CBEF853783F82 -:103A1000CCCF78BEC58B773FC07D82BE07BA763FDC -:103A2000938E88BEC6DE753F229A8EBE0BFA743F17 -:103A300031A094BEDD0B743F86A09ABE4714733F3D -:103A4000E59AA0BE5213723F128FA6BE0809713FBD -:103A5000D47CACBE73F56F3FEF63B2BE9ED86E3FB1 -:103A60002A44B8BE93B26D3F4A1DBEBE5E836C3F12 -:103A700015EFC3BE0C4B6B3F53B9C9BEA7096A3FD4 -:103A8000CA7BCFBE3CBF683F4136D5BED86B673FCF -:103A900080E8DABE880F663F4F92E0BE59AA643FC5 -:103AA0007533E6BE5A3C633FBBCBEBBE98C5613F66 -:103AB000EA5AF1BE2146603FCBE0F6BE05BE5E3F4E -:103AC000275DFCBE532D5D3FE4E700BF1A945B3FCA -:103AD0003D9C03BF6AF2593F824B06BF5348583F93 -:103AE0009BF508BFE595563F6B9A0BBF31DB543F02 -:103AF000DA390EBF4918533FCDD310BF3D4D513F6A -:103B00002A6813BF1F7A4F3FD9F615BF029F4D3F5A -:103B1000C07F18BFF8BB4B3FC6021BBF12D1493F45 -:103B2000D17F1DBF65DE473FCBF61FBF03E4453F96 -:103B3000996722BF00E2433F25D224BF70D8413F9E -:103B4000563627BF67C73F3F159429BFF9AE3D3FA3 -:103B50004AEB2BBF3B8F3B3FDE3B2EBF4268393FDA -:103B6000BB8530BF233A373FC9C832BFF304353F66 -:103B7000F30435BFC9C8323F233A37BFBB85303F56 -:103B8000426839BFDE3B2E3F3B8F3BBF4AEB2B3FAA -:103B9000F9AE3DBF1594293F67C73FBF5636273F53 -:103BA00070D841BF25D2243F00E243BF9967223F2E -:103BB00003E445BFCBF61F3F65DE47BFD17F1D3F06 -:103BC00012D149BFC6021B3FF8BB4BBFC07F183F95 -:103BD000029F4DBFD9F6153F1F7A4FBF2A68133F8A -:103BE0003D4D51BFCDD3103F491853BFDA390E3F79 -:103BF00031DB54BF6B9A0B3FE59556BF9BF5083FF1 -:103C0000534858BF824B063F6AF259BF3D9C033F61 -:103C10001A945BBFE4E7003F532D5DBF275DFC3E78 -:103C200005BE5EBFCBE0F63E214660BFEA5AF13EDC -:103C300098C561BFBBCBEB3E5A3C63BF7533E63ED4 -:103C400059AA64BF4F92E03E880F66BF80E8DA3E13 -:103C5000D86B67BF4136D53E3CBF68BFCA7BCF3EFD -:103C6000A7096ABF53B9C93E0C4B6BBF15EFC33EE2 -:103C70005E836CBF4A1DBE3E93B26DBF2A44B83E00 -:103C80009ED86EBFEF63B23E73F56FBFD47CAC3E7F -:103C9000080971BF128FA63E521372BFE59AA03E6B -:103CA000471473BF86A09A3EDD0B74BF31A0943ECB -:103CB0000BFA74BF229A8E3EC6DE75BF938E883E85 -:103CC00007BA76BFC07D823EC58B77BFCCCF783E2A -:103CD000F85378BF7F9A6C3E981279BF135C603EB0 -:103CE0009DC779BF0115543E02737ABFC2C5473ED6 -:103CF000BE147BBFCF6E3B3ECDAC7BBFA2102F3E30 -:103D0000283B7CBFB6AB223EC9BF7CBF8340163E7A -:103D1000AC3A7DBF86CF093ECCAB7DBF73B2FA3DD6 -:103D200024137EBF2EBCE13DB0707EBF36BDC83DC2 -:103D30006DC47EBF80B6AF3D580E7FBF05A9963DCE -:103D40006D4E7FBF742B7B3DAB847FBF2FFB483D07 -:103D50000FB17FBF2CC3163D98D37FBFB00AC93CBB -:103D600043EC7FBF900E493C11FB7FBF0000803FBA -:103D7000000000000FB17F3F2FFB483D6DC47E3F28 -:103D800036BDC83DAC3A7D3F8340163EBE147B3FF6 -:103D9000C2C5473EF853783FCCCF783E0BFA743F0C -:103DA00031A0943E0809713FD47CAC3E5E836C3FE9 -:103DB00015EFC33ED86B673F80E8DA3E98C5613F98 -:103DC000EA5AF13E1A945B3F3D9C033F31DB543F7E -:103DD000DA390E3F029F4D3FC07F183F03E4453F55 -:103DE0009967223FF9AE3D3F4AEB2B3FF304353F45 -:103DF000F304353F4AEB2B3FF9AE3D3F9967223F35 -:103E000003E4453FC07F183F029F4D3FDA390E3F24 -:103E100031DB543F3D9C033F1A945B3FEA5AF13E2D -:103E200098C5613F80E8DA3ED86B673F15EFC33E27 -:103E30005E836C3FD47CAC3E0809713F31A0943E58 -:103E40000BFA743FCCCF783EF853783FC2C5473E5B -:103E5000BE147B3F8340163EAC3A7D3F36BDC83D25 -:103E60006DC47E3F2FFB483D0FB17F3F0000000037 -:103E70000000803F2FFB48BD0FB17F3F36BDC8BD5E -:103E80006DC47E3F834016BEAC3A7D3FC2C547BE7F -:103E9000BE147B3FCCCF78BEF853783F31A094BEA0 -:103EA0000BFA743FD47CACBE0809713F15EFC3BE5A -:103EB0005E836C3F80E8DABED86B673FEA5AF1BE9A -:103EC00098C5613F3D9C03BF1A945B3FDA390EBF32 -:103ED00031DB543FC07F18BF029F4D3F996722BF1F -:103EE00003E4453F4AEB2BBFF9AE3D3FF30435BF3A -:103EF000F304353FF9AE3DBF4AEB2B3F03E445BF2A -:103F00009967223F029F4DBFC07F183F31DB54BFEE -:103F1000DA390E3F1A945BBF3D9C033F98C561BFE1 -:103F2000EA5AF13ED86B67BF80E8DA3E5E836CBF29 -:103F300015EFC33E080971BFD47CAC3E0BFA74BFC9 -:103F400031A0943EF85378BFCCCF783EBE147BBFEF -:103F5000C2C5473EAC3A7DBF8340163E6DC47EBFAE -:103F600036BDC83D0FB17FBF2FFB483D000080BF6D -:103F7000000000000FB17FBF2FFB48BD6DC47EBFA6 -:103F800036BDC8BDAC3A7DBF834016BEBE147BBFF4 -:103F9000C2C547BEF85378BFCCCF78BE0BFA74BF0A -:103FA00031A094BE080971BFD47CACBE5E836CBFE7 -:103FB00015EFC3BED86B67BF80E8DABE98C561BF96 -:103FC000EA5AF1BE1A945BBF3D9C03BF31DB54BF7C -:103FD000DA390EBF029F4DBFC07F18BF03E445BF53 -:103FE000996722BFF9AE3DBF4AEB2BBFF30435BF43 -:103FF000F30435BF4AEB2BBFF9AE3DBF996722BF33 -:1040000003E445BFC07F18BF029F4DBFDA390EBF22 -:1040100031DB54BF3D9C03BF1A945BBFEA5AF1BE2B -:1040200098C561BF80E8DABED86B67BF15EFC3BE25 -:104030005E836CBFD47CACBE080971BF31A094BE56 -:104040000BFA74BFCCCF78BEF85378BFC2C547BE59 -:10405000BE147BBF834016BEAC3A7DBF36BDC8BD23 -:104060006DC47EBF2FFB48BD0FB17FBF0000008035 -:10407000000080BF2FFB483D0FB17FBF36BDC83D5C -:104080006DC47EBF8340163EAC3A7DBFC2C5473E7D -:10409000BE147BBFCCCF783EF85378BF31A0943E9E -:1040A0000BFA74BFD47CAC3E080971BF15EFC33E58 -:1040B0005E836CBF80E8DA3ED86B67BFEA5AF13E98 -:1040C00098C561BF3D9C033F1A945BBFDA390E3F30 -:1040D00031DB54BFC07F183F029F4DBF9967223F1D -:1040E00003E445BF4AEB2B3FF9AE3DBFF304353F38 -:1040F000F30435BFF9AE3D3F4AEB2BBF03E4453F28 -:10410000996722BF029F4D3FC07F18BF31DB543FEC -:10411000DA390EBF1A945B3F3D9C03BF98C5613FDF -:10412000EA5AF1BED86B673F80E8DABE5E836C3F27 -:1041300015EFC3BE0809713FD47CACBE0BFA743FC7 -:1041400031A094BEF853783FCCCF78BEBE147B3FED -:10415000C2C547BEAC3A7D3F834016BE6DC47E3FAC -:1041600036BDC8BD0FB17F3F2FFB48BD000000002A -:104170000000803FB00AC93C43EC7F3F2FFB483D25 -:104180000FB17F3F05A9963D6D4E7F3F36BDC83DBF -:104190006DC47E3F73B2FA3D24137E3F8340163ECA -:1041A000AC3A7D3FA2102F3E283B7C3FC2C5473E24 -:1041B000BE147B3F135C603E9DC7793FCCCF783EF9 -:1041C000F853783F938E883E07BA763F31A0943EED -:1041D0000BFA743FE59AA03E4714733FD47CAC3E83 -:1041E0000809713F2A44B83E9ED86E3F15EFC33E82 -:1041F0005E836C3FCA7BCF3EA7096A3F80E8DA3E08 -:10420000D86B673F7533E63E59AA643FEA5AF13EE0 -:1042100098C5613F275DFC3E05BE5E3F3D9C033F68 -:104220001A945B3F9BF5083F5348583FDA390E3FDD -:1042300031DB543F2A68133F3D4D513FC07F183F4B -:10424000029F4D3FD17F1D3F12D1493F9967223FC9 -:1042500003E4453F5636273F70D8413F4AEB2B3F9A -:10426000F9AE3D3FBB85303F4268393FF304353FEF -:10427000F304353F4268393FBB85303FF9AE3D3FDF -:104280004AEB2B3F70D8413F5636273F03E4453F6A -:104290009967223F12D1493FD17F1D3F029F4D3F79 -:1042A000C07F183F3D4D513F2A68133F31DB543FDB -:1042B000DA390E3F5348583F9BF5083F1A945B3F4D -:1042C0003D9C033F05BE5E3F275DFC3E98C5613FB8 -:1042D000EA5AF13E59AA643F7533E63ED86B673F10 -:1042E00080E8DA3EA7096A3FCA7BCF3E5E836C3F17 -:1042F00015EFC33E9ED86E3F2A44B83E0809713F71 -:10430000D47CAC3E4714733FE59AA03E0BFA743F51 -:1043100031A0943E07BA763F938E883EF853783F9B -:10432000CCCF783E9DC7793F135C603EBE147B3F87 -:10433000C2C5473E283B7C3FA2102F3EAC3A7D3F92 -:104340008340163E24137E3F73B2FA3D6DC47E3F18 -:1043500036BDC83D6D4E7F3F05A9963D0FB17F3FED -:104360002FFB483D43EC7F3FB00AC93C0000803F33 -:104370000000000043EC7F3FB00AC9BC0FB17F3F93 -:104380002FFB48BD6D4E7F3F05A996BD6DC47E3F96 -:1043900036BDC8BD24137E3F73B2FABDAC3A7D3F33 -:1043A000834016BE283B7C3FA2102FBEBE147B3F2D -:1043B000C2C547BE9DC7793F135C60BEF853783FC6 -:1043C000CCCF78BE07BA763F938E88BE0BFA743F87 -:1043D00031A094BE4714733FE59AA0BE0809713F0F -:1043E000D47CACBE9ED86E3F2A44B8BE5E836C3F80 -:1043F00015EFC3BEA7096A3FCA7BCFBED86B673F24 -:1044000080E8DABE59AA643F7533E6BE98C5613FBD -:10441000EA5AF1BE05BE5E3F275DFCBE1A945B3FC3 -:104420003D9C03BF5348583F9BF508BF31DB543FC9 -:10443000DA390EBF3D4D513F2A6813BF029F4D3FF1 -:10444000C07F18BF12D1493FD17F1DBF03E4453F54 -:10445000996722BF70D8413F563627BFF9AE3D3F1E -:104460004AEB2BBF4268393FBB8530BFF304353F71 -:10447000F30435BFBB85303F426839BF4AEB2B3F61 -:10448000F9AE3DBF5636273F70D841BF9967223FEE -:1044900003E445BFD17F1D3F12D149BFC07F183F04 -:1044A000029F4DBF2A68133F3D4D51BFDA390E3F81 -:1044B00031DB54BF9BF5083F534858BF3D9C033F39 -:1044C0001A945BBF275DFC3E05BE5EBFEA5AF13E13 -:1044D00098C561BF7533E63E59AA64BF80E8DA3EED -:1044E000D86B67BFCA7BCF3EA7096ABF15EFC33E33 -:1044F0005E836CBF2A44B83E9ED86EBFD47CAC3E6F -:10450000080971BFE59AA03E471473BF31A0943EDD -:104510000BFA74BF938E883E07BA76BFCCCF783E35 -:10452000F85378BF135C603E9DC779BFC2C5473E54 -:10453000BE147BBFA2102F3E283B7CBF8340163E9B -:10454000AC3A7DBF73B2FA3D24137EBF36BDC83D81 -:104550006DC47EBF05A9963D6D4E7FBF2FFB483DC4 -:104560000FB17FBFB00AC93C43EC7FBF0800000217 -:104570001000000418000006200000082800000AAF -:104580003000000C3800000E48004002500040048B -:1045900058004006600040086800400A7000400C67 -:1045A0007800400E88008002900080049800800609 -:1045B000A0008008A800800AB000800CB800800E1F -:1045C000C800C002D000C004D800C006E000C00887 -:1045D000E800C00AF000C00CF800C00E080100039B -:1045E0001001000518010007200100092801000B37 -:1045F0003001000D3801000F480140035001400513 -:1046000058014007600140096801400B7001400DEE -:104610007801400F88018003900180059801800790 -:10462000A0018009A801800BB001800DB801800FA6 -:10463000C801C003D001C005D801C007E001C0090E -:10464000E801C00BF001C00DF801C00F1002080412 -:1046500018020806200208082802080A3002080C7E -:104660003802080E50024804580248066002480802 -:104670006802480A7002480C7802480E90028804CA -:1046800098028806A0028808A802880AB002880C4E -:10469000B802880ED002C804D802C806E002C808D2 -:1046A000E802C80AF002C80CF802C80E1003080598 -:1046B00018030807200308092803080B3003080D16 -:1046C0003803080F5003480558034807600348099A -:1046D0006803480B7003480D7803480F9003880562 -:1046E00098038807A0038809A803880BB003880DE6 -:1046F000B803880FD003C805D803C807E003C8096A -:10470000E803C80BF003C80DF803C80F180410061F -:10471000200410082804100A3004100C3804100E6D -:1047200058045006600450086804500A7004500C85 -:104730007804500E98049006A0049008A804900AEB -:10474000B004900CB804900ED804D006E004D00851 -:10475000E804D00AF004D00CF804D00E18051007B5 -:10476000200510092805100B3005100D3805100F15 -:1047700058055007600550096805500B7005500D2D -:104780007805500F98059007A0059009A805900B93 -:10479000B005900DB805900FD805D007E005D009F9 -:1047A000E805D00BF005D00DF805D00F200618084D -:1047B0002806180A3006180C3806180E6006580825 -:1047C0006806580A7006580C7806580EA006980815 -:1047D000A806980AB006980CB806980EE006D80805 -:1047E000E806D80AF006D80CF806D80E20071809F3 -:1047F0002807180B3007180D3807180F60075809DD -:104800006807580B7007580D7807580FA0079809CC -:10481000A807980BB007980DB807980FE007D809BC -:10482000E807D80BF007D80DF807D80F2808200A9A -:104830003008200C3808200E6808600A7008600CE8 -:104840007808600EA808A00AB008A00CB808A00E4E -:10485000E808E00AF008E00CF808E00E2809200B50 -:104860003009200D3809200F6809600B7009600DB0 -:104870007809600FA809A00BB009A00DB809A00F16 -:10488000E809E00BF009E00DF809E00F300A280C08 -:10489000380A280E700A680C780A680EB00AA80C4C -:1048A000B80AA80EF00AE80CF80AE80E300B280D3A -:1048B000380B280F700B680D780B680FB00BA80D24 -:1048C000B80BA80FF00BE80DF80BE80F380C300E02 -:1048D000780C700EB80CB00EF80CF00E380D300FCE -:1048E000780D700FB80DB00FF80DF00F0800000232 -:1048F00010000004180000062000400028004002BC -:10490000300040043800400640008000480080022B -:1049100050008004580080066000C0006800C0029B -:104920007000C0047800C006800000018800000309 -:104930009000000598000007A0004001A800400377 -:10494000B0004005B8004007C0008001C8008003E7 -:10495000D0008005D8008007E000C001E800C00357 -:10496000F000C005F800C0070001000208010802BD -:1049700010010804180108062001800228014802DD -:10498000300148043801480640010003480188020C -:104990005001880458018806600180036801C8023C -:1049A0007001C8047801C806800108028801080364 -:1049B0009001080598010807A0018802A801480392 -:1049C000B0014805B8014807C0010803C8018803C1 -:1049D000D0018805D8018807E0018803E801C803F1 -:1049E000F001C805F801C80708021002000200041F -:1049F000100210041802100620028004280250023F -:104A0000300250043802500640020005480290026D -:104A10005002900458029006600280056802D0029D -:104A20007002D0047802D0068002080488021003C5 -:104A30009002100598021007A0028804A8025003F3 -:104A4000B0025005B8025007C0020805C802900322 -:104A5000D0029005D8029007E0028805E802D00352 -:104A6000F002D005F802D007000300060803100684 -:104A70001003180418031806200380062803900664 -:104A80003003580438035806400300074803100752 -:104A90005003980458039806600380076803900742 -:104AA0007003D8047803D806800308068803180624 -:104AB0009003180598031807A0038806A803980612 -:104AC000B0035805B8035807C0030807C803180700 -:104AD000D0039805D8039807E0038807E8039807F0 -:104AE000F003D805F803D807080480041004200454 -:104AF0001804200628048005300460043804600689 -:104B000040040006480488045004A0045804A00689 -:104B100060041006680488057004E0047804E00668 -:104B2000880480069004200598042007A004080645 -:104B3000A8048007B0046005B8046007C00420061C -:104B4000C8048806D004A005D804A007E00418060D -:104B5000E8048807F004E005F804E00708052005EC -:104B600010058005180528062805900530058805DC -:104B700038056806400500074805200750058007EE -:104B80005805A80660050807680598057005880798 -:104B90007805E8068805900698052807A0052806E8 -:104BA000A8059007B0052807B8056807C0051007D5 -:104BB000C8059806D0059007D805A807E00518078E -:104BC000E8059807F0059807F805E8071806300685 -:104BD000380670064006000748068007500608079A -:104BE0005806B0066006100768069007700618079A -:104BF0007806F0068806A00698063007A806A007E3 -:104C0000B0068807B8067007C0062007C806A007C8 -:104C1000D0062807D806B007E0063007E806A80740 -:104C2000F0069807F806F007480750073807980776 -:104C300050076007580770076007C0076807D0076C -:104C40007807F0077007E007B807F007A807B00774 -:104C5000D807F007C807E007E807F0070000803F23 -:104C6000000000006DC47E3F36BDC83DBE147B3FD2 -:104C7000C2C5473E0BFA743F31A0943E5E836C3F41 -:104C800015EFC33E98C5613FEA5AF13E31DB543F10 -:104C9000DA390E3F03E4453F9967223FF304353F7D -:104CA000F304353F9967223F03E4453FDA390E3F6D -:104CB00031DB543FEA5AF13E98C5613F15EFC33EE0 -:104CC0005E836C3F31A0943E0BFA743FC2C5473EF1 -:104CD000BE147B3F36BDC83D6DC47E3F0000000062 -:104CE0000000803F36BDC8BD6DC47E3FC2C547BE13 -:104CF000BE147B3F31A094BE0BFA743F15EFC3BEC8 -:104D00005E836C3FEA5AF1BE98C5613FDA390EBF47 -:104D100031DB543F996722BF03E4453FF30435BFBD -:104D2000F304353F03E445BF9967223F31DB54BFAD -:104D3000DA390E3F98C561BFEA5AF13E5E836CBF17 -:104D400015EFC33E0BFA74BF31A0943EBE147BBF77 -:104D5000C2C5473E6DC47EBF36BDC83D000080BFA2 -:104D6000000000006DC47EBF36BDC8BDBE147BBF51 -:104D7000C2C547BE0BFA74BF31A094BE5E836CBF40 -:104D800015EFC3BE98C561BFEA5AF1BE31DB54BF0F -:104D9000DA390EBF03E445BF996722BFF30435BF7C -:104DA000F30435BF996722BF03E445BFDA390EBF6C -:104DB00031DB54BFEA5AF1BE98C561BF15EFC3BEDF -:104DC0005E836CBF31A094BE0BFA74BFC2C547BEF0 -:104DD000BE147BBF36BDC8BD6DC47EBF0000008061 -:104DE000000080BF36BDC83D6DC47EBFC2C5473E12 -:104DF000BE147BBF31A0943E0BFA74BF15EFC33EC7 -:104E00005E836CBFEA5AF13E98C561BFDA390E3F46 -:104E100031DB54BF9967223F03E445BFF304353FBC -:104E2000F30435BF03E4453F996722BF31DB543FAC -:104E3000DA390EBF98C5613FEA5AF1BE5E836C3F16 -:104E400015EFC3BE0BFA743F31A094BEBE147B3F76 -:104E5000C2C547BE6DC47E3F36BDC8BD0000000060 -:104E60000000803F2FFB483D0FB17F3F36BDC83D5E -:104E70006DC47E3F8340163EAC3A7D3FC2C5473E7F -:104E8000BE147B3FCCCF783EF853783F31A0943EA0 -:104E90000BFA743FD47CAC3E0809713F15EFC33E5A -:104EA0005E836C3F80E8DA3ED86B673FEA5AF13E9A -:104EB00098C5613F3D9C033F1A945B3FDA390E3F32 -:104EC00031DB543FC07F183F029F4D3F9967223F1F -:104ED00003E4453F4AEB2B3FF9AE3D3FF304353F3A -:104EE000F304353FF9AE3D3F4AEB2B3F03E4453F2A -:104EF0009967223F029F4D3FC07F183F31DB543FEF -:104F0000DA390E3F1A945B3F3D9C033F98C5613FE1 -:104F1000EA5AF13ED86B673F80E8DA3E5E836C3F29 -:104F200015EFC33E0809713FD47CAC3E0BFA743FC9 -:104F300031A0943EF853783FCCCF783EBE147B3FEF -:104F4000C2C5473EAC3A7D3F8340163E6DC47E3FAE -:104F500036BDC83D0FB17F3F2FFB483D0000803F6D -:104F6000000000000FB17F3F2FFB48BD6DC47E3FA6 -:104F700036BDC8BDAC3A7D3F834016BEBE147B3FF4 -:104F8000C2C547BEF853783FCCCF78BE0BFA743F0A -:104F900031A094BE0809713FD47CACBE5E836C3FE7 -:104FA00015EFC3BED86B673F80E8DABE98C5613F96 -:104FB000EA5AF1BE1A945B3F3D9C03BF31DB543F7C -:104FC000DA390EBF029F4D3FC07F18BF03E4453F53 -:104FD000996722BFF9AE3D3F4AEB2BBFF304353F43 -:104FE000F30435BF4AEB2B3FF9AE3DBF9967223F33 -:104FF00003E445BFC07F183F029F4DBFDA390E3F23 -:1050000031DB54BF3D9C033F1A945BBFEA5AF13E2B -:1050100098C561BF80E8DA3ED86B67BF15EFC33E25 -:105020005E836CBFD47CAC3E080971BF31A0943E56 -:105030000BFA74BFCCCF783EF85378BFC2C5473E59 -:10504000BE147BBF8340163EAC3A7DBF36BDC83D23 -:105050006DC47EBF2FFB483D0FB17FBF080000022B -:10506000100040001800400220008000280080024C -:105070003000C0003800C0024000000148000003BA -:105080005000400158004003600080016800800328 -:105090007000C0017800C003800000028800080290 -:1050A0009000000398004802A0000802A8008802AF -:1050B000B000C800B800C802C0000801C80008035A -:1050C000D0004801D8004803E0008801E8008803C8 -:1050D000F000C801F800C8030801100210014001E7 -:1050E00018015002200100032801900230014801FC -:1050F0003801D002480110035801500360019001AB -:10510000680190037001D0017801D0038001400252 -:10511000880118029001400398015802A00148023A -:10512000A8019802B0014803B801D802C00150029A -:10513000C8011803D0015003D8015803E0015802F8 -:10514000E8019803F0015803F801D803080220028F -:1051500010024002180260022802A002300260021F -:105160003802E002400200034802200350024003DC -:1051700058026003600220036802A003700260030B -:105180007802E0038802A002900280039802A00344 -:10519000B0028803B802E802C0028003C8022803F4 -:1051A000D0029003D8026803E002A003E802A8033B -:1051B000F0029803F802E8030803200310034003F9 -:1051C000180360032803880330036003380398033F -:1051D00048036003580370036803B0037803F003C7 -:1051E0008803A0039003C0039803E003B003C8033F -:1051F000B803E803C803E003D803F0030000803FCE -:1052000000000000BE147B3FC2C5473E5E836C3F7A -:1052100015EFC33E31DB543FDA390E3FF304353F1F -:10522000F304353FDA390E3F31DB543F15EFC33E0F -:105230005E836C3FC2C5473EBE147B3F000000004A -:105240000000803FC2C547BEBE147B3F15EFC3BE02 -:105250005E836C3FDA390EBF31DB543FF30435BF58 -:10526000F304353F31DB54BFDA390E3F5E836CBF48 -:1052700015EFC33EBE147BBFC2C5473E000080BFD2 -:1052800000000000BE147BBFC2C547BE5E836CBF7A -:1052900015EFC3BE31DB54BFDA390EBFF30435BF9F -:1052A000F30435BFDA390EBF31DB54BF15EFC3BE8F -:1052B0005E836CBFC2C547BEBE147BBF00000080CA -:1052C000000080BFC2C5473EBE147BBF15EFC33E82 -:1052D0005E836CBFDA390E3F31DB54BFF304353FD8 -:1052E000F30435BF31DB543FDA390EBF5E836C3FC8 -:1052F00015EFC3BEBE147B3FC2C547BE0000000011 -:105300000000803F36BDC83D6DC47E3FC2C5473EEC -:10531000BE147B3F31A0943E0BFA743F15EFC33EA1 -:105320005E836C3FEA5AF13E98C5613FDA390E3F21 -:1053300031DB543F9967223F03E4453FF304353F97 -:10534000F304353F03E4453F9967223F31DB543F87 -:10535000DA390E3F98C5613FEA5AF13E5E836C3FF1 -:1053600015EFC33E0BFA743F31A0943EBE147B3F51 -:10537000C2C5473E6DC47E3F36BDC83D0000803F7C -:10538000000000006DC47E3F36BDC8BDBE147B3F2B -:10539000C2C547BE0BFA743F31A094BE5E836C3F1A -:1053A00015EFC3BE98C5613FEA5AF1BE31DB543FE9 -:1053B000DA390EBF03E4453F996722BFF304353F56 -:1053C000F30435BF9967223F03E445BFDA390E3F46 -:1053D00031DB54BFEA5AF13E98C561BF15EFC33EB9 -:1053E0005E836CBF31A0943E0BFA74BFC2C5473ECA -:1053F000BE147BBF36BDC83D6DC47EBFFEE7FEE771 -:10540000FEE7FEE7FEE770477047704780B500F0A3 -:105410005DF801BD80B52248F8F79BFA01BD38B5AB -:105420000020204C2000F7F74EFB1F4D01222900E1 -:105430002000F7F716FB1D48006829784269521CC6 -:10544000C36892FBF3F403FB142203699A4203D06E -:10545000C9B20830FCF78BFF31BD38B50020144CC1 -:105460002000F7F730FB134D012229002000F7F749 -:10547000F8FA1148006829784269521CC36892FB07 -:10548000F3F403FB142203699A4203D0C9B2083033 -:10549000FCF76DFF31BD80B50848FCF7E7F801BDAA -:1054A00098F60020CCF300208AF700207CF700203B -:1054B00050F400208BF7002080F700204CF60020ED -:1054C00080B52020F9F73AFD01BD000003480168CE -:1054D000034A127889180160704700BF78F70020EE -:1054E0000C0100200000803F000000005E836C3F44 -:1054F00015EFC33EF304353FF304353F15EFC33ECC -:105500005E836C3F000000000000803F15EFC3BECB -:105510005E836C3FF30435BFF304353F5E836CBF9D -:1055200015EFC33E000080BF000000005E836CBF2B -:1055300015EFC3BEF30435BFF30435BF15EFC3BE8B -:105540005E836CBF00000080000080BF15EFC33E8B -:105550005E836CBFF304353FF30435BF5E836C3F5D -:1055600015EFC3BE000000000000803FC2C5473EEB -:10557000BE147B3F15EFC33E5E836C3FDA390E3FAE -:1055800031DB543FF304353FF304353F31DB543F07 -:10559000DA390E3F5E836C3F15EFC33EBE147B3F8E -:1055A000C2C5473E0000803F00000000BE147B3FA4 -:1055B000C2C547BE5E836C3F15EFC3BE31DB543FAF -:1055C000DA390EBFF304353FF30435BFDA390E3F45 -:1055D00031DB54BF15EFC33E5E836CBFC2C5473E8F -:1055E000BE147BBF08004000100080001800C000FF -:1055F0002000000128004001300080013800C00177 -:10560000500088005800C800600008016800480188 -:10561000700088017800C8019800D000A000100137 -:10562000A8005001B0009001B800D001E0001801BE -:10563000E8005801F0009801F800D8012801600145 -:105640003001A0013801E0017001A8017801E801F2 -:10565000B801F00108004000100080001800C000F0 -:105660002000400028004800300088003800C800B2 -:1056700040008000480050005800D00050009000CA -:105680006000C0006800D000700098007800D8006A -:105690008800C0009000A000A800D0009800E000A2 -:1056A000B000D000B800E800D800F000C800E0006A -:1056B000E800F000453A5C595C4941525C73746DF6 -:1056C00033326C3433315F786C5F63757272656E40 -:1056D000745F776974685F756172745C4170705C47 -:1056E0005372635C696E666C6173682E63000000C0 -:1056F00030B4002512E050F8042BD30744BF4A44CD -:10570000521E091F042942F8045BFAD213468C0783 -:1057100044BF15809B1CC90748BF1D7050F8041B6F -:105720000029E8D130BC7047A0860100400D03007D -:10573000801A060000350C0040420F0080841E00D5 -:1057400000093D0000127A000024F40000366E01CA -:105750000048E801006CDC025B4552524F525D206C -:105760005B25733A25645D20696E666C6173682001 -:105770006572617365206572726F72210D0A000097 -:1057800008004000180048001000400028005000A9 -:1057900020004000380058003000480058006800E1 -:1057A000480060006800700010B50749794418315E -:1057B000064C7C44163404E00A68081D11448847EE -:1057C0000146A142F8D110BD2C00000048000000A5 -:1057D0004EF68851CEF20001086840F4700008606F -:1057E000BFF34F8FBFF36F8F4FF00170E1EE100AE0 -:1057F00070470000FDFEFFFF7CF600001001002056 -:10580000000000009355FFFF3C0200001E01000055 -:105810000000002000F00DF8002801D0FFF7C4FFC1 -:10582000AFF300800020AFF30080F8F765FF00F0D1 -:1058300002F80120704700F001B800000746384622 -:10584000F6F758F9FBE700000548014603B468463F -:1058500080F30988AFF30080FFF7BAFFFFF7DAFFA4 -:10586000A5EDF5FE73746172745F7265675F6164C4 -:105870006472206572726F723A2564007265675FA8 -:105880006E756D206572726F723A256400000000BB -:1058900000000000000000000102030406070809E0 -:1058A00010000000E45402088057020814000000B1 -:1058B00020000000FC51020854560208300000008D -:1058C000400000005C4C0208E4550208380000006B -:1058D000800000006C3D02085C500208D00000000F -:1058E000000100006C2D0208EC480208B80100001D -:1058F00000020000CC7E01086C450208C0010000D7 -:10590000000400008C01010808BB01080807000022 -:10591000000800008C8100080C610108E00E000006 -:10592000001000008C0100088C410108C00F00002D -:105930000148804701480047415902084958020878 -:105940000248016851F470010160704788ED00E081 -:105950000000000001020304FFF7FEBFFFF7FEBFD7 +:10000000884201D20027F2E71DB0F0BD2DE9F04192 +:1000100004000D00160000200020761E00270CE0D2 +:10002000287845494978884207D07A1E691CA84635 +:100030004046FAF767FF7F1E761EB74216D22000B1 +:1000400000F0A0FCE8557F1C012FE9D06878032858 +:1000500003D1082F01D1380009E068781028ECD1CD +:10006000A87909308742E8D1380000E00020BDE8D7 +:10007000F08170B504000D00160016F1FE01C9B242 +:100080002800FFF79AFD80B205EB060111F8021C6B +:1000900005EB060212F8012C51EA022188421CD11C +:1000A0006878032802D06878102816D1002610E05E +:1000B0002C4A6878310089B252F83110884207D151 +:1000C0002900200033009BB202EBC3025268904724 +:1000D000761C300080B20228EAD370BD70B50400EF +:1000E000200000F03EFC00281CD01F4801680129B8 +:1000F00003DA0168491C016014E00021016032212B +:1001000000221A4D2E00300001F0AEFC32222900F0 +:100110002000FFF77BFF0200012A03DB29002000FB +:10012000FFF7A7FF70BD00000CED00E00400FA052A +:1001300040F70020000800487400002070F70020FD +:1001400088F7002038F500201C0000202458020801 +:100150003C5802083CF200207CF7002080F7002089 +:100160004C0000200C00002074F70020E0F6002076 +:1001700010B500240320FEF76CFF0F20FEF754FBA0 +:10018000002801D0012401E002F024F82000C0B2D0 +:1001900010BD000010B5040002D14FF0FF3010BDBB +:1001A000102102F033F8010004D120202082002029 +:1001B0005749616110BD10B5040002D14FF0FF3006 +:1001C00010BD202102F022F8010004D1402020823D +:1001D00000205049616110BD10B5040002D14FF0FC +:1001E000FF3010BD402102F011F8010004D1802041 +:1001F000208200204849616110BD10B5040002D181 +:100200004FF0FF3010BD802102F000F8010005D151 +:100210004FF48070208200204049616110BD10B50C +:10022000040002D14FF0FF3010BD4FF4807101F097 +:10023000EDFF010005D14FF4007020820020384905 +:10024000616110BD10B5040002D14FF0FF3010BD48 +:100250004FF4007101F0DAFF010005D14FF4806026 +:10026000208200202F49616110BD10B5040002D129 +:100270004FF0FF3010BD4FF4806101F0C7FF010067 +:1002800005D14FF40060208200202749616110BD34 +:1002900010B5040002D14FF0FF3010BD4FF40061E3 +:1002A00001F0B4FF010005D14FF4805020820020FE +:1002B0001E49616110BD202924D0402920D0802909 +:1002C0001CD0B1F5807F17D0B1F5007F12D0B1F509 +:1002D000806F0DD0B1F5006F08D0B1F5805F13D1FC +:1002E00013490A0013D14FF0FF3070471149F8E766 +:1002F0001149F6E71149F4E71149F2E71149F0E72E +:100300001149EEE71149ECE74FF0FF30704708471D +:1003100024550208BC5202081C4E02082C41020857 +:100320002C350208CC8E01088C2101088CC10008F4 +:10033000910202086B020208450202081F0202082D +:10034000FB010208D9010208B70102089501020861 +:1003500038B586B0142200216846FEF7D9FA5E4807 +:10036000016851F004010160016811F00401059178 +:100370000599016851F080010160016811F0800168 +:1003800005910599016851F001010160016811F0C2 +:10039000010105910599016851F0020101600168B0 +:1003A00011F0020105910599016851F00801016001 +:1003B000006810F0080005900598484C002249F2AA +:1003C000D0312000FEF7B1FD454D00224FF44071C1 +:1003D0002800FEF7AAFD202000905FF44410019051 +:1003E0000020029069462000FEF7D2FC00220F2177 +:1003F0001720FEF732FE1720FEF740FE4FF4C040F4 +:100400000090002001900020029069462000FEF735 +:10041000BFFC002210212000FEF787FD1020009075 +:1004200001200190002002900020039069462000E6 +:10043000FEF7AEFC49F2C030009001200190002090 +:1004400002900020039069462000FEF7A1FC0E20D8 +:100450000090032001900020029069462000FEF7E2 +:1004600097FC49F6EF1000900320019000200290C5 +:1004700069465FF09040FEF78BFC4FF6FF4000901E +:10048000032001900020029069462800FEF780FCBE +:10049000042000900320019000200290694611483A +:1004A000FEF776FC082000900320019000200290C7 +:1004B00069460D48FEF76CFC4FF440700090012037 +:1004C0000190002002900020039069462800FEF76A +:1004D0005FFC07B030BD00BF4C1002400008004870 +:1004E00000040048000C0048001C004880B5094882 +:1004F000016851F001010160006810F001000090F6 +:100500000098002200210B20FEF7A7FD0B20FEF72C +:10051000B5FD01BD4810024010B586B0182200217B +:100520006846FEF7F5F9554C55482060002060609C +:100530000020A0600020E0600120206104206061B4 +:1005400001202076012060760220E061002084F8FE +:1005500020004FF4E860A0624FF48060E062012068 +:1005600084F830004FF480506063002084F8380035 +:10057000200000F06BFB002801D0FEF753F9414842 +:10058000009006200190072002907F200390042015 +:100590000490002005906946200000F0ADFC002882 +:1005A00001D0FEF73FF9384800900C2001906946D1 +:1005B000200000F0A1FC002801D0FEF733F906B0BE +:1005C00010BD30B59DB004001422002101A8FEF733 +:1005D0009FF95C22002106A8FEF79AF920682849B5 +:1005E000884248D14FF4804006905FF040501A9006 +:1005F00006A8FEF797F9002801D0FEF713F9234863 +:10060000016851F400510160016811F4005100913A +:100610000099016851F004010160006810F00400C5 +:1006200000900098012001900B2002900020039080 +:1006300001A91748FEF7ACFB164D174828600020AB +:1006400068600020A8600020E860802028614FF4E6 +:10065000007068614FF40060A8612020E8614FF4E9 +:10066000005028622800FDF75FF8002801D0FEF74F +:10067000D9F8E564AC621DB030BD0000D4F40020B0 +:100680000000045002003004040060084C100240D6 +:100690000008004898F60020080002401FB50C2210 +:1006A00000216846FEF734F9354C364820600020BA +:1006B00060600020A06041F63F70E0608020A06193 +:1006C000200000F009FF002801D0FEF7ABF8202041 +:1006D0000090002002906946200001F0E3FD002810 +:1006E00001D0FEF79FF81FBD1FB50C220021684600 +:1006F000FEF70EF9244C2548206041F63F706060FB +:100700000020A0606320E0608020A061200000F055 +:10071000E3FE002801D0FEF785F8002000900020BD +:1007200002906946200001F0BDFD002801D0FEF7CF +:1007300079F81FBD80B50168124A914209D1144968 +:100740000A6852F010020A60096811F01001009165 +:10075000009900680D49884211D10D48016851F097 +:1007600020010160006810F0200000900098012234 +:100770000E213720FEF771FC3720FEF77FFC01BD0C +:1007800000F60020001000404CF60020001400404D +:100790005810024018B589B0242200216846FEF79F +:1007A000B7F8264C264820602000FEF74BFE0028B4 +:1007B00001D0FEF737F800200090002001900220C1 +:1007C000029000200390002004900022694620003F +:1007D000FEF799FE002801D0FEF724F80AB010BDFC +:1007E00010B586B004001422002101A8FEF790F88D +:1007F0002068134988421ED11248016851F0005107 +:100800000160006810F00050009000980E480168E8 +:1008100051F001010160006810F0010000900098A3 +:1008200010200190032002900020039001A95FF0A6 +:100830009040FEF7ADFA06B010BD00002CF7002086 +:1008400000740040581002404C100240F8B50400FB +:10085000002500E06D1C022D24D21826674F06FBF0 +:1008600005F0384440782300DBB29842F2D106FB11 +:1008700005F0385C002811D106FB05F0384408303B +:1008800001F04EFD06FB05F0384441682000C0B27F +:1008900000F00AF8012006FB05F17854754307EBD8 +:1008A000050000E00020F2BD80B50200D2B2012AAE +:1008B00003D10800FCF754FE05E0C0B2032802D1C2 +:1008C0000800FCF76FFE01BD02B5012102000028FF +:1008D00002D01078002801D1002019E050780128BA +:1008E00007D10A23012269464548FCF752F8010066 +:1008F00009E05078032806D10A23012269464148BD +:10090000FCF747F80100002901D1012000E0002098 +:1009100002BD38B504000D0008E00D212000FFF7EE +:10092000D3FF0A212000FFF7CFFF6D1C2878002895 +:1009300008D028780A28F0D029782000FFF7C4FFD3 +:100940006D1CF3E731BDF8B504000D00160000275B +:1009500004E0E95D2000FFF7B7FF7F1CB742F8DB3A +:10096000F1BD0100002802D00878002801D1002044 +:1009700007E008694969884201D0012000E00020B1 +:10098000C0B270471CB5040000218DF80010FFF7BD +:10099000E8FF002804D0694614F1080001F0E3FCE8 +:1009A0009DF8000016BD0EB478B504006421002245 +:1009B000154D2E00300001F057F805AA210028003F +:1009C00001F0E6FC290011480068FFF7A2FF71BCA6 +:1009D0005DF810FB80B5C8220D490120FFF736FFF6 +:1009E0000A49086001BD80B54FF496720949032099 +:1009F000FFF72CFF0849086001BD0000A40000209B +:100A0000CCF3002050F400209CF500207CF700205F +:100A100004F3002010F1002080F700208368DFF845 +:100A2000A820134011F08041194351F0004181602A +:100A300070478068C00F70477CB504000D0000202F +:100A4000009094F85000012801D102203AE00120E2 +:100A500084F85000200000F0ABFC06003000C0B26B +:100A6000002826D1606D30F4885050F00200606597 +:100A700029002068FFF7D2FF2068FFF7DAFF00287F +:100A800011D00098401C00900098B0F5912FF3D33E +:100A9000606D30F0020050F010006065002084F8B6 +:100AA000500001200EE00120616D60F301016165DD +:100AB00003E0606D50F010006065002084F8500085 +:100AC0003000C0B276BD0000C0FFFF3F826832F444 +:100AD0007C12114381607047826832F0E0721143EA +:100AE00081607047806810F0E070704710B410F1BA +:100AF000600414EB81042168DFF8D403014012F094 +:100B0000F8420A431A4352F00042226010BC704778 +:100B1000603010EB8100006810F0F84070476030E2 +:100B200010EB8100016821F000410A430260704728 +:100B3000C06810F4406F01D1012000E00020704730 +:100B400030B430300B009B0913F00C031B181C68E9 +:100B50001F2511F01F008540AC43C2F3846011F0E3 +:100B60001F0110FA01F12143196030BC704730B405 +:100B700010F114030800C00D10F00400C018036841 +:100B800007240D002D0D15F01F05AC40A343090DE2 +:100B900011F01F0112FA01F11943016030BC7047D6 +:100BA00010B4D0F8B0404B035B0B9C43DFF8243308 +:100BB00012F01802D34019404903490B2143C0F8F1 +:100BC000B01010BC70478268DFF80C130A408260D6 +:100BD00070478068400F10F0010070478268DFF8AE +:100BE000FC120A4052F08052826070478068000F09 +:100BF00010F0010070478268DFF8E0120A4052F0FE +:100C00000102826070478268DFF8D0120A4052F019 +:100C1000020282607047806810F0010070478068AF +:100C2000400810F0010070478268DFF8B0120A40F7 +:100C300052F00402826070478068800810F0010062 +:100C400070478068C00810F0010070477CB5040050 +:100C5000002600200090002C01D10120D8E020695E +:100C6000002802D094F820000128606D002807D1E8 +:100C70002000FFF7A6FC0020A065002084F85000AB +:100C80002068FFF7A6FF002802D02068FFF79BFF2F +:100C90002068FFF7ABFF002813D12068FFF79EFF05 +:100CA000DFF83C020068DFF83C12B0FBF1F0401CBA +:100CB0004000009002E00098401E0090009800283C +:100CC000F9D12068FFF792FF002808D1606D50F03D +:100CD00010006065A06D50F00100A065012620683D +:100CE000FFF7AAFF616DC90600F18B80002840F074 +:100CF0008880606D30F4807050F00200606520687C +:100D0000FFF789FF00280AD1DFF8DC01FFF783FF36 +:100D1000002804D16168DFF8D401FFF7D7FE607EB8 +:100D2000626B52EA4032E0680243A168114394F8D2 +:100D3000200051EA004194F82000012803D1606AA4 +:100D4000401E51EA4041A06A002806D0A06A10F473 +:100D5000707001430800E16A01432068C268DFF84F +:100D60009001024011432068C1602068FFF764FFD2 +:100D700005002068FFF765FF0543002D28D1207E80 +:100D800094F83010490051EA80312068C268DFF8D9 +:100D90006401024011432068C16094F838000128C2 +:100DA00010D1206801696FF38A01E06B0143206C68 +:100DB0000143606C0143A06C014351F001012068C4 +:100DC000016105E020680069400840002168086171 +:100DD0002069012809D12068006B00090001E16940 +:100DE000491E08432168086305E02068006B00097C +:100DF0000001216808630120616D60F301016165F4 +:100E000004E0606D50F01000606501263000C0B253 +:100E100076BDF8B504000D0016002068FFF70CFF42 +:100E2000002850D194F85000012801D102204DE053 +:100E3000012084F85000200000F04EFA070038002E +:100E4000C0B200283BD1616DDFF88804014051F445 +:100E500080716165606DC00404D5A06D30F006003E +:100E6000A06501E00020A0650FF2C550E16CC862EA +:100E7000DFF81005E16C0863DFF80C05E16C4863EE +:100E80001C2021680860002084F850002068406819 +:100E900050F01000216848602068C06850F00100E0 +:100EA0002168C86033002A00206810F14001E06C1E +:100EB000FCF7B8FC07002068FFF7B6FE04E000204E +:100EC00084F8500000E002273800C0B2F2BD0000F4 +:100ED00000F0FF03FFFF0700C0FFFF5FC0FFFF7FC1 +:100EE000A0000020400D0300000004500003045047 +:100EF00007C0F0FFFDBFFFFF2DE9FC4106000F001A +:100F0000002500200090DFF88484F8684045FFD178 +:100F100096F85000012801D10220D8E1012086F87E +:100F200050003068FFF788FE002840F0C6817868DE +:100F3000062818D27868022806D012D3042809D0CF +:100F400005D3052809D00CE00C2078600BE01220B6 +:100F5000786008E01820786005E04FF480707860D1 +:100F600001E0062078603A6879683068FFF7E8FDAC +:100F70003068FFF761FE04003068FFF762FE04434B +:100F8000002C40F0B580BA6839683068FFF7EFFD93 +:100F90007B693068C068C0F3C10040008340386995 +:100FA000042805D03A6839693068FFF79FFD9FE053 +:100FB00000213068FFF7ACFD400306D10021306806 +:100FC000FFF7A6FDC0F3846007E000213068FFF75B +:100FD0009FFD90FAA0F0B0FA80F03968490303D180 +:100FE0003968C1F3846104E0396891FAA1F1B1FA7A +:100FF00081F1884204D1002200213068FFF78FFD83 +:1010000001213068FFF784FD400306D101213068DB +:10101000FFF77EFDC0F3846007E001213068FFF731 +:1010200077FD90FAA0F0B0FA80F03968490303D157 +:101030003968C1F3846104E0396891FAA1F1B1FA29 +:1010400081F1884204D1002201213068FFF767FD59 +:1010500002213068FFF75CFD400306D102213068B1 +:10106000FFF756FDC0F3846007E002213068FFF708 +:101070004FFD90FAA0F0B0FA80F03968490303D12F +:101080003968C1F3846104E0396891FAA1F1B1FAD9 +:1010900081F1884204D1002202213068FFF73FFD30 +:1010A00003213068FFF734FD400306D10321306887 +:1010B000FFF72EFDC0F3846007E003213068FFF7DF +:1010C00027FD90FAA0F0B0FA80F03968490303D107 +:1010D0003968C1F3846104E0396891FAA1F1B1FA89 +:1010E00081F1884204D1002203213068FFF717FD07 +:1010F0003068FFF790FD002840F08D80FA6839686D +:101100003068FFF74DFDF868404540F0848038684E +:10111000400303D13868C0F3846004E0386890FA73 +:10112000A0F0B0FA80F0401C10F01F000A2836D260 +:101130003868400303D13868C0F3846104E038683C +:1011400090FAA0F0B0FA80F13868400303D1386813 +:10115000C0F3846004E0386890FAA0F0B0FA80F040 +:101160003A68520303D13A68C2F3846204E03A68F1 +:1011700092FAA2F2B2FA82F2491C890611F0F84101 +:101180000123401C10F01F0013FA00F00143521C11 +:1011900012F01F020320424351EA025137E038683F +:1011A000400303D13868C0F3846004E0386890FAE3 +:1011B000A0F0B0FA80F03968490303D13968C1F36F +:1011C000846204E0396891FAA1F1B1FA81F23968D8 +:1011D000490303D13968C1F3846304E0396891FAA3 +:1011E000A1F1B1FA81F3401C800610F0F840012112 +:1011F000521C12F01F02914001435B1C13F01F03AD +:101200000A3B0320434351EA035151F00071BA688D +:101210003068FFF7ACFC3868DFF87411084251D031 +:10122000DFF870412000FFF75DFC01003868DFF84F +:10123000682190421DD108021BD43068DFF85C2180 +:1012400090423FD151F400012000FFF745FCDFF848 +:1012500050010068DFF84C11B0FBF1F1491C0C2083 +:1012600041430091009800282CD00098401E009027 +:10127000F8E73868DFF8302190420CD1C8010AD471 +:101280003068DFF8182190421CD151F080712000A5 +:10129000FFF722FC16E03868DFF81021904211D1E8 +:1012A00048020FD43068DFF8F42090420AD151F49C +:1012B00080012000FFF710FC04E0706D50F020006A +:1012C00070650125002086F850002800C0B2BDE8F6 +:1012D000F6810000FEF1FFFF38B504000020009009 +:1012E0002068FFF798FC002849D1206880686FF3D8 +:1012F0009E10002809D0606D50F010006065A06D50 +:1013000050F00100A06501203AE02068FFF773FC6F +:101310002048FFF7E7FB00020FD52148006821496C +:10132000B0FBF1F1491C0C204143009102E0009810 +:10133000401E009000980028F9D1FCF7EFF9050055 +:1013400020680068C0071AD42068FFF764FC0028F2 +:1013500002D12068FFF74FFCFCF7E0F9401B03289F +:10136000EED320680068C007EAD4606D50F010002A +:101370006065A06D50F00100A065012000E0002034 +:1013800032BD0000B3140208BD14020800007F4003 +:101390000000088000030450000052C70000045001 +:1013A000A0000020400D0300000084CB010000805D +:1013B00038B505002868FFF732FC04002868FFF7FD +:1013C0002AFC002831D0002C2FD12868806810F02A +:1013D0000D0001281FD12868FFF715FC032029689C +:1013E0000860FCF79BF9040028688068C0071CD5DA +:1013F000FCF794F9001B0328F6D328688068C0071F +:10140000F2D5686D50F010006865A86D50F00100CD +:10141000A86501200AE0686D50F010006865A86DAD +:1014200050F00100A865012000E0002032BD00005E +:1014300010B5846A616D11F0500F2FD1606D50F4BA +:101440000070606520680068000714D52068FFF709 +:101450006FFB00281ED02068C06880041AD4606D1D +:1014600030F480706065606DC00413D4606D50F01E +:10147000010060650EE02068C06880070AD4606DD6 +:1014800030F480706065606DC00403D4606D50F00E +:10149000010060652000FDF721F809E0616DC906D3 +:1014A00003D5200000F08EFF02E0E16C496B884715 +:1014B00010BD80B5806A00F086FF01BD80B5806AEE +:1014C000416D51F040014165816D51F0040181652C +:1014D00000F078FF01BD000010B50400002C01D120 +:1014E000012035E094F83D00002805D1002084F863 +:1014F0003C002000FFF71EF9022084F83D00211D6A +:10150000206800F05DF9012084F84800012084F88B +:101510003E00012084F83F00012084F840000120B3 +:1015200084F84100012084F84200012084F843003F +:10153000012084F84400012084F84500012084F84B +:101540004600012084F84700012084F83D00002077 +:1015500010BD90F83D10012901D0012028E00221A2 +:1015600080F83D100168DFF8B820914208D001688A +:10157000B1F1804F04D00168DFF8A820914210D16A +:1015800001688A68DFF8A010114006290FD0B1F574 +:10159000803F0CD00168096851F0010100680160CA +:1015A00005E00168096851F0010100680160002050 +:1015B000704790F83D10012901D001202EE0022152 +:1015C00080F83D100168C96851F001010268D160DE +:1015D0000168DFF84C20914208D00168B1F1804FDA +:1015E00004D00168DFF83C20914210D101688A687C +:1015F000DFF83410114006290FD0B1F5803F0CD030 +:101600000168096851F001010068016005E00168A6 +:10161000096851F001010068016000207047000076 +:10162000002C0140004001400700010010B50400FB +:101630002068006980071AD52068C068800716D521 +:101640007FF002002168086101202077206880690E +:1016500010F0030F03D0200000F0B6FE05E02000DC +:1016600000F0B3FE200000F0B1FE002020772068DB +:10167000006940071AD52068C068400716D57FF07A +:10168000040021680861022020772068806910F436 +:10169000407F03D0200000F097FE05E0200000F01E +:1016A00094FE200000F092FE002020772068006960 +:1016B00000071AD52068C068000716D57FF008001B +:1016C00021680861042020772068C06910F0030FAA +:1016D00003D0200000F078FE05E0200000F075FE49 +:1016E000200000F073FE0020207720680069C0060B +:1016F0001AD52068C068C00616D57FF01000216892 +:101700000861082020772068C06910F4407F03D06A +:10171000200000F059FE05E0200000F056FE2000F9 +:1017200000F054FE0020207720680069C0070AD529 +:101730002068C068C00706D57FF0010021680861F5 +:101740002000FCF7CCFF2068006900060AD520685D +:10175000C068000606D57FF080002168086120007F +:1017600000F035FE20680069C0050AD52068C06811 +:10177000000606D57FF4807021680861200000F023 +:1017800027FE2068006940060AD52068C068400628 +:1017900006D57FF0400021680861200000F019FEA6 +:1017A0002068006980060AD52068C068800606D5D2 +:1017B0007FF0200021680861200000F00BFE10BDC2 +:1017C00010B40368DFF86C40A04202D0B0F1804F43 +:1017D00004D133F070031A004B681343A0420AD0BF +:1017E000B0F1804F07D0DFF85020904203D0DFF8EF +:1017F0004C20904204D133F440731A00CB68134359 +:1018000033F080034A69134303608A68C2620A683E +:101810008262A04207D0DFF82020904203D0DFF898 +:101820001C20904201D1096901630121416110BC72 +:1018300070470000002C014000400140004401407E +:1018400000B585B0002200920022019280B2039080 +:1018500089B20491694601A800F0BEFD002808D0B5 +:101860005C21274800F086FE2122411C2548FFF715 +:101870009AF805B000BDF8B504000D001600002769 +:1018800001E008347F1CB7420AD205EBC700D0E95B +:1018900000232100002000F07BFE0028F1D0FFE7AC +:1018A000F1BD03B581B000F0CCFE01216420FFF74B +:1018B000C7FF012201A91448FFF7DDFF00F0D1FEA8 +:1018C00007BD1CB5062100226C46200000F0CCF8B4 +:1018D00006220D496C462000F9F714FB9DF8000024 +:1018E00055280BD19DF80500162807D10622694618 +:1018F000064C2000F9F706FB012000E0002016BD91 +:1019000074560208185702080020030874000020CB +:1019100010B53E4C00224FF480512000FDF705FB2E +:10192000002240212000FDF700FB6420FDF776FD3A +:1019300010BD10B5354C01224FF480512000FDF749 +:10194000F4FA002240212000FDF7EFFA6420FDF7B1 +:1019500065FD10BD10B52D4C00224FF480512000C4 +:10196000FDF7E3FA012240212000FDF7DEFA6420B2 +:10197000FDF754FD10BD10B5244C01224FF48051E9 +:101980002000FDF7D2FA012240212000FDF7CDFA18 +:101990006420FDF743FD10BD80B56F3806D06F3869 +:1019A00007D06F3808D06F3809D00BE0FFF7B0FFD1 +:1019B00008E0FFF7BEFF05E0FFF7CCFF02E0FFF70E +:1019C000DAFFFFE701BD10B5012210210F48FDF736 +:1019D000ACFA0F4C0F4841782171807860716079C2 +:1019E0001B2190FBF1F201FB12000A30207240F241 +:1019F0004D10FFF7D1FF0C22210007480068FEF7C9 +:101A0000A2FF6F20FFF7C8FF10BD000000080048CC +:101A1000000000207400002080F7002010B50C00AA +:101A2000002808D10E48006880050AD5FDF78FFB15 +:101A3000002806D012E00A480068800501D4FDF7AE +:101A400080FB0848016831F004010160E4B2012C18 +:101A500001D130BF02E040BF20BF20BF10BD000059 +:101A60001470004010ED00E062F30F2262F31F4299 +:101A7000401810F0030308D0C91A1FD3DB0748BF72 +:101A800000F8012D28BF20F8022D130030B41446B1 +:101A90001546103928BF20E93C00FAD8490728BF6D +:101AA00020E90C0048BF40F8042D890028BF20F829 +:101AB000022D48BF00F8012D30BC7047C91818BF6F +:101AC00000F8012DCB0728BF00F8012D70477047A3 +:101AD0002DE9F04105462DED048B2F886A6801EB56 +:101AE00087037F08B80894460C46984601EB870E9A +:101AF00003EB870600F0928091ED000A93ED002A37 +:101B0000D1ED010A91ED021AD1ED031AD3ED012AAC +:101B100093ED023AD3ED033A9EED004ADEED014A21 +:101B20009EED025ADEED035A96ED006AD6ED016A8B +:101B300096ED027AD6ED037A30EE028A81ED008AC4 +:101B400030EE420A30EEA28A71EE038A31EEA39A99 +:101B500071EEE31A77EEE53A34EE062A81ED018A5A +:101B6000C1ED028A81ED039A70EEE20A31EE431A6A +:101B70008EED002A103134EEA62A75EE072A35EED6 +:101B8000A73A8EED012A36EE442ACEED022A76EEF1 +:101B9000E42A8EED033A37EE453A9CED004ADCED3F +:101BA000014A20EE045A00EEA45A60EE840A83ED46 +:101BB000005A40EE640A22EE240AC3ED010A02EE46 +:101BC000C40A86ED000A22EEA40A02EE040A86ED9B +:101BD000010A9CED020ADCED030A21EE002A01EE67 +:101BE000A02A61EE801A41EE601A23EE201A63EEFD +:101BF000A00A03EEC01A43EE000A83ED022AC3EDE9 +:101C0000031A86ED021AC6ED030A10331036401E81 +:101C10000EF1100E0CF1100C7FF46EAF022339465A +:101C2000204600F08FFD6A68BDEC048B39464046C3 +:101C3000BDE8F041022300F085BD00002DE9F04F22 +:101C400081B004462DED048B86B0228805915208A0 +:101C500001EB820303EB820505EB820004930395FD +:101C60000290A0F1040E666801960EEB82085208FD +:101C70000092D5ED000A91ED001AD5ED011A91ED13 +:101C8000012AD3ED014A90ED014AD3ED005A90EDBF +:101C9000005A31EE200A71EE600A32EE211A72EE1D +:101CA000611A30EEA42A71EE643A70EEE40A32EE64 +:101CB000442A73EEC43A70EE840A71EEE52A71EE9E +:101CC000A51A30EE653A30EE250A30EE050A81EDB0 +:101CD000000A71EEC51A93ED014A90ED010A31EE4A +:101CE000041A31EE000A72EE852A33EE453A81ED90 +:101CF000010A01F1080200F10809A3F1040AA5F1A3 +:101D0000040C83ED002AC3ED012A85ED003AC5EDF0 +:101D1000013AC0ED000AC0ED011A06F10800009F6B +:101D200006F11001083308351836BF1E5FEA570761 +:101D300000F0FB8095ED000AD2ED000A30EE803A0B +:101D400030EEC01A95ED010AD2ED010AD3ED005A2A +:101D5000D3ED014A99ED005A70EE803A70EEC02A38 +:101D600072EEE50A72EEA52A72EEC52A99ED014AD5 +:101D700031EE240A30EE852A70EE441A73EE650ABD +:101D800030EEC50A33EE253A73EEE40A31EE641AFA +:101D900033EE053A70EEC40A31EE041A82ED003AD1 +:101DA00093ED014A99ED013A73EE843A33EE833AAA +:101DB00082ED013A08325EF804BC9EED006A9AEDAD +:101DC000007A03EE10BA77EE066A5AF804BCD8ED32 +:101DD000007A9CED008A36EEC85A35EE675A76EEE8 +:101DE000886A04EE10BA58F804BC09EE10BA5CF820 +:101DF00004BC09EE90BA76EEA76AACF1040B74EE5F +:101E0000033A74EE435A37EE464A34EE694A74EEAA +:101E1000094A33EEE94A34EE494A78EE678ACAED58 +:101E2000006A38EEA53A78EEE55A79EE698A36EE20 +:101E3000476A9BED007AA8F1040B73EE873ADBED5D +:101E4000006AAAF1040B73EEA66A38EE866ACBED3F +:101E5000006AACF1040BD0ED003AD0ED016A21EE3E +:101E6000A37A02EE267A22EE232A83ED007A01EE8F +:101E7000E62A64EEA61A43EE631A83ED012ACCED3E +:101E8000001A63EE261A44EEA31ACBED001AAEF147 +:101E9000040BD1ED001A91ED012A20EE213A00EE5B +:101EA000823A60EEA10A85ED003A40EE420A25EE44 +:101EB000610A04EE420AC5ED010A8EED000A25EE24 +:101EC000020A04EE610A8BED000A96ED000AD6EDD7 +:101ED000010A61EE001A42EEA01AC9ED001A62EE84 +:101EE000801A0830083310310835183641EE601A70 +:101EF00026EE201A05EEC01A65EEA00AA8F1040B22 +:101F0000C9ED011A88ED001A46EE000A7F1EAAF1FB +:101F1000080AACF1080CAEF1080E09F10809CBED86 +:101F2000000AA8F108087FF405AFD5ED000A92ED8C +:101F3000001AD5ED011A92ED012AD3ED014A99ED6F +:101F4000014AD3ED005A99ED005A31EE200A71EEA4 +:101F5000600A32EE211A72EE611A30EEA42A71EE96 +:101F6000643A70EEE40A32EE442A73EEC43A70EE3C +:101F7000840A71EEE52A72EE852A30EE653A30EE7B +:101F8000250A30EE050A82ED000A33EE453A93ED5C +:101F9000014A99ED010A31EE041A31EE000A82ED90 +:101FA000010A71EEA51A90ED000A90ED011A22EED9 +:101FB000004A02EE814A22EE800A83ED004A02EED8 +:101FC000410A83ED010A71EEC51A91ED000A91ED07 +:101FD000011A23EE002A03EE812A23EE800A85ED02 +:101FE000002A03EE410A85ED010A042396ED000A5A +:101FF00096ED011A20EE802A01EE812A21EE800A58 +:1020000089ED002A00EEC10A89ED010A0099019AC2 +:10201000059889B200F096FB009962680498042341 +:1020200089B200F08FFB009962680398042389B29B +:1020300000F088FB62680298009906B00423BDECAA +:10204000048B89B201B0BDE8F04F00F07BBB00000B +:102050002DE9F041064617463488012F0D46984673 +:102060002DD1291D002C52D014F0030000F009805E +:1020700091ED000AB1EE400A81ED000A0831401EE0 +:10208000F6D1A00800F01B8091ED000AB1EE400AE5 +:1020900081ED000AD1ED020A91ED040AF1EE600A29 +:1020A000C1ED020AB1EE400AD1ED060A81ED040A43 +:1020B000F1EE600AC1ED060A2031401EE4D1102C79 +:1020C00015D0202C18D0402C1BD0802C0FD0B4F56C +:1020D000807F11D0B4F5007F13D0B4F5806F06D0A7 +:1020E000B4F5006F08D0B4F5805F0AD00FE0294640 +:1020F0003046FFF7EDFC0AE029463046FFF79EFD2B +:1021000005E0726801232146284600F01BFBB8F168 +:10211000000F04D0B268B189284600F0E4FD012F19 +:1021200056D100EE104AB8EE400AF7EE000A002C35 +:1021300080EE800A4CD014F003000ED0D5ED000ADA +:1021400060EE800AC5ED000A95ED011A21EE401AF5 +:1021500085ED011A0835401EF0D1A40800F0388042 +:10216000D5ED000A60EE800AC5ED000A05F1080011 +:1021700095ED011A21EE401A85ED011AD0ED000A05 +:1021800090ED011A60EE800A21EE401AC0ED000ABF +:1021900080ED011A0830D0ED000A90ED011A60EED2 +:1021A000800A21EE401AC0ED000A80ED011A0830C5 +:1021B000D0ED000A90ED011A60EE800A21EE401A7F +:1021C000641EC0ED000A80ED011A00F10805C7D1B8 +:1021D000BDE8F08181B00B48016851F00101016058 +:1021E000006810F00100009000980748016851F065 +:1021F00080510160006810F080500090009801B09C +:10220000704700BF60100240581002400022018059 +:1022100042600388102B24D0202B20D0402B1CD0D0 +:10222000802B18D0B3F5807F13D0B3F5007F0ED08C +:10223000B3F5806F09D0B3F5006F04D0B3F5805FBC +:102240001AD10F490EE00F490CE00F490AE00F497F +:1022500008E00F4906E00F4904E00F4902E00F498A +:1022600000E00F498B898381D1F808C0C0F808C00D +:1022700049684160104670474FF0FF321046704782 +:10228000E0580208D0580208C0580208B0580208A6 +:10229000A058020890580208805802087058020896 +:1022A0006058020830B490F83C20012A01D1022085 +:1022B00030E0012280F83C20022280F83D200268B4 +:1022C000546802689368144D0268AA4204D134F439 +:1022D000700422004C68144334F070040A681443FC +:1022E000026854600268AA4207D00268B2F1804FC7 +:1022F00003D00268094CA24205D133F080038968FB +:102300000B4301688B60012180F83D10002180F8AB +:102310003C10002030BC7047002C014000400140C0 +:10232000016042600021C16081600120704710B4EB +:10233000C268521C436892FBF3F403FB14228368C7 +:102340009A4202D17FF001000BE00268C368D154C9 +:10235000C168491C426891FBF2F302FB1311C16092 +:10236000012010BC70478268C3689A4201D10020E6 +:102370000CE002688368D25C0A708168491C42687C +:1023800091FBF2F302FB1311816001207047000002 +:1023900037B5044600250A460194009502AB01A911 +:1023A000074878441A30F7F794FD019A1570002811 +:1023B0004EBF04460198041B204603B030BD00BF49 +:1023C0006B8AFFFF704770477047704770477047D0 +:1023D00070477047704700002DE9F84304000D0076 +:1023E000DFF880613078012801D1022064E001200B +:1023F00030704CF25037380000F03AF980464046D1 +:10240000C0B2002854D100207060DFF85C01016880 +:1024100089050CD50168490506D5016831F480614C +:102420000160032030770EE0012030770BE0016877 +:10243000490506D5016831F48061016002203077DA +:1024400001E000203077206801280DD1606800F09D +:1024500035F8380000F00CF98046DFF8100101680B +:1024600031F00401016021E05FF0FF302860D4F812 +:10247000089001E019F10109A168E0684118894557 +:1024800014D26168484600F028F8380000F0F0F8EF +:102490008046DFF8D8100A68DFF8D40002400A60EE +:1024A0004046C0B20028E5D0C5F8009000F028F8FA +:1024B000002030704046C0B2BDE8F283C00705D5A9 +:1024C000DFF8A800016851F004010160DFF89C000A +:1024D000016851F4803101607047DFF890100A689C +:1024E00032F47E72C00010F4FF6010430860086888 +:1024F00050F002000860086850F4803008607047AF +:102500001848017F0A00D2B2012A03D00A00D2B2D1 +:10251000032A10D1144A136833F40073136013684C +:1025200053F400631360136833F40063136013689B +:1025300053F4007313600A00D2B2022A02D0C9B267 +:1025400003290CD108490A6852F480520A600A68CB +:1025500032F480520A600A6852F480620A600021F4 +:1025600001777047800000200020024014200240C4 +:1025700005FCFFFF0246C9B2002013788B4205D04C +:1025800012F801CBBCF1000FF7D170471046F7E706 +:102590002DE9F84F81460E0014001D005FF0000A7F +:1025A000DFF87C713878012801D1022047E0012052 +:1025B00038704CF25038404600F05AF8834658467E +:1025C000C0B2002837D100207860DFF858010168D8 +:1025D000490506D5016831F4806101600220387731 +:1025E00001E000203877300022002B00B9F1000F05 +:1025F00004D100F070F85FF0010A0DE0B9F1010FAD +:1026000002D0B9F1020F07D1110000F071F8B9F151 +:10261000020F01D15FF4802A404600F029F883467A +:10262000BAF1000F05D04048016831EA0A0AC0F843 +:1026300000A0FFF765FF002038705846C0B2BDE823 +:10264000F28F002038490A68002A08D53A4A3B4BE5 +:1026500013603B4B13600968002900D50120C0B20C +:1026600070473148016851F0004101600020704717 +:1026700038B50400FBF752F805002C4A1068C00377 +:1026800009D514F1010FF8D0FBF748F8401BA04220 +:10269000F3D303201EE0116825480840002813D01A +:1026A0001F494B6803434B6010F0404F05D0214B4E +:1026B0001C6810F040410C431C60810002D020F0E7 +:1026C00040401060012005E01068C00701D50120DE +:1026D0001060002032BD10B413490C6854F001049E +:1026E0000C600260BFF36F8F001D036010BC704769 +:1026F00010B440230C4A146854F480241460EFF39F +:10270000108272B60C680460001D091D5B1E1C005F +:10271000E4B2002CF6D182F3108810BC70470000A0 +:1027200080000020002002401420024010200240BF +:10273000FAC3020018200240082002402301674526 +:10274000AB89EFCD2DE9F44F2DED108B83B00A4608 +:102750009FED037AADF80230ADF80010AAE100BF9A +:10276000F304353F0024012301940293019BBDF83B +:102770000240DDF84CE0BDF800B01B195C000EEB28 +:10278000C4081D195E199F1903EB070C0EEBC30952 +:102790000193634498ED006AD9ED006ADDF8049076 +:1027A0000EEBC508D8ED005A0EEBC60898ED005A9E +:1027B0000EEBC708D8ED004A0EEBCC0898ED004AA6 +:1027C0000EEBC308D8ED003A0EF1040808EBC90E71 +:1027D000DDF84C809EED003A08F1040E0EEBC404C7 +:1027E000D4ED002A08F1040404EBC50494ED002A9A +:1027F00008F1040404EBC60604EBC303D6ED001A8B +:1028000093ED000A04EBC70696ED001A04EBCC0624 +:10281000029CD6ED000A01EBC4031619D3ED008A21 +:10282000971902EB070C02EB0C0E01EBCE0502EB45 +:102830000E08D5ED007A01EBC80538EEA78A38EE10 +:10284000E79AD5ED007A01EBC60502EB0809D5ED54 +:10285000009A79EEA78A01EBC90579EEE79AD5EDE2 +:10286000007A01EBC70502EB090A95ED00AA3AEEE2 +:1028700027BA01EBCA057AEE677A95ED00AA01EB5B +:10288000CC05D5ED00AA7AEE8ABA3AEECAAA78EE5D +:102890004BAA38EE0B8A38EEEBBA78EEAB8A78EEBC +:1028A00028BA0D1DC3ED00BA05EBCE0578EE68BA67 +:1028B00095ED008AD3ED018A0D1D78EE88DA05EBDF +:1028C000C80538EEC88AD5ED008A0D1D05EBC60592 +:1028D00095ED00CA0D1D3CEE28EA05EBC9053CEE5E +:1028E00068CAD5ED008A0D1D05EBC705D5ED00CAF8 +:1028F0000D1D3CEEA8FA05EBCA057CEEE88AD5ED85 +:1029000000CA0D1D05EBCC0595ED00DA7DEE2CEA35 +:102910007DEE6CCA3DEECFDA7DEE8FDA3EEE6EFADA +:102920007EEE2EEA3AEE8FEA7AEECFAA3DEEAEFACE +:102930007DEEEEEA7DEE4BDA3DEE0BBA25EE2BDABC +:1029400001EBCE0583ED01FA01EEAEDA85ED00DA9A +:102950000D1D65EE2EEA05EBCE0541EEEBEAC5ED69 +:1029600000EA66EE0EBA01EBC70542EEADBAC5ED60 +:1029700000BA0D1D26EE2DDA05EBC70702EECEDA02 +:1029800064EE2ADA01EBC90587ED00DA40EE8BDA56 +:10299000C5ED00DA0F1D24EE0BBA07EBC90500EEFA +:1029A000EABA85ED00BA79EECAAA79EE8A9A29EEDA +:1029B00087BA7CEE6C9A29EE87DA7CEE2C9A6AEE66 +:1029C00087AA69EE87BA79EE6A9A39EE2AAA37EEB3 +:1029D000CB9A77EE8BAA38EEEBCA78EE4D7A38EECA +:1029E0000DBA78EEAB8A3AEE288A7AEE688A7BEEE8 +:1029F0006ABA39EE8CAA7BEE2AAA79EECC9A37EE27 +:102A0000C9BA77EE897A26EE889A01EBC60503EEFD +:102A10002B9A85ED009A0D1D66EEABBA05EBC60646 +:102A200043EE48BA23EEA88A01EBCA07C6ED00BA06 +:102A300000EE2A8A23EEAA9A05EBCA0587ED008AE2 +:102A400000EE689A64EE8A8A01EBC8060F1D85EDD8 +:102A5000009A41EE0B8A24EE8B8A07EBC805C6ED7F +:102A6000008A01EE4A8A85ED008A25EEA99A01EBDB +:102A7000CC050E1D02EE279A65EEA77A06EBCC0771 +:102A8000041985ED009A42EE697A5C45C7ED007A3B +:102A900003EBC003FFF4C1AE029BADF800B05B1CBA +:102AA00093420293FFF462AE0846BDF80210C900DB +:102AB000ADF802101346BDF80040D2084FF0000BED +:102AC0004FEA0001D1ED000A02EB0B06971902EB69 +:102AD000070C02EB0C0E00EBCE0502EB0E0895ED99 +:102AE000000A30EE802A00EBC80530EEC00AD5EDB2 +:102AF000000A00EBC60502EB080995ED001A71EE1D +:102B0000203A00EBC90531EE601AD5ED000A00EB62 +:102B1000C70502EB090AD5ED001A31EEA03A00EB29 +:102B2000CA0571EEE00AD5ED001A00EBCC059B4416 +:102B3000D5ED002A32EEA14A72EEE11A72EE432A76 +:102B400032EE032A33EEC43A73EE843A32EE234A6D +:102B500000EBCE0581ED004A32EE632A85ED002AB6 +:102B6000051D05EBCE05D1ED013A95ED002A051DB9 +:102B700073EE824A05EBC80533EEC22AD5ED003A62 +:102B8000051D05EBC60595ED004A051D34EE235ADB +:102B900005EBC90534EE634AD5ED003A051D05EB9A +:102BA000C705D5ED005A051D05EBCA0535EEA36A2C +:102BB000D5ED006A051D05EBCC0575EEE33AD5EDC4 +:102BC000007A77EEA65A77EEE66A74EEC67A74EE6D +:102BD000864A35EE656A35EE255A051D74EE855A2E +:102BE00005EBCE0EC1ED015A74EEC54ACEED004A9A +:102BF00000EBC70E32EE865A8EED005A00EBC90E7E +:102C000072EEC62A05EBC707CEED002A77EEC34A5F +:102C1000C7ED004A071D07EBC90537EE833A71EE91 +:102C2000612A31EE211A85ED003A62EE872A61EEC3 +:102C3000071A34EE661A30EE623A21EE071A30EEC9 +:102C4000220A34EE264A70EEE12A72EE414A24EE60 +:102C5000074A70EEA10A32EE011A33EEC42A73EE6F +:102C6000841A00EBC60570EE213AC5ED003A00EB80 +:102C7000CA0530EE610A00EBC80785ED000A73EE65 +:102C8000021A00EBCC05C7ED001A33EE422A85ED9F +:102C9000002A051D05EBC60631EE603A86ED003AC6 +:102CA000071D07EBCA0631EE200A86ED000A05EB88 +:102CB000C80674EEE20A07EBCC05C6ED000A34EE56 +:102CC000A20AA34585ED000A01EBC301FFF4FAAEA9 +:102CD0000146082A1846BFF445AD03B0BDEC108B81 +:102CE00001B0BDE8F08FF0B500230C001CD01488B3 +:102CF0005588A408AD0850F8246050F8257040F8B5 +:102D0000247040F82560071D061D57F8257056F8F9 +:102D1000246000F1040E9B1C4EF82470041D121D4B +:102D200044F825608B42E2D3F0BD00000000803FF4 +:102D30000000000043EC7F3FB00AC93C0FB17F3F69 +:102D40002FFB483D6D4E7F3F05A9963D6DC47E3FEC +:102D500036BDC83D24137E3F73B2FA3DAC3A7D3F89 +:102D60008340163E283B7C3FA2102F3EBE147B3F83 +:102D7000C2C5473E9DC7793F135C603EF853783F1C +:102D8000CCCF783E07BA763F938E883E0BFA743FDD +:102D900031A0943E4714733FE59AA03E0809713F65 +:102DA000D47CAC3E9ED86E3F2A44B83E5E836C3FD6 +:102DB00015EFC33EA7096A3FCA7BCF3ED86B673F7A +:102DC00080E8DA3E59AA643F7533E63E98C5613F14 +:102DD000EA5AF13E05BE5E3F275DFC3E1A945B3F1A +:102DE0003D9C033F5348583F9BF5083F31DB543F20 +:102DF000DA390E3F3D4D513F2A68133F029F4D3F48 +:102E0000C07F183F12D1493FD17F1D3F03E4453FAA +:102E10009967223F70D8413F5636273FF9AE3D3F74 +:102E20004AEB2B3F4268393FBB85303FF304353FC7 +:102E3000F304353FBB85303F4268393F4AEB2B3FB7 +:102E4000F9AE3D3F5636273F70D8413F9967223F44 +:102E500003E4453FD17F1D3F12D1493FC07F183F5A +:102E6000029F4D3F2A68133F3D4D513FDA390E3FD7 +:102E700031DB543F9BF5083F5348583F3D9C033F8F +:102E80001A945B3F275DFC3E05BE5E3FEA5AF13E69 +:102E900098C5613F7533E63E59AA643F80E8DA3E43 +:102EA000D86B673FCA7BCF3EA7096A3F15EFC33E89 +:102EB0005E836C3F2A44B83E9ED86E3FD47CAC3EC5 +:102EC0000809713FE59AA03E4714733F31A0943E34 +:102ED0000BFA743F938E883E07BA763FCCCF783E8C +:102EE000F853783F135C603E9DC7793FC2C5473EAB +:102EF000BE147B3FA2102F3E283B7C3F8340163EF2 +:102F0000AC3A7D3F73B2FA3D24137E3F36BDC83DD7 +:102F10006DC47E3F05A9963D6D4E7F3F2FFB483D1A +:102F20000FB17F3FB00AC93C43EC7F3F0000000077 +:102F30000000803FB00AC9BC43EC7F3F2FFB48BD77 +:102F40000FB17F3F05A996BD6D4E7F3F36BDC8BD11 +:102F50006DC47E3F73B2FABD24137E3F834016BE1C +:102F6000AC3A7D3FA2102FBE283B7C3FC2C547BE76 +:102F7000BE147B3F135C60BE9DC7793FCCCF78BE4B +:102F8000F853783F938E88BE07BA763F31A094BE3F +:102F90000BFA743FE59AA0BE4714733FD47CACBED5 +:102FA0000809713F2A44B8BE9ED86E3F15EFC3BED4 +:102FB0005E836C3FCA7BCFBEA7096A3F80E8DABE5A +:102FC000D86B673F7533E6BE59AA643FEA5AF1BE33 +:102FD00098C5613F275DFCBE05BE5E3F3D9C03BFBB +:102FE0001A945B3F9BF508BF5348583FDA390EBF30 +:102FF00031DB543F2A6813BF3D4D513FC07F18BF9E +:10300000029F4D3FD17F1DBF12D1493F996722BF1B +:1030100003E4453F563627BF70D8413F4AEB2BBFEC +:10302000F9AE3D3FBB8530BF4268393FF30435BF41 +:10303000F304353F426839BFBB85303FF9AE3DBF31 +:103040004AEB2B3F70D841BF5636273F03E445BFBC +:103050009967223F12D149BFD17F1D3F029F4DBFCB +:10306000C07F183F3D4D51BF2A68133F31DB54BF2D +:10307000DA390E3F534858BF9BF5083F1A945BBF9F +:103080003D9C033F05BE5EBF275DFC3E98C561BF0A +:10309000EA5AF13E59AA64BF7533E63ED86B67BF62 +:1030A00080E8DA3EA7096ABFCA7BCF3E5E836CBF69 +:1030B00015EFC33E9ED86EBF2A44B83E080971BFC3 +:1030C000D47CAC3E471473BFE59AA03E0BFA74BFA4 +:1030D00031A0943E07BA76BF938E883EF85378BFEE +:1030E000CCCF783E9DC779BF135C603EBE147BBFDA +:1030F000C2C5473E283B7CBFA2102F3EAC3A7DBFE5 +:103100008340163E24137EBF73B2FA3D6DC47EBF6A +:1031100036BDC83D6D4E7FBF05A9963D0FB17FBF3F +:103120002FFB483D43EC7FBFB00AC93C000080BF85 +:103130000000000043EC7FBFB00AC9BC0FB17FBFE5 +:103140002FFB48BD6D4E7FBF05A996BD6DC47EBFE8 +:1031500036BDC8BD24137EBF73B2FABDAC3A7DBF85 +:10316000834016BE283B7CBFA2102FBEBE147BBF7F +:10317000C2C547BE9DC779BF135C60BEF85378BF18 +:10318000CCCF78BE07BA76BF938E88BE0BFA74BFD9 +:1031900031A094BE471473BFE59AA0BE080971BF61 +:1031A000D47CACBE9ED86EBF2A44B8BE5E836CBFD2 +:1031B00015EFC3BEA7096ABFCA7BCFBED86B67BF76 +:1031C00080E8DABE59AA64BF7533E6BE98C561BF10 +:1031D000EA5AF1BE05BE5EBF275DFCBE1A945BBF16 +:1031E0003D9C03BF534858BF9BF508BF31DB54BF1C +:1031F000DA390EBF3D4D51BF2A6813BF029F4DBF44 +:10320000C07F18BF12D149BFD17F1DBF03E445BFA6 +:10321000996722BF70D841BF563627BFF9AE3DBF70 +:103220004AEB2BBF426839BFBB8530BFF30435BFC3 +:10323000F30435BFBB8530BF426839BF4AEB2BBFB3 +:10324000F9AE3DBF563627BF70D841BF996722BF40 +:1032500003E445BFD17F1DBF12D149BFC07F18BF56 +:10326000029F4DBF2A6813BF3D4D51BFDA390EBFD3 +:1032700031DB54BF9BF508BF534858BF3D9C03BF8B +:103280001A945BBF275DFCBE05BE5EBFEA5AF1BE65 +:1032900098C561BF7533E6BE59AA64BF80E8DABE3F +:1032A000D86B67BFCA7BCFBEA7096ABF15EFC3BE85 +:1032B0005E836CBF2A44B8BE9ED86EBFD47CACBEC1 +:1032C000080971BFE59AA0BE471473BF31A094BE30 +:1032D0000BFA74BF938E88BE07BA76BFCCCF78BE88 +:1032E000F85378BF135C60BE9DC779BFC2C547BEA7 +:1032F000BE147BBFA2102FBE283B7CBF834016BEEE +:10330000AC3A7DBF73B2FABD24137EBF36BDC8BDD3 +:103310006DC47EBF05A996BD6D4E7FBF2FFB48BD16 +:103320000FB17FBFB00AC9BC43EC7FBF0000008073 +:10333000000080BFB00AC93C43EC7FBF2FFB483D73 +:103340000FB17FBF05A9963D6D4E7FBF36BDC83D0D +:103350006DC47EBF73B2FA3D24137EBF8340163E18 +:10336000AC3A7DBFA2102F3E283B7CBFC2C5473E72 +:10337000BE147BBF135C603E9DC779BFCCCF783E47 +:10338000F85378BF938E883E07BA76BF31A0943E3B +:103390000BFA74BFE59AA03E471473BFD47CAC3ED1 +:1033A000080971BF2A44B83E9ED86EBF15EFC33ED0 +:1033B0005E836CBFCA7BCF3EA7096ABF80E8DA3E56 +:1033C000D86B67BF7533E63E59AA64BFEA5AF13E2F +:1033D00098C561BF275DFC3E05BE5EBF3D9C033FB7 +:1033E0001A945BBF9BF5083F534858BFDA390E3F2C +:1033F00031DB54BF2A68133F3D4D51BFC07F183F9A +:10340000029F4DBFD17F1D3F12D149BF9967223F17 +:1034100003E445BF5636273F70D841BF4AEB2B3FE8 +:10342000F9AE3DBFBB85303F426839BFF304353F3D +:10343000F30435BF4268393FBB8530BFF9AE3D3F2D +:103440004AEB2BBF70D8413F563627BF03E4453FB8 +:10345000996722BF12D1493FD17F1DBF029F4D3FC7 +:10346000C07F18BF3D4D513F2A6813BF31DB543F29 +:10347000DA390EBF5348583F9BF508BF1A945B3F9B +:103480003D9C03BF05BE5E3F275DFCBE98C5613F06 +:10349000EA5AF1BE59AA643F7533E6BED86B673F5E +:1034A00080E8DABEA7096A3FCA7BCFBE5E836C3F65 +:1034B00015EFC3BE9ED86E3F2A44B8BE0809713FBF +:1034C000D47CACBE4714733FE59AA0BE0BFA743FA0 +:1034D00031A094BE07BA763F938E88BEF853783FEA +:1034E000CCCF78BE9DC7793F135C60BEBE147B3FD6 +:1034F000C2C547BE283B7C3FA2102FBEAC3A7D3FE1 +:10350000834016BE24137E3F73B2FABD6DC47E3F66 +:1035100036BDC8BD6D4E7F3F05A996BD0FB17F3F3B +:103520002FFB48BD43EC7F3FB00AC9BC0000000040 +:103530000000803F900E493C11FB7F3FB00AC93C20 +:1035400043EC7F3F2CC3163D98D37F3F2FFB483D74 +:103550000FB17F3F742B7B3DAB847F3F05A9963D28 +:103560006D4E7F3F80B6AF3D580E7F3F36BDC83DA4 +:103570006DC47E3F2EBCE13DB0707E3F73B2FA3D1C +:1035800024137E3F86CF093ECCAB7D3F8340163E61 +:10359000AC3A7D3FB6AB223EC9BF7C3FA2102F3E66 +:1035A000283B7C3FCF6E3B3ECDAC7B3FC2C5473E08 +:1035B000BE147B3F0115543E02737A3F135C603E9C +:1035C0009DC7793F7F9A6C3E9812793FCCCF783E69 +:1035D000F853783FC07D823EC58B773F938E883EFF +:1035E00007BA763F229A8E3EC6DE753F31A0943EE2 +:1035F0000BFA743F86A09A3EDD0B743FE59AA03E1D +:103600004714733F128FA63E5213723FD47CAC3ED8 +:103610000809713FEF63B23E73F56F3F2A44B83E2D +:103620009ED86E3F4A1DBE3E93B26D3F15EFC33E1E +:103630005E836C3F53B9C93E0C4B6B3FCA7BCF3E98 +:10364000A7096A3F4136D53E3CBF683F80E8DA3E75 +:10365000D86B673F4F92E03E880F663F7533E63E7A +:1036600059AA643FBBCBEB3E5A3C633FEA5AF13E5A +:1036700098C5613FCBE0F63E2146603F275DFC3EAA +:1036800005BE5E3FE4E7003F532D5D3F3D9C033F99 +:103690001A945B3F824B063F6AF2593F9BF5083F05 +:1036A0005348583F6B9A0B3FE595563FDA390E3F2A +:1036B00031DB543FCDD3103F4918533F2A68133FA5 +:1036C0003D4D513FD9F6153F1F7A4F3FC07F183F00 +:1036D000029F4D3FC6021B3FF8BB4B3FD17F1D3FB2 +:1036E00012D1493FCBF61F3F65DE473F9967223F26 +:1036F00003E4453F25D2243F00E2433F5636273FAF +:1037000070D8413F1594293F67C73F3F4AEB2B3F95 +:10371000F9AE3D3FDE3B2E3F3B8F3B3FBB85303F0D +:103720004268393FC9C8323F233A373FF304353F37 +:10373000F304353F233A373FC9C8323F4268393F27 +:10374000BB85303F3B8F3B3FDE3B2E3FF9AE3D3FDD +:103750004AEB2B3F67C73F3F1594293F70D8413F45 +:103760005636273F00E2433F25D2243F03E4453F3E +:103770009967223F65DE473FCBF61F3F12D1493F95 +:10378000D17F1D3FF8BB4B3FC6021B3F029F4D3F01 +:10379000C07F183F1F7A4F3FD9F6153F3D4D513F2F +:1037A0002A68133F4918533FCDD3103F31DB543FB4 +:1037B000DA390E3FE595563F6B9A0B3F5348583F19 +:1037C0009BF5083F6AF2593F824B063F1A945B3FD4 +:1037D0003D9C033F532D5D3FE4E7003F05BE5E3F48 +:1037E000275DFC3E2146603FCBE0F63E98C5613F39 +:1037F000EA5AF13E5A3C633FBBCBEB3E59AA643FC9 +:103800007533E63E880F663F4F92E03ED86B673FC8 +:1038100080E8DA3E3CBF683F4136D53EA7096A3FA3 +:10382000CA7BCF3E0C4B6B3F53B9C93E5E836C3FA6 +:1038300015EFC33E93B26D3F4A1DBE3E9ED86E3F0C +:103840002A44B83E73F56F3FEF63B23E0809713FFB +:10385000D47CAC3E5213723F128FA63E4714733F86 +:10386000E59AA03EDD0B743F86A09A3E0BFA743FAA +:1038700031A0943EC6DE753F229A8E3E07BA763F4F +:10388000938E883EC58B773FC07D823EF853783F4C +:10389000CCCF783E9812793F7F9A6C3E9DC7793F96 +:1038A000135C603E02737A3F0115543EBE147B3FA9 +:1038B000C2C5473ECDAC7B3FCF6E3B3E283B7C3FF5 +:1038C000A2102F3EC9BF7C3FB6AB223EAC3A7D3F33 +:1038D0008340163ECCAB7D3F86CF093E24137E3F0E +:1038E00073B2FA3DB0707E3F2EBCE13D6DC47E3FA9 +:1038F00036BDC83D580E7F3F80B6AF3D6D4E7F3F11 +:1039000005A9963DAB847F3F742B7B3D0FB17F3F74 +:103910002FFB483D98D37F3F2CC3163D43EC7F3FA0 +:10392000B00AC93C11FB7F3F900E493C0000803F2C +:103930000000000011FB7F3F900E49BC43EC7F3F2D +:10394000B00AC9BC98D37F3F2CC316BD0FB17F3FCF +:103950002FFB48BDAB847F3F742B7BBD6D4E7F3FFB +:1039600005A996BD580E7F3F80B6AFBD6DC47E3FA2 +:1039700036BDC8BDB0707E3F2EBCE1BD24137E3F76 +:1039800073B2FABDCCAB7D3F86CF09BEAC3A7D3F6A +:10399000834016BEC9BF7C3FB6AB22BE283B7C3FEE +:1039A000A2102FBECDAC7B3FCF6E3BBEBE147B3F83 +:1039B000C2C547BE02737A3F011554BE9DC7793F09 +:1039C000135C60BE9812793F7F9A6CBEF853783FC3 +:1039D000CCCF78BEC58B773FC07D82BE07BA763F1D +:1039E000938E88BEC6DE753F229A8EBE0BFA743F58 +:1039F00031A094BEDD0B743F86A09ABE4714733F7E +:103A0000E59AA0BE5213723F128FA6BE0809713FFD +:103A1000D47CACBE73F56F3FEF63B2BE9ED86E3FF1 +:103A20002A44B8BE93B26D3F4A1DBEBE5E836C3F52 +:103A300015EFC3BE0C4B6B3F53B9C9BEA7096A3F14 +:103A4000CA7BCFBE3CBF683F4136D5BED86B673F0F +:103A500080E8DABE880F663F4F92E0BE59AA643F05 +:103A60007533E6BE5A3C633FBBCBEBBE98C5613FA6 +:103A7000EA5AF1BE2146603FCBE0F6BE05BE5E3F8E +:103A8000275DFCBE532D5D3FE4E700BF1A945B3F0A +:103A90003D9C03BF6AF2593F824B06BF5348583FD3 +:103AA0009BF508BFE595563F6B9A0BBF31DB543F42 +:103AB000DA390EBF4918533FCDD310BF3D4D513FAA +:103AC0002A6813BF1F7A4F3FD9F615BF029F4D3F9B +:103AD000C07F18BFF8BB4B3FC6021BBF12D1493F86 +:103AE000D17F1DBF65DE473FCBF61FBF03E4453FD7 +:103AF000996722BF00E2433F25D224BF70D8413FDF +:103B0000563627BF67C73F3F159429BFF9AE3D3FE3 +:103B10004AEB2BBF3B8F3B3FDE3B2EBF4268393F1A +:103B2000BB8530BF233A373FC9C832BFF304353FA6 +:103B3000F30435BFC9C8323F233A37BFBB85303F96 +:103B4000426839BFDE3B2E3F3B8F3BBF4AEB2B3FEA +:103B5000F9AE3DBF1594293F67C73FBF5636273F93 +:103B600070D841BF25D2243F00E243BF9967223F6E +:103B700003E445BFCBF61F3F65DE47BFD17F1D3F46 +:103B800012D149BFC6021B3FF8BB4BBFC07F183FD5 +:103B9000029F4DBFD9F6153F1F7A4FBF2A68133FCA +:103BA0003D4D51BFCDD3103F491853BFDA390E3FB9 +:103BB00031DB54BF6B9A0B3FE59556BF9BF5083F31 +:103BC000534858BF824B063F6AF259BF3D9C033FA2 +:103BD0001A945BBFE4E7003F532D5DBF275DFC3EB9 +:103BE00005BE5EBFCBE0F63E214660BFEA5AF13E1D +:103BF00098C561BFBBCBEB3E5A3C63BF7533E63E15 +:103C000059AA64BF4F92E03E880F66BF80E8DA3E53 +:103C1000D86B67BF4136D53E3CBF68BFCA7BCF3E3D +:103C2000A7096ABF53B9C93E0C4B6BBF15EFC33E22 +:103C30005E836CBF4A1DBE3E93B26DBF2A44B83E40 +:103C40009ED86EBFEF63B23E73F56FBFD47CAC3EBF +:103C5000080971BF128FA63E521372BFE59AA03EAB +:103C6000471473BF86A09A3EDD0B74BF31A0943E0B +:103C70000BFA74BF229A8E3EC6DE75BF938E883EC5 +:103C800007BA76BFC07D823EC58B77BFCCCF783E6A +:103C9000F85378BF7F9A6C3E981279BF135C603EF0 +:103CA0009DC779BF0115543E02737ABFC2C5473E16 +:103CB000BE147BBFCF6E3B3ECDAC7BBFA2102F3E70 +:103CC000283B7CBFB6AB223EC9BF7CBF8340163EBB +:103CD000AC3A7DBF86CF093ECCAB7DBF73B2FA3D17 +:103CE00024137EBF2EBCE13DB0707EBF36BDC83D03 +:103CF0006DC47EBF80B6AF3D580E7FBF05A9963D0F +:103D00006D4E7FBF742B7B3DAB847FBF2FFB483D47 +:103D10000FB17FBF2CC3163D98D37FBFB00AC93CFB +:103D200043EC7FBF900E493C11FB7FBF0000803FFA +:103D3000000000000FB17F3F2FFB483D6DC47E3F68 +:103D400036BDC83DAC3A7D3F8340163EBE147B3F36 +:103D5000C2C5473EF853783FCCCF783E0BFA743F4C +:103D600031A0943E0809713FD47CAC3E5E836C3F29 +:103D700015EFC33ED86B673F80E8DA3E98C5613FD8 +:103D8000EA5AF13E1A945B3F3D9C033F31DB543FBE +:103D9000DA390E3F029F4D3FC07F183F03E4453F95 +:103DA0009967223FF9AE3D3F4AEB2B3FF304353F85 +:103DB000F304353F4AEB2B3FF9AE3D3F9967223F75 +:103DC00003E4453FC07F183F029F4D3FDA390E3F65 +:103DD00031DB543F3D9C033F1A945B3FEA5AF13E6E +:103DE00098C5613F80E8DA3ED86B673F15EFC33E68 +:103DF0005E836C3FD47CAC3E0809713F31A0943E99 +:103E00000BFA743FCCCF783EF853783FC2C5473E9B +:103E1000BE147B3F8340163EAC3A7D3F36BDC83D65 +:103E20006DC47E3F2FFB483D0FB17F3F0000000077 +:103E30000000803F2FFB48BD0FB17F3F36BDC8BD9E +:103E40006DC47E3F834016BEAC3A7D3FC2C547BEBF +:103E5000BE147B3FCCCF78BEF853783F31A094BEE0 +:103E60000BFA743FD47CACBE0809713F15EFC3BE9A +:103E70005E836C3F80E8DABED86B673FEA5AF1BEDA +:103E800098C5613F3D9C03BF1A945B3FDA390EBF72 +:103E900031DB543FC07F18BF029F4D3F996722BF5F +:103EA00003E4453F4AEB2BBFF9AE3D3FF30435BF7A +:103EB000F304353FF9AE3DBF4AEB2B3F03E445BF6A +:103EC0009967223F029F4DBFC07F183F31DB54BF2F +:103ED000DA390E3F1A945BBF3D9C033F98C561BF22 +:103EE000EA5AF13ED86B67BF80E8DA3E5E836CBF6A +:103EF00015EFC33E080971BFD47CAC3E0BFA74BF0A +:103F000031A0943EF85378BFCCCF783EBE147BBF2F +:103F1000C2C5473EAC3A7DBF8340163E6DC47EBFEE +:103F200036BDC83D0FB17FBF2FFB483D000080BFAD +:103F3000000000000FB17FBF2FFB48BD6DC47EBFE6 +:103F400036BDC8BDAC3A7DBF834016BEBE147BBF34 +:103F5000C2C547BEF85378BFCCCF78BE0BFA74BF4A +:103F600031A094BE080971BFD47CACBE5E836CBF27 +:103F700015EFC3BED86B67BF80E8DABE98C561BFD6 +:103F8000EA5AF1BE1A945BBF3D9C03BF31DB54BFBC +:103F9000DA390EBF029F4DBFC07F18BF03E445BF93 +:103FA000996722BFF9AE3DBF4AEB2BBFF30435BF83 +:103FB000F30435BF4AEB2BBFF9AE3DBF996722BF73 +:103FC00003E445BFC07F18BF029F4DBFDA390EBF63 +:103FD00031DB54BF3D9C03BF1A945BBFEA5AF1BE6C +:103FE00098C561BF80E8DABED86B67BF15EFC3BE66 +:103FF0005E836CBFD47CACBE080971BF31A094BE97 +:104000000BFA74BFCCCF78BEF85378BFC2C547BE99 +:10401000BE147BBF834016BEAC3A7DBF36BDC8BD63 +:104020006DC47EBF2FFB48BD0FB17FBF0000008075 +:10403000000080BF2FFB483D0FB17FBF36BDC83D9C +:104040006DC47EBF8340163EAC3A7DBFC2C5473EBD +:10405000BE147BBFCCCF783EF85378BF31A0943EDE +:104060000BFA74BFD47CAC3E080971BF15EFC33E98 +:104070005E836CBF80E8DA3ED86B67BFEA5AF13ED8 +:1040800098C561BF3D9C033F1A945BBFDA390E3F70 +:1040900031DB54BFC07F183F029F4DBF9967223F5D +:1040A00003E445BF4AEB2B3FF9AE3DBFF304353F78 +:1040B000F30435BFF9AE3D3F4AEB2BBF03E4453F68 +:1040C000996722BF029F4D3FC07F18BF31DB543F2D +:1040D000DA390EBF1A945B3F3D9C03BF98C5613F20 +:1040E000EA5AF1BED86B673F80E8DABE5E836C3F68 +:1040F00015EFC3BE0809713FD47CACBE0BFA743F08 +:1041000031A094BEF853783FCCCF78BEBE147B3F2D +:10411000C2C547BEAC3A7D3F834016BE6DC47E3FEC +:1041200036BDC8BD0FB17F3F2FFB48BD000000006A +:104130000000803FB00AC93C43EC7F3F2FFB483D65 +:104140000FB17F3F05A9963D6D4E7F3F36BDC83DFF +:104150006DC47E3F73B2FA3D24137E3F8340163E0A +:10416000AC3A7D3FA2102F3E283B7C3FC2C5473E64 +:10417000BE147B3F135C603E9DC7793FCCCF783E39 +:10418000F853783F938E883E07BA763F31A0943E2D +:104190000BFA743FE59AA03E4714733FD47CAC3EC3 +:1041A0000809713F2A44B83E9ED86E3F15EFC33EC2 +:1041B0005E836C3FCA7BCF3EA7096A3F80E8DA3E48 +:1041C000D86B673F7533E63E59AA643FEA5AF13E21 +:1041D00098C5613F275DFC3E05BE5E3F3D9C033FA9 +:1041E0001A945B3F9BF5083F5348583FDA390E3F1E +:1041F00031DB543F2A68133F3D4D513FC07F183F8C +:10420000029F4D3FD17F1D3F12D1493F9967223F09 +:1042100003E4453F5636273F70D8413F4AEB2B3FDA +:10422000F9AE3D3FBB85303F4268393FF304353F2F +:10423000F304353F4268393FBB85303FF9AE3D3F1F +:104240004AEB2B3F70D8413F5636273F03E4453FAA +:104250009967223F12D1493FD17F1D3F029F4D3FB9 +:10426000C07F183F3D4D513F2A68133F31DB543F1B +:10427000DA390E3F5348583F9BF5083F1A945B3F8D +:104280003D9C033F05BE5E3F275DFC3E98C5613FF8 +:10429000EA5AF13E59AA643F7533E63ED86B673F50 +:1042A00080E8DA3EA7096A3FCA7BCF3E5E836C3F57 +:1042B00015EFC33E9ED86E3F2A44B83E0809713FB1 +:1042C000D47CAC3E4714733FE59AA03E0BFA743F92 +:1042D00031A0943E07BA763F938E883EF853783FDC +:1042E000CCCF783E9DC7793F135C603EBE147B3FC8 +:1042F000C2C5473E283B7C3FA2102F3EAC3A7D3FD3 +:104300008340163E24137E3F73B2FA3D6DC47E3F58 +:1043100036BDC83D6D4E7F3F05A9963D0FB17F3F2D +:104320002FFB483D43EC7F3FB00AC93C0000803F73 +:104330000000000043EC7F3FB00AC9BC0FB17F3FD3 +:104340002FFB48BD6D4E7F3F05A996BD6DC47E3FD6 +:1043500036BDC8BD24137E3F73B2FABDAC3A7D3F73 +:10436000834016BE283B7C3FA2102FBEBE147B3F6D +:10437000C2C547BE9DC7793F135C60BEF853783F06 +:10438000CCCF78BE07BA763F938E88BE0BFA743FC7 +:1043900031A094BE4714733FE59AA0BE0809713F4F +:1043A000D47CACBE9ED86E3F2A44B8BE5E836C3FC0 +:1043B00015EFC3BEA7096A3FCA7BCFBED86B673F64 +:1043C00080E8DABE59AA643F7533E6BE98C5613FFE +:1043D000EA5AF1BE05BE5E3F275DFCBE1A945B3F04 +:1043E0003D9C03BF5348583F9BF508BF31DB543F0A +:1043F000DA390EBF3D4D513F2A6813BF029F4D3F32 +:10440000C07F18BF12D1493FD17F1DBF03E4453F94 +:10441000996722BF70D8413F563627BFF9AE3D3F5E +:104420004AEB2BBF4268393FBB8530BFF304353FB1 +:10443000F30435BFBB85303F426839BF4AEB2B3FA1 +:10444000F9AE3DBF5636273F70D841BF9967223F2E +:1044500003E445BFD17F1D3F12D149BFC07F183F44 +:10446000029F4DBF2A68133F3D4D51BFDA390E3FC1 +:1044700031DB54BF9BF5083F534858BF3D9C033F79 +:104480001A945BBF275DFC3E05BE5EBFEA5AF13E53 +:1044900098C561BF7533E63E59AA64BF80E8DA3E2D +:1044A000D86B67BFCA7BCF3EA7096ABF15EFC33E73 +:1044B0005E836CBF2A44B83E9ED86EBFD47CAC3EAF +:1044C000080971BFE59AA03E471473BF31A0943E1E +:1044D0000BFA74BF938E883E07BA76BFCCCF783E76 +:1044E000F85378BF135C603E9DC779BFC2C5473E95 +:1044F000BE147BBFA2102F3E283B7CBF8340163EDC +:10450000AC3A7DBF73B2FA3D24137EBF36BDC83DC1 +:104510006DC47EBF05A9963D6D4E7FBF2FFB483D04 +:104520000FB17FBFB00AC93C43EC7FBF0800000257 +:104530001000000418000006200000082800000AEF +:104540003000000C3800000E4800400250004004CB +:1045500058004006600040086800400A7000400CA7 +:104560007800400E88008002900080049800800649 +:10457000A0008008A800800AB000800CB800800E5F +:10458000C800C002D000C004D800C006E000C008C7 +:10459000E800C00AF000C00CF800C00E08010003DB +:1045A0001001000518010007200100092801000B77 +:1045B0003001000D3801000F480140035001400553 +:1045C00058014007600140096801400B7001400D2F +:1045D0007801400F880180039001800598018007D1 +:1045E000A0018009A801800BB001800DB801800FE7 +:1045F000C801C003D001C005D801C007E001C0094F +:10460000E801C00BF001C00DF801C00F1002080452 +:1046100018020806200208082802080A3002080CBE +:104620003802080E50024804580248066002480842 +:104630006802480A7002480C7802480E900288040A +:1046400098028806A0028808A802880AB002880C8E +:10465000B802880ED002C804D802C806E002C80812 +:10466000E802C80AF002C80CF802C80E10030805D8 +:1046700018030807200308092803080B3003080D56 +:104680003803080F500348055803480760034809DA +:104690006803480B7003480D7803480F90038805A2 +:1046A00098038807A0038809A803880BB003880D26 +:1046B000B803880FD003C805D803C807E003C809AA +:1046C000E803C80BF003C80DF803C80F1804100660 +:1046D000200410082804100A3004100C3804100EAE +:1046E00058045006600450086804500A7004500CC6 +:1046F0007804500E98049006A0049008A804900A2C +:10470000B004900CB804900ED804D006E004D00891 +:10471000E804D00AF004D00CF804D00E18051007F5 +:10472000200510092805100B3005100D3805100F55 +:1047300058055007600550096805500B7005500D6D +:104740007805500F98059007A0059009A805900BD3 +:10475000B005900DB805900FD805D007E005D00939 +:10476000E805D00BF005D00DF805D00F200618088D +:104770002806180A3006180C3806180E6006580865 +:104780006806580A7006580C7806580EA006980855 +:10479000A806980AB006980CB806980EE006D80845 +:1047A000E806D80AF006D80CF806D80E2007180933 +:1047B0002807180B3007180D3807180F600758091D +:1047C0006807580B7007580D7807580FA00798090D +:1047D000A807980BB007980DB807980FE007D809FD +:1047E000E807D80BF007D80DF807D80F2808200ADB +:1047F0003008200C3808200E6808600A7008600C29 +:104800007808600EA808A00AB008A00CB808A00E8E +:10481000E808E00AF008E00CF808E00E2809200B90 +:104820003009200D3809200F6809600B7009600DF0 +:104830007809600FA809A00BB009A00DB809A00F56 +:10484000E809E00BF009E00DF809E00F300A280C48 +:10485000380A280E700A680C780A680EB00AA80C8C +:10486000B80AA80EF00AE80CF80AE80E300B280D7A +:10487000380B280F700B680D780B680FB00BA80D64 +:10488000B80BA80FF00BE80DF80BE80F380C300E42 +:10489000780C700EB80CB00EF80CF00E380D300F0E +:1048A000780D700FB80DB00FF80DF00F0800000272 +:1048B00010000004180000062000400028004002FC +:1048C000300040043800400640008000480080026C +:1048D00050008004580080066000C0006800C002DC +:1048E0007000C0047800C00680000001880000034A +:1048F0009000000598000007A0004001A8004003B8 +:10490000B0004005B8004007C0008001C800800327 +:10491000D0008005D8008007E000C001E800C00397 +:10492000F000C005F800C0070001000208010802FD +:10493000100108041801080620018002280148021D +:10494000300148043801480640010003480188024C +:104950005001880458018806600180036801C8027C +:104960007001C8047801C8068001080288010803A4 +:104970009001080598010807A0018802A8014803D2 +:10498000B0014805B8014807C0010803C801880301 +:10499000D0018805D8018807E0018803E801C80331 +:1049A000F001C805F801C80708021002000200045F +:1049B000100210041802100620028004280250027F +:1049C00030025004380250064002000548029002AE +:1049D0005002900458029006600280056802D002DE +:1049E0007002D0047802D006800208048802100306 +:1049F0009002100598021007A0028804A802500334 +:104A0000B0025005B8025007C0020805C802900362 +:104A1000D0029005D8029007E0028805E802D00392 +:104A2000F002D005F802D0070003000608031006C4 +:104A300010031804180318062003800628039006A4 +:104A40003003580438035806400300074803100792 +:104A50005003980458039806600380076803900782 +:104A60007003D8047803D806800308068803180664 +:104A70009003180598031807A0038806A803980652 +:104A8000B0035805B8035807C0030807C803180740 +:104A9000D0039805D8039807E0038807E803980730 +:104AA000F003D805F803D807080480041004200494 +:104AB00018042006280480053004600438046006C9 +:104AC00040040006480488045004A0045804A006CA +:104AD00060041006680488057004E0047804E006A9 +:104AE000880480069004200598042007A004080686 +:104AF000A8048007B0046005B8046007C00420065D +:104B0000C8048806D004A005D804A007E00418064D +:104B1000E8048807F004E005F804E007080520052C +:104B2000100580051805280628059005300588051C +:104B3000380568064005000748052007500580072E +:104B40005805A806600508076805980570058807D8 +:104B50007805E8068805900698052807A005280628 +:104B6000A8059007B0052807B8056807C005100715 +:104B7000C8059806D0059007D805A807E0051807CE +:104B8000E8059807F0059807F805E80718063006C5 +:104B900038067006400600074806800750060807DA +:104BA0005806B006600610076806900770061807DA +:104BB0007806F0068806A00698063007A806A00723 +:104BC000B0068807B8067007C0062007C806A00709 +:104BD000D0062807D806B007E0063007E806A80781 +:104BE000F0069807F806F0074807500738079807B7 +:104BF00050076007580770076007C0076807D007AD +:104C00007807F0077007E007B807F007A807B007B4 +:104C1000D807F007C807E007E807F0070000803F63 +:104C2000000000006DC47E3F36BDC83DBE147B3F12 +:104C3000C2C5473E0BFA743F31A0943E5E836C3F81 +:104C400015EFC33E98C5613FEA5AF13E31DB543F50 +:104C5000DA390E3F03E4453F9967223FF304353FBD +:104C6000F304353F9967223F03E4453FDA390E3FAD +:104C700031DB543FEA5AF13E98C5613F15EFC33E20 +:104C80005E836C3F31A0943E0BFA743FC2C5473E31 +:104C9000BE147B3F36BDC83D6DC47E3F00000000A2 +:104CA0000000803F36BDC8BD6DC47E3FC2C547BE53 +:104CB000BE147B3F31A094BE0BFA743F15EFC3BE08 +:104CC0005E836C3FEA5AF1BE98C5613FDA390EBF88 +:104CD00031DB543F996722BF03E4453FF30435BFFE +:104CE000F304353F03E445BF9967223F31DB54BFEE +:104CF000DA390E3F98C561BFEA5AF13E5E836CBF58 +:104D000015EFC33E0BFA74BF31A0943EBE147BBFB7 +:104D1000C2C5473E6DC47EBF36BDC83D000080BFE2 +:104D2000000000006DC47EBF36BDC8BDBE147BBF91 +:104D3000C2C547BE0BFA74BF31A094BE5E836CBF80 +:104D400015EFC3BE98C561BFEA5AF1BE31DB54BF4F +:104D5000DA390EBF03E445BF996722BFF30435BFBC +:104D6000F30435BF996722BF03E445BFDA390EBFAC +:104D700031DB54BFEA5AF1BE98C561BF15EFC3BE1F +:104D80005E836CBF31A094BE0BFA74BFC2C547BE30 +:104D9000BE147BBF36BDC8BD6DC47EBF00000080A1 +:104DA000000080BF36BDC83D6DC47EBFC2C5473E52 +:104DB000BE147BBF31A0943E0BFA74BF15EFC33E07 +:104DC0005E836CBFEA5AF13E98C561BFDA390E3F87 +:104DD00031DB54BF9967223F03E445BFF304353FFD +:104DE000F30435BF03E4453F996722BF31DB543FED +:104DF000DA390EBF98C5613FEA5AF1BE5E836C3F57 +:104E000015EFC3BE0BFA743F31A094BEBE147B3FB6 +:104E1000C2C547BE6DC47E3F36BDC8BD00000000A0 +:104E20000000803F2FFB483D0FB17F3F36BDC83D9E +:104E30006DC47E3F8340163EAC3A7D3FC2C5473EBF +:104E4000BE147B3FCCCF783EF853783F31A0943EE0 +:104E50000BFA743FD47CAC3E0809713F15EFC33E9A +:104E60005E836C3F80E8DA3ED86B673FEA5AF13EDA +:104E700098C5613F3D9C033F1A945B3FDA390E3F72 +:104E800031DB543FC07F183F029F4D3F9967223F5F +:104E900003E4453F4AEB2B3FF9AE3D3FF304353F7A +:104EA000F304353FF9AE3D3F4AEB2B3F03E4453F6A +:104EB0009967223F029F4D3FC07F183F31DB543F2F +:104EC000DA390E3F1A945B3F3D9C033F98C5613F22 +:104ED000EA5AF13ED86B673F80E8DA3E5E836C3F6A +:104EE00015EFC33E0809713FD47CAC3E0BFA743F0A +:104EF00031A0943EF853783FCCCF783EBE147B3F30 +:104F0000C2C5473EAC3A7D3F8340163E6DC47E3FEE +:104F100036BDC83D0FB17F3F2FFB483D0000803FAD +:104F2000000000000FB17F3F2FFB48BD6DC47E3FE6 +:104F300036BDC8BDAC3A7D3F834016BEBE147B3F34 +:104F4000C2C547BEF853783FCCCF78BE0BFA743F4A +:104F500031A094BE0809713FD47CACBE5E836C3F27 +:104F600015EFC3BED86B673F80E8DABE98C5613FD6 +:104F7000EA5AF1BE1A945B3F3D9C03BF31DB543FBC +:104F8000DA390EBF029F4D3FC07F18BF03E4453F93 +:104F9000996722BFF9AE3D3F4AEB2BBFF304353F83 +:104FA000F30435BF4AEB2B3FF9AE3DBF9967223F73 +:104FB00003E445BFC07F183F029F4DBFDA390E3F63 +:104FC00031DB54BF3D9C033F1A945BBFEA5AF13E6C +:104FD00098C561BF80E8DA3ED86B67BF15EFC33E66 +:104FE0005E836CBFD47CAC3E080971BF31A0943E97 +:104FF0000BFA74BFCCCF783EF85378BFC2C5473E9A +:10500000BE147BBF8340163EAC3A7DBF36BDC83D63 +:105010006DC47EBF2FFB483D0FB17FBF080000026B +:10502000100040001800400220008000280080028C +:105030003000C0003800C0024000000148000003FA +:105040005000400158004003600080016800800368 +:105050007000C0017800C0038000000288000802D0 +:105060009000000398004802A0000802A8008802EF +:10507000B000C800B800C802C0000801C80008039A +:10508000D0004801D8004803E0008801E800880308 +:10509000F000C801F800C803080110021001400127 +:1050A000180150022001000328019002300148013C +:1050B0003801D002480110035801500360019001EB +:1050C000680190037001D0017801D0038001400293 +:1050D000880118029001400398015802A00148027B +:1050E000A8019802B0014803B801D802C0015002DB +:1050F000C8011803D0015003D8015803E001580239 +:10510000E8019803F0015803F801D80308022002CF +:1051100010024002180260022802A002300260025F +:105120003802E0024002000348022003500240031C +:1051300058026003600220036802A003700260034B +:105140007802E0038802A002900280039802A00384 +:10515000B0028803B802E802C0028003C802280334 +:10516000D0029003D8026803E002A003E802A8037B +:10517000F0029803F802E803080320031003400339 +:10518000180360032803880330036003380398037F +:1051900048036003580370036803B0037803F00307 +:1051A0008803A0039003C0039803E003B003C8037F +:1051B000B803E803C803E003D803F0030000803F0E +:1051C00000000000BE147B3FC2C5473E5E836C3FBB +:1051D00015EFC33E31DB543FDA390E3FF304353F60 +:1051E000F304353FDA390E3F31DB543F15EFC33E50 +:1051F0005E836C3FC2C5473EBE147B3F000000008B +:105200000000803FC2C547BEBE147B3F15EFC3BE42 +:105210005E836C3FDA390EBF31DB543FF30435BF98 +:10522000F304353F31DB54BFDA390E3F5E836CBF88 +:1052300015EFC33EBE147BBFC2C5473E000080BF12 +:1052400000000000BE147BBFC2C547BE5E836CBFBA +:1052500015EFC3BE31DB54BFDA390EBFF30435BFDF +:10526000F30435BFDA390EBF31DB54BF15EFC3BECF +:105270005E836CBFC2C547BEBE147BBF000000800A +:10528000000080BFC2C5473EBE147BBF15EFC33EC2 +:105290005E836CBFDA390E3F31DB54BFF304353F18 +:1052A000F30435BF31DB543FDA390EBF5E836C3F08 +:1052B00015EFC3BEBE147B3FC2C547BE0000000051 +:1052C0000000803F36BDC83D6DC47E3FC2C5473E2D +:1052D000BE147B3F31A0943E0BFA743F15EFC33EE2 +:1052E0005E836C3FEA5AF13E98C5613FDA390E3F62 +:1052F00031DB543F9967223F03E4453FF304353FD8 +:10530000F304353F03E4453F9967223F31DB543FC7 +:10531000DA390E3F98C5613FEA5AF13E5E836C3F31 +:1053200015EFC33E0BFA743F31A0943EBE147B3F91 +:10533000C2C5473E6DC47E3F36BDC83D0000803FBC +:10534000000000006DC47E3F36BDC8BDBE147B3F6B +:10535000C2C547BE0BFA743F31A094BE5E836C3F5A +:1053600015EFC3BE98C5613FEA5AF1BE31DB543F29 +:10537000DA390EBF03E4453F996722BFF304353F96 +:10538000F30435BF9967223F03E445BFDA390E3F86 +:1053900031DB54BFEA5AF13E98C561BF15EFC33EF9 +:1053A0005E836CBF31A0943E0BFA74BFC2C5473E0A +:1053B000BE147BBF36BDC83D6DC47EBFFEE7FEE7B1 +:1053C000FEE7FEE7FEE770477047704780B500F0E4 +:1053D0005DF801BD80B52248F8F7BBFA01BD38B5CC +:1053E0000020204C2000F7F76EFB1F4D0122290002 +:1053F0002000F7F736FB1D48006829784269521CE7 +:10540000C36892FBF3F403FB142203699A4203D0AE +:10541000C9B20830FCF78BFF31BD38B50020144C01 +:105420002000F7F750FB134D012229002000F7F769 +:1054300018FB1148006829784269521CC36892FB26 +:10544000F3F403FB142203699A4203D0C9B2083073 +:10545000FCF76DFF31BD80B50848FCF7E7F801BDEA +:1054600098F60020CCF300208AF700207CF700207B +:1054700050F400208BF7002080F700204CF600202D +:1054800080B52020F9F75AFD01BD000003480168EE +:10549000034A127889180160704700BF78F700202E +:1054A0000C0100200000803F000000005E836C3F84 +:1054B00015EFC33EF304353FF304353F15EFC33E0C +:1054C0005E836C3F000000000000803F15EFC3BE0C +:1054D0005E836C3FF30435BFF304353F5E836CBFDE +:1054E00015EFC33E000080BF000000005E836CBF6C +:1054F00015EFC3BEF30435BFF30435BF15EFC3BECC +:105500005E836CBF00000080000080BF15EFC33ECB +:105510005E836CBFF304353FF30435BF5E836C3F9D +:1055200015EFC3BE000000000000803FC2C5473E2B +:10553000BE147B3F15EFC33E5E836C3FDA390E3FEE +:1055400031DB543FF304353FF304353F31DB543F47 +:10555000DA390E3F5E836C3F15EFC33EBE147B3FCE +:10556000C2C5473E0000803F00000000BE147B3FE4 +:10557000C2C547BE5E836C3F15EFC3BE31DB543FEF +:10558000DA390EBFF304353FF30435BFDA390E3F85 +:1055900031DB54BF15EFC33E5E836CBFC2C5473ECF +:1055A000BE147BBF08004000100080001800C0003F +:1055B0002000000128004001300080013800C001B7 +:1055C000500088005800C8006000080168004801C9 +:1055D000700088017800C8019800D000A000100178 +:1055E000A8005001B0009001B800D001E0001801FF +:1055F000E8005801F0009801F800D8012801600186 +:105600003001A0013801E0017001A8017801E80132 +:10561000B801F00108004000100080001800C00030 +:105620002000400028004800300088003800C800F2 +:1056300040008000480050005800D000500090000A +:105640006000C0006800D000700098007800D800AA +:105650008800C0009000A000A800D0009800E000E2 +:10566000B000D000B800E800D800F000C800E000AA +:10567000E800F000453A5C595C4941525C73746D36 +:1056800033326C3433315F786C5F63757272656E80 +:10569000745F776974685F756172745C4170705C87 +:1056A0005372635C696E666C6173682E6300000000 +:1056B00030B4002512E050F8042BD30744BF4A440D +:1056C000521E091F042942F8045BFAD213468C07C4 +:1056D00044BF15809B1CC90748BF1D7050F8041BB0 +:1056E0000029E8D130BC7047A0860100400D0300BE +:1056F000801A060000350C0040420F0080841E0016 +:1057000000093D0000127A000024F40000366E010A +:105710000048E801006CDC025B4552524F525D20AC +:105720005B25733A25645D20696E666C6173682041 +:105730006572617365206572726F72210D0A0000D7 +:1057400008004000180048001000400028005000E9 +:105750002000400038005800300048005800680021 +:10576000480060006800700010B50749794418319E +:10577000064C7C44163404E00A68081D114488472E +:105780000146A142F8D110BD2C00000048000000E5 +:105790004EF68851CEF20001086840F470000860AF +:1057A000BFF34F8FBFF36F8F4FF00170E1EE100A20 +:1057B00070470000FDFEFFFF7CF600001001002096 +:1057C00000000000D355FFFF3C0200001E01000056 +:1057D0000000002000F00DF8002801D0FFF7C4FF02 +:1057E000AFF300800020AFF30080F8F785FF00F0F2 +:1057F00002F80120704700F001B800000746384663 +:10580000F6F778F9FBE700000548014603B468465F +:1058100080F30988AFF30080FFF7BAFFFFF7DAFFE4 +:10582000A5EDF5FE73746172745F7265675F616404 +:105830006472206572726F723A2564007265675FE8 +:105840006E756D206572726F723A256400000000FB +:105850000000000000000000010203040607080920 +:1058600010000000A4540208405702081400000071 +:1058700020000000BC51020814560208300000004D +:10588000400000001C4C0208A4550208380000002B +:10589000800000002C3D02081C500208D0000000CF +:1058A000000100002C2D0208AC480208B8010000DD +:1058B00000020000CC7E01082C450208C001000057 +:1058C000000400008C01010808BB01080807000063 +:1058D000000800008C8100080C610108E00E000047 +:1058E000001000008C0100088C410108C00F00006E +:1058F0000148804701480047015902080958020839 +:105900000248016851F470010160704788ED00E0C1 +:105910000000000001020304FFF7FEBFFFF7FEBF17 +:10592000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFAB +:10593000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF9B +:10594000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF8B +:10595000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF7B :10596000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF6B :10597000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF5B :10598000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF4B @@ -9633,19 +9633,15 @@ :1059D000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFFB :1059E000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFEB :1059F000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFDB -:105A0000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFCA -:105A1000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFBA -:105A2000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBFAA -:105A3000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF9A -:105A4000FFF7FEBF1013C0000900300064000A40D9 -:105A500000000300000019FE0108100812D9081206 -:105A60000001100329FC01080109124D0812020867 -:105A7000126F08212812890812040812AB081205B7 -:105A80000812C90812310812DF0812320810030187 -:105A9000FD01083308122308123408123D0812359C -:105AA00008125708F00801553000FFF016000010EA -:105AB0000001E2011433093D15F30280252DF205A2 -:105AC0000318F00207AAAF01080452FF01E3AAAECF -:035AD00014116747 -:04000005080258494C +:105A0000FFF7FEBF1013C0000900300064000A4019 +:105A100000000300000019FE0108100812D508124A +:105A20000001100329FC01080109124D08120208A7 +:105A3000126F08212812890812040812AB081205F7 +:105A40000812C90812310812DF08123208100301C7 +:105A5000FD01083308122308123408123D081235DC +:105A600008125708F00801553000FFF0160000102A +:105A70000001E2011433093D15F30280252DF205E2 +:105A80000318F00207AAAF01080452FF01E3AAAE0F +:035A900014116787 +:04000005080258098C :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 968c219..e32e491 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/Exe/STM32L431_XL_CURRENT_V10.sim b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.sim index 0347515..4e9d77c 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.sim and b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.sim 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 c0bcb0a..17a3b1e 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 26/Jul/2024 14:48:43 +# IAR ELF Linker V9.40.2.374/W64 for ARM 29/Jul/2024 11:38:06 # Copyright 2007-2023 IAR Systems AB. # # Output file = @@ -100,7 +100,7 @@ initialize by copy { rw }; .intvec ro code 0x800'0000 0x18c startup_stm32l431xx.o [4] - 0x800'018c 0x18c -"P1": 0x2'5947 +"P1": 0x2'5907 .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] @@ -163,88 +163,104 @@ initialize by copy { rw }; .text ro code 0x801'f950 0xd2 arm_scale_f32.o [9] .text ro code 0x801'fa24 0xb6 arm_max_f32.o [9] .text ro code 0x801'fadc 0xc0 arm_rms_f32.o [9] - .text ro code 0x801'fb9c 0x614 frt_protocol.o [1] - .text ro code 0x802'01b0 0x22 stm32l4xx_hal.o [5] - .text ro code 0x802'01d4 0x1bc arm_rfft_fast_init_f32.o [9] - .text ro code 0x802'0390 0x19c gpio.o [3] - .text ro code 0x802'052c 0x2c dma.o [3] - .text ro code 0x802'0558 0x184 adc.o [3] - .text ro code 0x802'06dc 0xf8 tim.o [3] - .text ro code 0x802'07d4 0xb8 dac.o [3] - .text ro code 0x802'088c 0x1d0 uart_dev.o [1] - .text ro code 0x802'0a5c 0xb0 stm32l4xx_hal_adc_ex.o [5] - .text ro code 0x802'0b0c 0xa0a stm32l4xx_hal_adc.o [5] - .text ro code 0x802'1518 0x368 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'1880 0xd0 inflash.o [1] - .text ro code 0x802'1950 0x10c e22.o [6] - .text ro code 0x802'1a5c 0x4c stm32l4xx_hal_pwr.o [5] - .text ro code 0x802'1aa8 0x66 ABImemset.o [11] - .text ro code 0x802'1b0e 0x2 stm32l4xx_hal_gpio.o [5] - .text ro code 0x802'1b10 0x704 arm_cfft_f32.o [9] - .text ro code 0x802'2214 0x38 stm32l4xx_hal_msp.o [3] - .text ro code 0x802'224c 0x98 arm_cfft_init_f32.o [9] - .text ro code 0x802'22e4 0x7c stm32l4xx_hal_tim_ex.o [5] - .text ro code 0x802'2360 0x6e ring_queue.o [7] - .text ro code 0x802'23d0 0x34 vsprintf.o [8] - .text ro code 0x802'2404 0x2 stm32l4xx_hal_adc.o [5] - .text ro code 0x802'2406 0x2 stm32l4xx_hal_adc.o [5] - .text ro code 0x802'2408 0x2 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'240a 0x2 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'240c 0x2 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'240e 0x2 stm32l4xx_hal_tim_ex.o [5] - .text ro code 0x802'2410 0x2 stm32l4xx_hal_tim_ex.o [5] - .text ro code 0x802'2412 0x2 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'2414 0x2 stm32l4xx_hal_tim_ex.o [5] - .text ro code 0x802'2418 0x19c stm32l4xx_hal_flash_ex.o [5] - .text ro code 0x802'25b4 0x1c strrchr.o [8] - .text ro code 0x802'25d0 0x1b4 stm32l4xx_hal_flash.o [5] - .text ro code 0x802'2784 0x5a2 arm_cfft_radix8_f32.o [9] - .text ro code 0x802'2d26 0x44 arm_bitreversal2.o [9] - .rodata const 0x802'2d6c 0x800 arm_common_tables.o [9] - .rodata const 0x802'356c 0x800 arm_common_tables.o [9] - .rodata const 0x802'3d6c 0x400 arm_common_tables.o [9] - .rodata const 0x802'416c 0x400 arm_common_tables.o [9] - .rodata const 0x802'456c 0x380 arm_common_tables.o [9] - .rodata const 0x802'48ec 0x370 arm_common_tables.o [9] - .rodata const 0x802'4c5c 0x200 arm_common_tables.o [9] - .rodata const 0x802'4e5c 0x200 arm_common_tables.o [9] - .rodata const 0x802'505c 0x1a0 arm_common_tables.o [9] - .rodata const 0x802'51fc 0x100 arm_common_tables.o [9] - .rodata const 0x802'52fc 0x100 arm_common_tables.o [9] - .text ro code 0x802'53fc 0xce stm32l4xx_it.o [3] - .text ro code 0x802'54cc 0x18 stm32l4xx_hal.o [5] - .rodata const 0x802'54e4 0x80 arm_common_tables.o [9] - .rodata const 0x802'5564 0x80 arm_common_tables.o [9] - .rodata const 0x802'55e4 0x70 arm_common_tables.o [9] - .rodata const 0x802'5654 0x60 arm_common_tables.o [9] - .rodata const 0x802'56b4 0x3c inflash.o [1] - .text ro code 0x802'56f0 0x38 zero_init3.o [11] - .rodata const 0x802'5728 0x30 system_stm32l4xx.o [2] - .rodata const 0x802'5758 0x28 inflash.o [1] - .rodata const 0x802'5780 0x28 arm_common_tables.o [9] - .text ro code 0x802'57a8 0x28 data_init.o [11] - .text ro code 0x802'57d0 0x22 fpinit_M.o [10] - .iar.init_table const 0x802'57f4 0x20 - Linker created - - .text ro code 0x802'5814 0x1e cmain.o [11] - .text ro code 0x802'5832 0x4 low_level_init.o [8] - .text ro code 0x802'5836 0x4 exit.o [8] - .text ro code 0x802'583c 0xa cexit.o [11] - .text ro code 0x802'5848 0x1c cstartup_M.o [11] - .rodata const 0x802'5864 0x18 frt_protocol.o [1] - .rodata const 0x802'587c 0x14 frt_protocol.o [1] - .rodata const 0x802'5890 0x10 system_stm32l4xx.o [2] + .text ro code 0x801'fb9c 0x5d4 frt_protocol.o [1] + .text ro code 0x802'0170 0x22 stm32l4xx_hal.o [5] + .text ro code 0x802'0194 0x1bc arm_rfft_fast_init_f32.o [9] + .text ro code 0x802'0350 0x19c gpio.o [3] + .text ro code 0x802'04ec 0x2c dma.o [3] + .text ro code 0x802'0518 0x184 adc.o [3] + .text ro code 0x802'069c 0xf8 tim.o [3] + .text ro code 0x802'0794 0xb8 dac.o [3] + .text ro code 0x802'084c 0x1d0 uart_dev.o [1] + .text ro code 0x802'0a1c 0xb0 stm32l4xx_hal_adc_ex.o [5] + .text ro code 0x802'0acc 0xa0a stm32l4xx_hal_adc.o [5] + .text ro code 0x802'14d8 0x368 stm32l4xx_hal_tim.o [5] + .text ro code 0x802'1840 0xd0 inflash.o [1] + .text ro code 0x802'1910 0x10c e22.o [6] + .text ro code 0x802'1a1c 0x4c stm32l4xx_hal_pwr.o [5] + .text ro code 0x802'1a68 0x66 ABImemset.o [11] + .text ro code 0x802'1ace 0x2 stm32l4xx_hal_gpio.o [5] + .text ro code 0x802'1ad0 0x704 arm_cfft_f32.o [9] + .text ro code 0x802'21d4 0x38 stm32l4xx_hal_msp.o [3] + .text ro code 0x802'220c 0x98 arm_cfft_init_f32.o [9] + .text ro code 0x802'22a4 0x7c stm32l4xx_hal_tim_ex.o [5] + .text ro code 0x802'2320 0x6e ring_queue.o [7] + .text ro code 0x802'2390 0x34 vsprintf.o [8] + .text ro code 0x802'23c4 0x2 stm32l4xx_hal_adc.o [5] + .text ro code 0x802'23c6 0x2 stm32l4xx_hal_adc.o [5] + .text ro code 0x802'23c8 0x2 stm32l4xx_hal_tim.o [5] + .text ro code 0x802'23ca 0x2 stm32l4xx_hal_tim.o [5] + .text ro code 0x802'23cc 0x2 stm32l4xx_hal_tim.o [5] + .text ro code 0x802'23ce 0x2 stm32l4xx_hal_tim_ex.o [5] + .text ro code 0x802'23d0 0x2 stm32l4xx_hal_tim_ex.o [5] + .text ro code 0x802'23d2 0x2 stm32l4xx_hal_tim.o [5] + .text ro code 0x802'23d4 0x2 stm32l4xx_hal_tim_ex.o [5] + .text ro code 0x802'23d8 0x19c stm32l4xx_hal_flash_ex.o [5] + .text ro code 0x802'2574 0x1c strrchr.o [8] + .text ro code 0x802'2590 0x1b4 stm32l4xx_hal_flash.o [5] + .text ro code 0x802'2744 0x5a2 arm_cfft_radix8_f32.o [9] + .text ro code 0x802'2ce6 0x44 arm_bitreversal2.o [9] + .rodata const 0x802'2d2c 0x800 arm_common_tables.o [9] + .rodata const 0x802'352c 0x800 arm_common_tables.o [9] + .rodata const 0x802'3d2c 0x400 arm_common_tables.o [9] + .rodata const 0x802'412c 0x400 arm_common_tables.o [9] + .rodata const 0x802'452c 0x380 arm_common_tables.o [9] + .rodata const 0x802'48ac 0x370 arm_common_tables.o [9] + .rodata const 0x802'4c1c 0x200 arm_common_tables.o [9] + .rodata const 0x802'4e1c 0x200 arm_common_tables.o [9] + .rodata const 0x802'501c 0x1a0 arm_common_tables.o [9] + .rodata const 0x802'51bc 0x100 arm_common_tables.o [9] + .rodata const 0x802'52bc 0x100 arm_common_tables.o [9] + .text ro code 0x802'53bc 0xce stm32l4xx_it.o [3] + .text ro code 0x802'548c 0x18 stm32l4xx_hal.o [5] + .rodata const 0x802'54a4 0x80 arm_common_tables.o [9] + .rodata const 0x802'5524 0x80 arm_common_tables.o [9] + .rodata const 0x802'55a4 0x70 arm_common_tables.o [9] + .rodata const 0x802'5614 0x60 arm_common_tables.o [9] + .rodata const 0x802'5674 0x3c inflash.o [1] + .text ro code 0x802'56b0 0x38 zero_init3.o [11] + .rodata const 0x802'56e8 0x30 system_stm32l4xx.o [2] + .rodata const 0x802'5718 0x28 inflash.o [1] + .rodata const 0x802'5740 0x28 arm_common_tables.o [9] + .text ro code 0x802'5768 0x28 data_init.o [11] + .text ro code 0x802'5790 0x22 fpinit_M.o [10] + .iar.init_table const 0x802'57b4 0x20 - Linker created - + .text ro code 0x802'57d4 0x1e cmain.o [11] + .text ro code 0x802'57f2 0x4 low_level_init.o [8] + .text ro code 0x802'57f6 0x4 exit.o [8] + .text ro code 0x802'57fc 0xa cexit.o [11] + .text ro code 0x802'5808 0x1c cstartup_M.o [11] + .rodata const 0x802'5824 0x18 frt_protocol.o [1] + .rodata const 0x802'583c 0x14 frt_protocol.o [1] + .rodata const 0x802'5850 0x10 system_stm32l4xx.o [2] + .rodata const 0x802'5860 0x10 arm_const_structs.o [9] + .rodata const 0x802'5870 0x10 arm_const_structs.o [9] + .rodata const 0x802'5880 0x10 arm_const_structs.o [9] + .rodata const 0x802'5890 0x10 arm_const_structs.o [9] .rodata const 0x802'58a0 0x10 arm_const_structs.o [9] .rodata const 0x802'58b0 0x10 arm_const_structs.o [9] .rodata const 0x802'58c0 0x10 arm_const_structs.o [9] .rodata const 0x802'58d0 0x10 arm_const_structs.o [9] .rodata const 0x802'58e0 0x10 arm_const_structs.o [9] - .rodata const 0x802'58f0 0x10 arm_const_structs.o [9] - .rodata const 0x802'5900 0x10 arm_const_structs.o [9] - .rodata const 0x802'5910 0x10 arm_const_structs.o [9] - .rodata const 0x802'5920 0x10 arm_const_structs.o [9] - .text ro code 0x802'5930 0x10 startup_stm32l431xx.o [4] - .text ro code 0x802'5940 0x10 system_stm32l4xx.o [2] - .rodata const 0x802'5950 0x8 system_stm32l4xx.o [2] + .text ro code 0x802'58f0 0x10 startup_stm32l431xx.o [4] + .text ro code 0x802'5900 0x10 system_stm32l4xx.o [2] + .rodata const 0x802'5910 0x8 system_stm32l4xx.o [2] + .text ro code 0x802'5918 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'591c 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5920 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5924 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5928 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'592c 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5930 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5934 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5938 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'593c 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5940 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5944 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5948 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'594c 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5950 0x4 startup_stm32l431xx.o [4] + .text ro code 0x802'5954 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'5958 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'595c 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'5960 0x4 startup_stm32l431xx.o [4] @@ -288,26 +304,10 @@ initialize by copy { rw }; .text ro code 0x802'59f8 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'59fc 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'5a00 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a04 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a08 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a0c 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a10 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a14 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a18 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a1c 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a20 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a24 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a28 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a2c 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a30 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a34 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a38 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a3c 0x4 startup_stm32l431xx.o [4] - .text ro code 0x802'5a40 0x4 startup_stm32l431xx.o [4] - .rodata const 0x802'5a44 0x0 zero_init3.o [11] - .rodata const 0x802'5a44 0x0 lz77_init_single.o [11] - Initializer bytes const 0x802'5a44 0x8f - - 0x802'5ad3 0x2'5947 + .rodata const 0x802'5a04 0x0 zero_init3.o [11] + .rodata const 0x802'5a04 0x0 lz77_init_single.o [11] + Initializer bytes const 0x802'5a04 0x8f + - 0x802'5a93 0x2'5907 "P2", part 1 of 3: 0x10d P2-1 0x2000'0000 0x10d @@ -374,7 +374,7 @@ Unused ranges: From To Size ---- -- ---- - 0x802'5ad3 0x803'ffff 0x1'a52d + 0x802'5a93 0x803'ffff 0x1'a56d 0x2000'010d 0x2000'010f 0x3 0x2000'f78c 0x2000'f78f 0x4 0x2000'fb90 0x2000'ffff 0x470 @@ -392,7 +392,7 @@ Zero (__iar_zero_init3) Copy/lz77 (__iar_lz77_init_single3) 1 source range, total size 0x8f (53% of destination): - 0x802'5a44 0x8f + 0x802'5a04 0x8f 1 destination range, total size 0x10d: 0x2000'0000 0x10d @@ -409,11 +409,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'556 99 376 + frt_protocol.o 1'492 99 376 inflash.o 208 104 8 uart_dev.o 464 25 756 --------------------------------------------------- - Total: 2'228 228 1'140 + Total: 2'164 228 1'140 E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\CMSIS_6603591812247902717.dir: [2] system_stm32l4xx.o 16 74 4 @@ -543,7 +543,7 @@ shb_l.a: [12] Gaps 41 4 Linker created 32 1'024 ------------------------------------------------------- - Grand Total: 34'013 120'310 64'393 + Grand Total: 33'949 120'310 64'393 ******************************************************************************* @@ -552,83 +552,83 @@ shb_l.a: [12] Entry Address Size Type Object ----- ------- ---- ---- ------ -.iar.init_table$$Base 0x802'57f4 -- Gb - Linker created - -.iar.init_table$$Limit 0x802'5814 -- Gb - Linker created - -?main 0x802'5815 Code Gb cmain.o [11] -ADC1_IRQHandler 0x802'599d Code Wk startup_stm32l431xx.o [4] -ADC_DMAConvCplt 0x802'1471 0x82 Code Gb stm32l4xx_hal_adc.o [5] -ADC_DMAError 0x802'14fd 0x1a Code Gb stm32l4xx_hal_adc.o [5] -ADC_DMAHalfConvCplt 0x802'14f3 0xa Code Gb stm32l4xx_hal_adc.o [5] -ADC_Disable 0x802'13f1 0x7e Code Gb stm32l4xx_hal_adc.o [5] -ADC_Enable 0x802'1319 0xaa Code Gb stm32l4xx_hal_adc.o [5] -AHBPrescTable 0x802'5890 0x10 Data Gb system_stm32l4xx.o [2] -APBPrescTable 0x802'5950 0x8 Data Gb system_stm32l4xx.o [2] -BusFault_Handler 0x802'5403 0x2 Code Gb stm32l4xx_it.o [3] -CAN1_RX0_IRQHandler 0x802'59a5 Code Wk startup_stm32l431xx.o [4] -CAN1_RX1_IRQHandler 0x802'59a9 Code Wk startup_stm32l431xx.o [4] -CAN1_SCE_IRQHandler 0x802'59ad Code Wk startup_stm32l431xx.o [4] -CAN1_TX_IRQHandler 0x802'59a1 Code Wk startup_stm32l431xx.o [4] -COMP_IRQHandler 0x802'5a09 Code Wk startup_stm32l431xx.o [4] +.iar.init_table$$Base 0x802'57b4 -- Gb - Linker created - +.iar.init_table$$Limit 0x802'57d4 -- Gb - Linker created - +?main 0x802'57d5 Code Gb cmain.o [11] +ADC1_IRQHandler 0x802'595d Code Wk startup_stm32l431xx.o [4] +ADC_DMAConvCplt 0x802'1431 0x82 Code Gb stm32l4xx_hal_adc.o [5] +ADC_DMAError 0x802'14bd 0x1a Code Gb stm32l4xx_hal_adc.o [5] +ADC_DMAHalfConvCplt 0x802'14b3 0xa Code Gb stm32l4xx_hal_adc.o [5] +ADC_Disable 0x802'13b1 0x7e Code Gb stm32l4xx_hal_adc.o [5] +ADC_Enable 0x802'12d9 0xaa Code Gb stm32l4xx_hal_adc.o [5] +AHBPrescTable 0x802'5850 0x10 Data Gb system_stm32l4xx.o [2] +APBPrescTable 0x802'5910 0x8 Data Gb system_stm32l4xx.o [2] +BusFault_Handler 0x802'53c3 0x2 Code Gb stm32l4xx_it.o [3] +CAN1_RX0_IRQHandler 0x802'5965 Code Wk startup_stm32l431xx.o [4] +CAN1_RX1_IRQHandler 0x802'5969 Code Wk startup_stm32l431xx.o [4] +CAN1_SCE_IRQHandler 0x802'596d Code Wk startup_stm32l431xx.o [4] +CAN1_TX_IRQHandler 0x802'5961 Code Wk startup_stm32l431xx.o [4] +COMP_IRQHandler 0x802'59c9 Code Wk startup_stm32l431xx.o [4] CRC16 0x801'fbbb 0x5c Code Gb frt_protocol.o [1] -CRS_IRQHandler 0x802'5a41 Code Wk startup_stm32l431xx.o [4] +CRS_IRQHandler 0x802'5a01 Code Wk startup_stm32l431xx.o [4] CSTACK$$Base 0x2000'f790 -- Gb - Linker created - CSTACK$$Limit 0x2000'fb90 -- Gb - Linker created - Cur_sensor_pwr_on 0x801'e4a7 0x2e Code Gb main.o [3] DMA1_Channel1_IRQHandler - 0x802'5415 0xa Code Gb stm32l4xx_it.o [3] + 0x802'53d5 0xa Code Gb stm32l4xx_it.o [3] DMA1_Channel2_IRQHandler - 0x802'5985 Code Wk startup_stm32l431xx.o [4] + 0x802'5945 Code Wk startup_stm32l431xx.o [4] DMA1_Channel3_IRQHandler - 0x802'5989 Code Wk startup_stm32l431xx.o [4] + 0x802'5949 Code Wk startup_stm32l431xx.o [4] DMA1_Channel4_IRQHandler - 0x802'598d Code Wk startup_stm32l431xx.o [4] + 0x802'594d Code Wk startup_stm32l431xx.o [4] DMA1_Channel5_IRQHandler - 0x802'5991 Code Wk startup_stm32l431xx.o [4] + 0x802'5951 Code Wk startup_stm32l431xx.o [4] DMA1_Channel6_IRQHandler - 0x802'5995 Code Wk startup_stm32l431xx.o [4] + 0x802'5955 Code Wk startup_stm32l431xx.o [4] DMA1_Channel7_IRQHandler - 0x802'5999 Code Wk startup_stm32l431xx.o [4] + 0x802'5959 Code Wk startup_stm32l431xx.o [4] DMA2_Channel1_IRQHandler - 0x802'59f5 Code Wk startup_stm32l431xx.o [4] + 0x802'59b5 Code Wk startup_stm32l431xx.o [4] DMA2_Channel2_IRQHandler - 0x802'59f9 Code Wk startup_stm32l431xx.o [4] + 0x802'59b9 Code Wk startup_stm32l431xx.o [4] DMA2_Channel3_IRQHandler - 0x802'59fd Code Wk startup_stm32l431xx.o [4] + 0x802'59bd Code Wk startup_stm32l431xx.o [4] DMA2_Channel4_IRQHandler - 0x802'5a01 Code Wk startup_stm32l431xx.o [4] + 0x802'59c1 Code Wk startup_stm32l431xx.o [4] DMA2_Channel5_IRQHandler - 0x802'5a05 Code Wk startup_stm32l431xx.o [4] + 0x802'59c5 Code Wk startup_stm32l431xx.o [4] DMA2_Channel6_IRQHandler - 0x802'5a15 Code Wk startup_stm32l431xx.o [4] + 0x802'59d5 Code Wk startup_stm32l431xx.o [4] DMA2_Channel7_IRQHandler - 0x802'5a19 Code Wk startup_stm32l431xx.o [4] + 0x802'59d9 Code Wk startup_stm32l431xx.o [4] DMA_SetConfig 0x801'da3d 0x32 Code Lc stm32l4xx_hal_dma.o [5] -DebugMon_Handler 0x802'5409 0x2 Code Gb stm32l4xx_it.o [3] -EXTI0_IRQHandler 0x802'5971 Code Wk startup_stm32l431xx.o [4] -EXTI15_10_IRQHandler 0x802'59e1 Code Wk startup_stm32l431xx.o [4] -EXTI1_IRQHandler 0x802'5975 Code Wk startup_stm32l431xx.o [4] -EXTI2_IRQHandler 0x802'5979 Code Wk startup_stm32l431xx.o [4] -EXTI3_IRQHandler 0x802'597d Code Wk startup_stm32l431xx.o [4] -EXTI4_IRQHandler 0x802'5981 Code Wk startup_stm32l431xx.o [4] -EXTI9_5_IRQHandler 0x802'54c1 0xa Code Gb stm32l4xx_it.o [3] +DebugMon_Handler 0x802'53c9 0x2 Code Gb stm32l4xx_it.o [3] +EXTI0_IRQHandler 0x802'5931 Code Wk startup_stm32l431xx.o [4] +EXTI15_10_IRQHandler 0x802'59a1 Code Wk startup_stm32l431xx.o [4] +EXTI1_IRQHandler 0x802'5935 Code Wk startup_stm32l431xx.o [4] +EXTI2_IRQHandler 0x802'5939 Code Wk startup_stm32l431xx.o [4] +EXTI3_IRQHandler 0x802'593d Code Wk startup_stm32l431xx.o [4] +EXTI4_IRQHandler 0x802'5941 Code Wk startup_stm32l431xx.o [4] +EXTI9_5_IRQHandler 0x802'5481 0xa Code Gb stm32l4xx_it.o [3] Error_Handler 0x801'e825 0x4 Code Gb main.o [3] -FLASH_FlushCaches 0x802'2541 0x64 Code Gb stm32l4xx_hal_flash_ex.o [5] -FLASH_IRQHandler 0x802'5969 Code Wk startup_stm32l431xx.o [4] -FLASH_MassErase 0x802'24fd 0x1e Code Lc stm32l4xx_hal_flash_ex.o [5] -FLASH_PageErase 0x802'251b 0x26 Code Gb stm32l4xx_hal_flash_ex.o [5] +FLASH_FlushCaches 0x802'2501 0x64 Code Gb stm32l4xx_hal_flash_ex.o [5] +FLASH_IRQHandler 0x802'5929 Code Wk startup_stm32l431xx.o [4] +FLASH_MassErase 0x802'24bd 0x1e Code Lc stm32l4xx_hal_flash_ex.o [5] +FLASH_PageErase 0x802'24db 0x26 Code Gb stm32l4xx_hal_flash_ex.o [5] FLASH_Program_DoubleWord - 0x802'2717 0x1a Code Lc stm32l4xx_hal_flash.o [5] -FLASH_Program_Fast 0x802'2731 0x2e Code Lc stm32l4xx_hal_flash.o [5] + 0x802'26d7 0x1a Code Lc stm32l4xx_hal_flash.o [5] +FLASH_Program_Fast 0x802'26f1 0x2e Code Lc stm32l4xx_hal_flash.o [5] FLASH_WaitForLastOperation - 0x802'26b1 0x66 Code Gb stm32l4xx_hal_flash.o [5] -FPU_IRQHandler 0x802'5a3d Code Wk startup_stm32l431xx.o [4] -FRT_MsgHandler 0x802'00b3 0x6a Code Gb frt_protocol.o [1] + 0x802'2671 0x66 Code Gb stm32l4xx_hal_flash.o [5] +FPU_IRQHandler 0x802'59fd Code Wk startup_stm32l431xx.o [4] +FRT_MsgHandler 0x802'0073 0x6a Code Gb frt_protocol.o [1] FRT_MsgProc_ReadRegister - 0x801'fe19 0xb6 Code Lc frt_protocol.o [1] + 0x801'fe19 0xb4 Code Lc frt_protocol.o [1] FRT_MsgProc_ReadRegister::reg_value_buff 0x2000'f23c 0xc8 Data Lc frt_protocol.o [1] FRT_MsgProc_WriteRegister - 0x801'fed9 0x138 Code Lc frt_protocol.o [1] + 0x801'fed5 0x138 Code Lc frt_protocol.o [1] FRT_ReadReg 0x801'fde3 0x36 Code Lc frt_protocol.o [1] FRT_ReadRegBat_Charge 0x801'fcab 0x1e Code Lc frt_protocol.o [1] FRT_ReadRegBat_V 0x801'fc89 0x22 Code Lc frt_protocol.o [1] @@ -643,19 +643,19 @@ FRT_WriteRegPulseCount 0x801'fd3d 0x1a Code Lc frt_protocol.o [1] FRT_WriteRegReboot 0x801'fd57 0x18 Code Lc frt_protocol.o [1] FRT_swap_endian_16 0x801'fc17 0x10 Code Lc frt_protocol.o [1] HAL_ADCEx_Calibration_Start - 0x802'0a79 0x8e Code Gb stm32l4xx_hal_adc_ex.o [5] -HAL_ADC_ConfigChannel 0x802'0f39 0x3da Code Gb stm32l4xx_hal_adc.o [5] + 0x802'0a39 0x8e Code Gb stm32l4xx_hal_adc_ex.o [5] +HAL_ADC_ConfigChannel 0x802'0ef9 0x3da Code Gb stm32l4xx_hal_adc.o [5] HAL_ADC_ConvCpltCallback 0x801'e4dd 0x202 Code Gb main.o [3] HAL_ADC_ConvHalfCpltCallback - 0x802'2407 0x2 Code Wk stm32l4xx_hal_adc.o [5] -HAL_ADC_ErrorCallback 0x802'2405 0x2 Code Wk stm32l4xx_hal_adc.o [5] -HAL_ADC_Init 0x802'0c8d 0x1c6 Code Gb stm32l4xx_hal_adc.o [5] -HAL_ADC_MspInit 0x802'0603 0xb8 Code Gb adc.o [3] -HAL_ADC_Start_DMA 0x802'0e53 0xbc Code Gb stm32l4xx_hal_adc.o [5] + 0x802'23c7 0x2 Code Wk stm32l4xx_hal_adc.o [5] +HAL_ADC_ErrorCallback 0x802'23c5 0x2 Code Wk stm32l4xx_hal_adc.o [5] +HAL_ADC_Init 0x802'0c4d 0x1c6 Code Gb stm32l4xx_hal_adc.o [5] +HAL_ADC_MspInit 0x802'05c3 0xb8 Code Gb adc.o [3] +HAL_ADC_Start_DMA 0x802'0e13 0xbc Code Gb stm32l4xx_hal_adc.o [5] HAL_DAC_ConfigChannel 0x801'f507 0x166 Code Gb stm32l4xx_hal_dac.o [5] HAL_DAC_Init 0x801'f445 0x2c Code Gb stm32l4xx_hal_dac.o [5] -HAL_DAC_MspInit 0x802'0821 0x5a Code Gb dac.o [3] +HAL_DAC_MspInit 0x802'07e1 0x5a Code Gb dac.o [3] HAL_DAC_SetValue 0x801'f4dd 0x2a Code Gb stm32l4xx_hal_dac.o [5] HAL_DAC_Start 0x801'f471 0x6c Code Gb stm32l4xx_hal_dac.o [5] HAL_DMA_Abort 0x801'd8a9 0x52 Code Gb stm32l4xx_hal_dma.o [5] @@ -664,21 +664,21 @@ HAL_DMA_IRQHandler 0x801'd953 0xea Code Gb stm32l4xx_hal_dma.o [5] HAL_DMA_Init 0x801'd729 0xde Code Gb stm32l4xx_hal_dma.o [5] HAL_DMA_Start_IT 0x801'd825 0x84 Code Gb stm32l4xx_hal_dma.o [5] HAL_Delay 0x801'f41d 0x28 Code Wk stm32l4xx_hal.o [5] -HAL_FLASHEx_Erase 0x802'2419 0xe4 Code Gb stm32l4xx_hal_flash_ex.o [5] -HAL_FLASH_Lock 0x802'26a3 0xe Code Gb stm32l4xx_hal_flash.o [5] -HAL_FLASH_Program 0x802'25d1 0xb2 Code Gb stm32l4xx_hal_flash.o [5] -HAL_FLASH_Unlock 0x802'2683 0x20 Code Gb stm32l4xx_hal_flash.o [5] -HAL_GPIO_EXTI_Callback 0x802'1b0f 0x2 Code Wk stm32l4xx_hal_gpio.o [5] +HAL_FLASHEx_Erase 0x802'23d9 0xe4 Code Gb stm32l4xx_hal_flash_ex.o [5] +HAL_FLASH_Lock 0x802'2663 0xe Code Gb stm32l4xx_hal_flash.o [5] +HAL_FLASH_Program 0x802'2591 0xb2 Code Gb stm32l4xx_hal_flash.o [5] +HAL_FLASH_Unlock 0x802'2643 0x20 Code Gb stm32l4xx_hal_flash.o [5] +HAL_GPIO_EXTI_Callback 0x802'1acf 0x2 Code Wk stm32l4xx_hal_gpio.o [5] HAL_GPIO_EXTI_IRQHandler 0x801'ef3d 0x1c Code Gb stm32l4xx_hal_gpio.o [5] HAL_GPIO_Init 0x801'ed91 0x188 Code Gb stm32l4xx_hal_gpio.o [5] HAL_GPIO_ReadPin 0x801'ef19 0x12 Code Gb stm32l4xx_hal_gpio.o [5] HAL_GPIO_WritePin 0x801'ef2b 0x12 Code Gb stm32l4xx_hal_gpio.o [5] HAL_GetTick 0x801'd71d 0xc Code Wk stm32l4xx_hal.o [5] -HAL_IncTick 0x802'54cd 0x18 Code Wk stm32l4xx_hal.o [5] -HAL_Init 0x802'01b1 0x22 Code Gb stm32l4xx_hal.o [5] +HAL_IncTick 0x802'548d 0x18 Code Wk stm32l4xx_hal.o [5] +HAL_Init 0x802'0171 0x22 Code Gb stm32l4xx_hal.o [5] HAL_InitTick 0x801'e829 0x4e Code Gb main.o [3] -HAL_MspInit 0x802'2215 0x38 Code Gb stm32l4xx_hal_msp.o [3] +HAL_MspInit 0x802'21d5 0x38 Code Gb stm32l4xx_hal_msp.o [3] HAL_NVIC_EnableIRQ 0x801'f07d 0xa Code Gb stm32l4xx_hal_cortex.o [5] HAL_NVIC_SetPriority 0x801'f05b 0x22 Code Gb stm32l4xx_hal_cortex.o [5] HAL_NVIC_SetPriorityGrouping @@ -693,7 +693,7 @@ HAL_PWREx_EnableLowPowerRunMode 0x801'f143 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5] HAL_PWREx_GetVoltageRange 0x801'f0b1 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5] -HAL_PWR_EnterSLEEPMode 0x802'1a5d 0x42 Code Gb stm32l4xx_hal_pwr.o [5] +HAL_PWR_EnterSLEEPMode 0x802'1a1d 0x42 Code Gb stm32l4xx_hal_pwr.o [5] HAL_RCCEx_PeriphCLKConfig 0x801'e925 0x2ec Code Gb stm32l4xx_hal_rcc_ex.o [5] HAL_RCC_ClockConfig 0x801'e0bf 0x176 Code Gb stm32l4xx_hal_rcc.o [5] @@ -705,28 +705,28 @@ HAL_RCC_GetSysClockFreq HAL_RCC_OscConfig 0x801'da75 0x64a Code Gb stm32l4xx_hal_rcc.o [5] HAL_SYSTICK_Config 0x801'f087 0x8 Code Gb stm32l4xx_hal_cortex.o [5] HAL_TIMEx_Break2Callback - 0x802'2411 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] + 0x802'23d1 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] HAL_TIMEx_BreakCallback - 0x802'240f 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] + 0x802'23cf 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] HAL_TIMEx_CommutCallback - 0x802'2415 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] + 0x802'23d5 0x2 Code Wk stm32l4xx_hal_tim_ex.o [5] HAL_TIMEx_MasterConfigSynchronization - 0x802'22e5 0x74 Code Gb stm32l4xx_hal_tim_ex.o [5] -HAL_TIM_Base_Init 0x802'1519 0x7a Code Gb stm32l4xx_hal_tim.o [5] -HAL_TIM_Base_MspInit 0x802'0775 0x4c Code Gb tim.o [3] -HAL_TIM_Base_Start 0x802'1593 0x60 Code Gb stm32l4xx_hal_tim.o [5] -HAL_TIM_Base_Start_IT 0x802'15f3 0x6c Code Gb stm32l4xx_hal_tim.o [5] + 0x802'22a5 0x74 Code Gb stm32l4xx_hal_tim_ex.o [5] +HAL_TIM_Base_Init 0x802'14d9 0x7a Code Gb stm32l4xx_hal_tim.o [5] +HAL_TIM_Base_MspInit 0x802'0735 0x4c Code Gb tim.o [3] +HAL_TIM_Base_Start 0x802'1553 0x60 Code Gb stm32l4xx_hal_tim.o [5] +HAL_TIM_Base_Start_IT 0x802'15b3 0x6c Code Gb stm32l4xx_hal_tim.o [5] HAL_TIM_IC_CaptureCallback - 0x802'2409 0x2 Code Wk stm32l4xx_hal_tim.o [5] -HAL_TIM_IRQHandler 0x802'166d 0x194 Code Gb stm32l4xx_hal_tim.o [5] + 0x802'23c9 0x2 Code Wk stm32l4xx_hal_tim.o [5] +HAL_TIM_IRQHandler 0x802'162d 0x194 Code Gb stm32l4xx_hal_tim.o [5] HAL_TIM_OC_DelayElapsedCallback - 0x802'240b 0x2 Code Wk stm32l4xx_hal_tim.o [5] + 0x802'23cb 0x2 Code Wk stm32l4xx_hal_tim.o [5] HAL_TIM_PWM_PulseFinishedCallback - 0x802'240d 0x2 Code Wk stm32l4xx_hal_tim.o [5] + 0x802'23cd 0x2 Code Wk stm32l4xx_hal_tim.o [5] HAL_TIM_PeriodElapsedCallback 0x801'e6df 0x14 Code Gb main.o [3] HAL_TIM_TriggerCallback - 0x802'2413 0x2 Code Wk stm32l4xx_hal_tim.o [5] + 0x802'23d3 0x2 Code Wk stm32l4xx_hal_tim.o [5] HAL_UARTEx_RxEventCallback 0x801'da71 0x2 Code Wk stm32l4xx_hal_uart.o [5] HAL_UARTEx_WakeupCallback @@ -741,113 +741,113 @@ HAL_UART_RxCpltCallback HAL_UART_Transmit 0x801'c993 0xd0 Code Gb stm32l4xx_hal_uart.o [5] HAL_UART_TxCpltCallback 0x801'e3d1 0x2 Code Wk stm32l4xx_hal_uart.o [5] -HardFault_Handler 0x802'53ff 0x2 Code Gb stm32l4xx_it.o [3] -I2C1_ER_IRQHandler 0x802'59c9 Code Wk startup_stm32l431xx.o [4] -I2C1_EV_IRQHandler 0x802'59c5 Code Wk startup_stm32l431xx.o [4] -I2C2_ER_IRQHandler 0x802'59d1 Code Wk startup_stm32l431xx.o [4] -I2C2_EV_IRQHandler 0x802'59cd Code Wk startup_stm32l431xx.o [4] -I2C3_ER_IRQHandler 0x802'5a29 Code Wk startup_stm32l431xx.o [4] -I2C3_EV_IRQHandler 0x802'5a25 Code Wk startup_stm32l431xx.o [4] -InFlash_Erase_Pages 0x802'1881 0x36 Code Gb inflash.o [1] -InFlash_Write 0x802'18b7 0x2c Code Gb inflash.o [1] -InRingQueue 0x802'236f 0x38 Code Gb ring_queue.o [7] -InitRingQueue 0x802'2361 0xe Code Gb ring_queue.o [7] -LL_ADC_Disable 0x802'0c47 0x10 Code Lc stm32l4xx_hal_adc.o [5] +HardFault_Handler 0x802'53bf 0x2 Code Gb stm32l4xx_it.o [3] +I2C1_ER_IRQHandler 0x802'5989 Code Wk startup_stm32l431xx.o [4] +I2C1_EV_IRQHandler 0x802'5985 Code Wk startup_stm32l431xx.o [4] +I2C2_ER_IRQHandler 0x802'5991 Code Wk startup_stm32l431xx.o [4] +I2C2_EV_IRQHandler 0x802'598d Code Wk startup_stm32l431xx.o [4] +I2C3_ER_IRQHandler 0x802'59e9 Code Wk startup_stm32l431xx.o [4] +I2C3_EV_IRQHandler 0x802'59e5 Code Wk startup_stm32l431xx.o [4] +InFlash_Erase_Pages 0x802'1841 0x36 Code Gb inflash.o [1] +InFlash_Write 0x802'1877 0x2c Code Gb inflash.o [1] +InRingQueue 0x802'232f 0x38 Code Gb ring_queue.o [7] +InitRingQueue 0x802'2321 0xe Code Gb ring_queue.o [7] +LL_ADC_Disable 0x802'0c07 0x10 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_DisableDeepPowerDown - 0x802'0c07 0xc Code Lc stm32l4xx_hal_adc.o [5] -LL_ADC_Enable 0x802'0c37 0x10 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0bc7 0xc Code Lc stm32l4xx_hal_adc.o [5] +LL_ADC_Enable 0x802'0bf7 0x10 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_EnableInternalRegulator - 0x802'0c1d 0x10 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0bdd 0x10 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_GetCommonPathInternalCh - 0x802'0b25 0x8 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0ae5 0x8 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_GetOffsetChannel - 0x802'0b51 0xe Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0b11 0xe Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_INJ_IsConversionOngoing - 0x802'0c83 0xa Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0c43 0xa Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_IsCalibrationOnGoing - 0x802'0a73 0x6 Code Lc stm32l4xx_hal_adc_ex.o [5] + 0x802'0a33 0x6 Code Lc stm32l4xx_hal_adc_ex.o [5] LL_ADC_IsDeepPowerDownEnabled - 0x802'0c13 0xa Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0bd3 0xa Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_IsDisableOngoing - 0x802'0c5f 0xa Code Lc stm32l4xx_hal_adc.o [5] -LL_ADC_IsEnabled 0x802'0c57 0x8 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0c1f 0xa Code Lc stm32l4xx_hal_adc.o [5] +LL_ADC_IsEnabled 0x802'0c17 0x8 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_IsInternalRegulatorEnabled - 0x802'0c2d 0xa Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0bed 0xa Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_REG_IsConversionOngoing - 0x802'0c79 0xa Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0c39 0xa Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_REG_IsTriggerSourceSWStart - 0x802'0b71 0x10 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0b31 0x10 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_REG_SetSequencerRanks - 0x802'0b81 0x2e Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0b41 0x2e Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_REG_StartConversion - 0x802'0c69 0x10 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0c29 0x10 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_SetChannelSamplingTime - 0x802'0baf 0x32 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0b6f 0x32 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_SetChannelSingleDiff - 0x802'0be1 0x26 Code Lc stm32l4xx_hal_adc.o [5] -LL_ADC_SetCommonClock 0x802'0b0d 0xc Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0ba1 0x26 Code Lc stm32l4xx_hal_adc.o [5] +LL_ADC_SetCommonClock 0x802'0acd 0xc Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_SetCommonPathInternalCh - 0x802'0b19 0xc Code Lc stm32l4xx_hal_adc.o [5] -LL_ADC_SetOffset 0x802'0b2d 0x24 Code Lc stm32l4xx_hal_adc.o [5] -LL_ADC_SetOffsetState 0x802'0b5f 0x12 Code Lc stm32l4xx_hal_adc.o [5] + 0x802'0ad9 0xc Code Lc stm32l4xx_hal_adc.o [5] +LL_ADC_SetOffset 0x802'0aed 0x24 Code Lc stm32l4xx_hal_adc.o [5] +LL_ADC_SetOffsetState 0x802'0b1f 0x12 Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_StartCalibration - 0x802'0a5d 0x16 Code Lc stm32l4xx_hal_adc_ex.o [5] -LPTIM1_IRQHandler 0x802'5a0d Code Wk startup_stm32l431xx.o [4] -LPTIM2_IRQHandler 0x802'5a11 Code Wk startup_stm32l431xx.o [4] -LPUART1_IRQHandler 0x802'5a1d Code Wk startup_stm32l431xx.o [4] -MSIRangeTable 0x802'5728 0x30 Data Gb system_stm32l4xx.o [2] -MX_ADC1_Init 0x802'0559 0xaa Code Gb adc.o [3] -MX_DAC1_Init 0x802'07d5 0x4c Code Gb dac.o [3] -MX_DMA_Init 0x802'052d 0x2c Code Gb dma.o [3] -MX_GPIO_Init 0x802'0391 0x19c Code Gb gpio.o [3] -MX_TIM6_Init 0x802'06dd 0x4c Code Gb tim.o [3] -MX_TIM7_Init 0x802'0729 0x4c Code Gb tim.o [3] + 0x802'0a1d 0x16 Code Lc stm32l4xx_hal_adc_ex.o [5] +LPTIM1_IRQHandler 0x802'59cd Code Wk startup_stm32l431xx.o [4] +LPTIM2_IRQHandler 0x802'59d1 Code Wk startup_stm32l431xx.o [4] +LPUART1_IRQHandler 0x802'59dd Code Wk startup_stm32l431xx.o [4] +MSIRangeTable 0x802'56e8 0x30 Data Gb system_stm32l4xx.o [2] +MX_ADC1_Init 0x802'0519 0xaa Code Gb adc.o [3] +MX_DAC1_Init 0x802'0795 0x4c Code Gb dac.o [3] +MX_DMA_Init 0x802'04ed 0x2c Code Gb dma.o [3] +MX_GPIO_Init 0x802'0351 0x19c Code Gb gpio.o [3] +MX_TIM6_Init 0x802'069d 0x4c Code Gb tim.o [3] +MX_TIM7_Init 0x802'06e9 0x4c Code Gb tim.o [3] MX_USART1_UART_Init 0x801'd561 0x44 Code Gb usart.o [3] MX_USART3_UART_Init 0x801'd5a5 0x44 Code Gb usart.o [3] -MemManage_Handler 0x802'5401 0x2 Code Gb stm32l4xx_it.o [3] -NMI_Handler 0x802'53fd 0x2 Code Gb stm32l4xx_it.o [3] +MemManage_Handler 0x802'53c1 0x2 Code Gb stm32l4xx_it.o [3] +NMI_Handler 0x802'53bd 0x2 Code Gb stm32l4xx_it.o [3] NVIC_EncodePriority 0x801'efe9 0x3c Code Lc stm32l4xx_hal_cortex.o [5] -OutRingQueue 0x802'23a7 0x28 Code Gb ring_queue.o [7] -PVD_PVM_IRQHandler 0x802'595d Code Wk startup_stm32l431xx.o [4] -PendSV_Handler 0x802'540b 0x2 Code Gb stm32l4xx_it.o [3] +OutRingQueue 0x802'2367 0x28 Code Gb ring_queue.o [7] +PVD_PVM_IRQHandler 0x802'591d Code Wk startup_stm32l431xx.o [4] +PendSV_Handler 0x802'53cb 0x2 Code Gb stm32l4xx_it.o [3] Pulse_Count 0x2000'f788 0x2 Data Gb main.o [3] -QUADSPI_IRQHandler 0x802'5a21 Code Wk startup_stm32l431xx.o [4] +QUADSPI_IRQHandler 0x802'59e1 Code Wk startup_stm32l431xx.o [4] RCCEx_PLLSAI1_Config 0x801'ec25 0x154 Code Lc stm32l4xx_hal_rcc_ex.o [5] -RCC_IRQHandler 0x802'596d Code Wk startup_stm32l431xx.o [4] +RCC_IRQHandler 0x802'592d Code Wk startup_stm32l431xx.o [4] RCC_SetFlashLatencyFromMSIRange 0x801'e31d 0x7c Code Lc stm32l4xx_hal_rcc.o [5] -RNG_IRQHandler 0x802'5a39 Code Wk startup_stm32l431xx.o [4] -RTC_Alarm_IRQHandler 0x802'59e5 Code Wk startup_stm32l431xx.o [4] -RTC_WKUP_IRQHandler 0x802'5965 Code Wk startup_stm32l431xx.o [4] -Region$$Table$$Base 0x802'57f4 -- Gb - Linker created - -Region$$Table$$Limit 0x802'5814 -- Gb - Linker created - -Reset_Handler 0x802'5931 Code Wk startup_stm32l431xx.o [4] +RNG_IRQHandler 0x802'59f9 Code Wk startup_stm32l431xx.o [4] +RTC_Alarm_IRQHandler 0x802'59a5 Code Wk startup_stm32l431xx.o [4] +RTC_WKUP_IRQHandler 0x802'5925 Code Wk startup_stm32l431xx.o [4] +Region$$Table$$Base 0x802'57b4 -- Gb - Linker created - +Region$$Table$$Limit 0x802'57d4 -- Gb - Linker created - +Reset_Handler 0x802'58f1 Code Wk startup_stm32l431xx.o [4] S 0x2000'f714 0x18 Data Gb main.o [3] -SAI1_IRQHandler 0x802'5a2d Code Wk startup_stm32l431xx.o [4] -SDMMC1_IRQHandler 0x802'59e9 Code Wk startup_stm32l431xx.o [4] -SPI1_IRQHandler 0x802'59d5 Code Wk startup_stm32l431xx.o [4] -SPI2_IRQHandler 0x802'59d9 Code Wk startup_stm32l431xx.o [4] -SPI3_IRQHandler 0x802'59ed Code Wk startup_stm32l431xx.o [4] -SVC_Handler 0x802'5407 0x2 Code Gb stm32l4xx_it.o [3] -SWPMI1_IRQHandler 0x802'5a31 Code Wk startup_stm32l431xx.o [4] +SAI1_IRQHandler 0x802'59ed Code Wk startup_stm32l431xx.o [4] +SDMMC1_IRQHandler 0x802'59a9 Code Wk startup_stm32l431xx.o [4] +SPI1_IRQHandler 0x802'5995 Code Wk startup_stm32l431xx.o [4] +SPI2_IRQHandler 0x802'5999 Code Wk startup_stm32l431xx.o [4] +SPI3_IRQHandler 0x802'59ad Code Wk startup_stm32l431xx.o [4] +SVC_Handler 0x802'53c7 0x2 Code Gb stm32l4xx_it.o [3] +SWPMI1_IRQHandler 0x802'59f1 Code Wk startup_stm32l431xx.o [4] SysTick_Config 0x801'f025 0x2e Code Lc stm32l4xx_hal_cortex.o [5] -SysTick_Handler 0x802'540d 0x8 Code Gb stm32l4xx_it.o [3] +SysTick_Handler 0x802'53cd 0x8 Code Gb stm32l4xx_it.o [3] SystemClock_Config 0x801'e7b5 0x70 Code Gb main.o [3] SystemCoreClock 0x2000'00a0 0x4 Data Gb system_stm32l4xx.o [2] -SystemInit 0x802'5941 0xc Code Gb system_stm32l4xx.o [2] -TAMP_STAMP_IRQHandler 0x802'5961 Code Wk startup_stm32l431xx.o [4] +SystemInit 0x802'5901 0xc Code Gb system_stm32l4xx.o [2] +TAMP_STAMP_IRQHandler 0x802'5921 Code Wk startup_stm32l431xx.o [4] TIM1_BRK_TIM15_IRQHandler - 0x802'59b1 Code Wk startup_stm32l431xx.o [4] -TIM1_CC_IRQHandler 0x802'59bd Code Wk startup_stm32l431xx.o [4] + 0x802'5971 Code Wk startup_stm32l431xx.o [4] +TIM1_CC_IRQHandler 0x802'597d Code Wk startup_stm32l431xx.o [4] TIM1_TRG_COM_IRQHandler - 0x802'59b9 Code Wk startup_stm32l431xx.o [4] + 0x802'5979 Code Wk startup_stm32l431xx.o [4] TIM1_UP_TIM16_IRQHandler - 0x802'59b5 Code Wk startup_stm32l431xx.o [4] -TIM2_IRQHandler 0x802'59c1 Code Wk startup_stm32l431xx.o [4] -TIM6_DAC_IRQHandler 0x802'59f1 Code Wk startup_stm32l431xx.o [4] -TIM7_IRQHandler 0x802'5497 0xa Code Gb stm32l4xx_it.o [3] -TIM_Base_SetConfig 0x802'1801 0x72 Code Gb stm32l4xx_hal_tim.o [5] -TSC_IRQHandler 0x802'5a35 Code Wk startup_stm32l431xx.o [4] + 0x802'5975 Code Wk startup_stm32l431xx.o [4] +TIM2_IRQHandler 0x802'5981 Code Wk startup_stm32l431xx.o [4] +TIM6_DAC_IRQHandler 0x802'59b1 Code Wk startup_stm32l431xx.o [4] +TIM7_IRQHandler 0x802'5457 0xa Code Gb stm32l4xx_it.o [3] +TIM_Base_SetConfig 0x802'17c1 0x72 Code Gb stm32l4xx_hal_tim.o [5] +TSC_IRQHandler 0x802'59f5 Code Wk startup_stm32l431xx.o [4] UART_AdvFeatureConfig 0x801'd061 0xda Code Gb stm32l4xx_hal_uart.o [5] UART_CheckIdleState 0x801'd13b 0x6e Code Gb stm32l4xx_hal_uart.o [5] UART_DMAAbortOnError 0x801'd3c5 0x16 Code Lc stm32l4xx_hal_uart.o [5] @@ -859,13 +859,13 @@ UART_SetConfig 0x801'cdad 0x28e Code Gb stm32l4xx_hal_uart.o [5] UART_Start_Receive_IT 0x801'd287 0xe8 Code Gb stm32l4xx_hal_uart.o [5] UART_WaitOnFlagUntilTimeout 0x801'd1a9 0xde Code Gb stm32l4xx_hal_uart.o [5] -USART1_IRQHandler 0x802'541f 0x3c Code Gb stm32l4xx_it.o [3] -USART2_IRQHandler 0x802'59dd Code Wk startup_stm32l431xx.o [4] -USART3_IRQHandler 0x802'545b 0x3c Code Gb stm32l4xx_it.o [3] -UsageFault_Handler 0x802'5405 0x2 Code Gb stm32l4xx_it.o [3] +USART1_IRQHandler 0x802'53df 0x3c Code Gb stm32l4xx_it.o [3] +USART2_IRQHandler 0x802'599d Code Wk startup_stm32l431xx.o [4] +USART3_IRQHandler 0x802'541b 0x3c Code Gb stm32l4xx_it.o [3] +UsageFault_Handler 0x802'53c5 0x2 Code Gb stm32l4xx_it.o [3] V50hz_mA 0x2000'f75c 0x4 Data Gb main.o [3] Vdc 0x2000'f758 0x4 Data Gb main.o [3] -WWDG_IRQHandler 0x802'5959 Code Wk startup_stm32l431xx.o [4] +WWDG_IRQHandler 0x802'5919 Code Wk startup_stm32l431xx.o [4] _LC 0x801'9ecd 0x6 Code Lc xprintffull_nomb.o [8] _LitobFullNoMb 0x801'abb5 0x114 Code Lc xprintffull_nomb.o [8] _Locale_lconv 0x2000'00d4 0x38 Data Lc xlocale_c.o [8] @@ -894,102 +894,102 @@ __aeabi_ldiv0 0x801'baf1 Code Gb I64DivZer.o [11] __aeabi_memcpy 0x801'af05 Code Gb ABImemcpy.o [11] __aeabi_memcpy4 0x801'af25 Code Gb ABImemcpy.o [11] __aeabi_memcpy8 0x801'af25 Code Gb ABImemcpy.o [11] -__aeabi_memset 0x802'1aa9 Code Gb ABImemset.o [11] +__aeabi_memset 0x802'1a69 Code Gb ABImemset.o [11] __aeabi_ui2d 0x801'b6e9 Code Gb U32ToDbl.o [10] __aeabi_uldivmod 0x801'b8b9 Code Gb I64DivMod.o [11] -__cmain 0x802'5815 Code Gb cmain.o [11] +__cmain 0x802'57d5 Code Gb cmain.o [11] __exit 0x801'baf5 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'1aa9 Code Gb ABImemset.o [11] -__iar_Memset_word 0x802'1ab1 Code Gb ABImemset.o [11] +__iar_Memset 0x802'1a69 Code Gb ABImemset.o [11] +__iar_Memset_word 0x802'1a71 Code Gb ABImemset.o [11] __iar_Sin32 0x801'f24d 0x18c Code Lc cos_sin32.o [10] __iar_Strchr 0x801'ae15 Code Gb strchr.o [11] __iar_cos32 0x801'f419 0x4 Code Gb cos_sin32.o [10] __iar_cos_medium32 0x801'f419 0x4 Code Gb cos_sin32.o [10] __iar_cos_mediumf 0x801'f419 0x4 Code Gb cos_sin32.o [10] -__iar_data_init3 0x802'57a9 0x28 Code Gb data_init.o [11] +__iar_data_init3 0x802'5769 0x28 Code Gb data_init.o [11] __iar_frexp 0x801'afb9 Code Gb frexp.o [10] __iar_frexpl 0x801'afb9 Code Gb frexp.o [10] -__iar_init_vfp 0x802'57d1 Code Gb fpinit_M.o [10] +__iar_init_vfp 0x802'5791 Code Gb fpinit_M.o [10] __iar_ldexp64 0x801'b085 Code Gb ldexp.o [10] __iar_lz77_init_single3 0x801'ad97 0x7e Code Gb lz77_init_single.o [11] -__iar_program_start 0x802'5849 Code Gb cstartup_M.o [11] +__iar_program_start 0x802'5809 Code Gb cstartup_M.o [11] __iar_scalbln64 0x801'b085 Code Gb ldexp.o [10] __iar_scalbn64 0x801'b085 Code Gb ldexp.o [10] __iar_softfp___iar_frexp64 0x801'afad Code Gb frexp.o [10] __iar_softfp_frexp 0x801'afad Code Gb frexp.o [10] __iar_softfp_frexpl 0x801'afad Code Gb frexp.o [10] -__iar_zero_init3 0x802'56f1 0x38 Code Gb zero_init3.o [11] -__low_level_init 0x802'5833 0x4 Code Gb low_level_init.o [8] +__iar_zero_init3 0x802'56b1 0x38 Code Gb zero_init3.o [11] +__low_level_init 0x802'57f3 0x4 Code Gb low_level_init.o [8] __vector_table 0x800'0000 Data Gb startup_stm32l431xx.o [4] -_call_main 0x802'5821 Code Gb cmain.o [11] -_exit 0x802'583d Code Gb cexit.o [11] +_call_main 0x802'57e1 Code Gb cmain.o [11] +_exit 0x802'57fd Code Gb cexit.o [11] abort 0x801'bae9 0x6 Code Gb abort.o [8] adc_bat_data 0x2000'6110 0x2000 Data Gb main.o [3] adc_value 0x2000'0110 0x4000 Data Gb main.o [3] armBitRevIndexTable1024 0x801'bb08 0xe10 Data Gb arm_common_tables.o [9] -armBitRevIndexTable128 0x802'505c 0x1a0 Data Gb arm_common_tables.o [9] -armBitRevIndexTable16 0x802'5780 0x28 Data Gb arm_common_tables.o [9] +armBitRevIndexTable128 0x802'501c 0x1a0 Data Gb arm_common_tables.o [9] +armBitRevIndexTable16 0x802'5740 0x28 Data Gb arm_common_tables.o [9] armBitRevIndexTable2048 0x801'610c 0x1dc0 Data Gb arm_common_tables.o [9] -armBitRevIndexTable256 0x802'48ec 0x370 Data Gb arm_common_tables.o [9] -armBitRevIndexTable32 0x802'5654 0x60 Data Gb arm_common_tables.o [9] +armBitRevIndexTable256 0x802'48ac 0x370 Data Gb arm_common_tables.o [9] +armBitRevIndexTable32 0x802'5614 0x60 Data Gb arm_common_tables.o [9] armBitRevIndexTable4096 0x801'418c 0x1f80 Data Gb arm_common_tables.o [9] -armBitRevIndexTable512 0x802'456c 0x380 Data Gb arm_common_tables.o [9] -armBitRevIndexTable64 0x802'55e4 0x70 Data Gb arm_common_tables.o [9] -arm_bitreversal_32 0x802'2d27 0x44 Code Gb arm_bitreversal2.o [9] -arm_cfft_f32 0x802'2091 0x184 Code Gb arm_cfft_f32.o [9] -arm_cfft_init_f32 0x802'224d 0x98 Code Gb arm_cfft_init_f32.o [9] -arm_cfft_radix8by2_f32 0x802'1b11 0x16a Code Gb arm_cfft_f32.o [9] -arm_cfft_radix8by4_f32 0x802'1c7d 0x412 Code Gb arm_cfft_f32.o [9] +armBitRevIndexTable512 0x802'452c 0x380 Data Gb arm_common_tables.o [9] +armBitRevIndexTable64 0x802'55a4 0x70 Data Gb arm_common_tables.o [9] +arm_bitreversal_32 0x802'2ce7 0x44 Code Gb arm_bitreversal2.o [9] +arm_cfft_f32 0x802'2051 0x184 Code Gb arm_cfft_f32.o [9] +arm_cfft_init_f32 0x802'220d 0x98 Code Gb arm_cfft_init_f32.o [9] +arm_cfft_radix8by2_f32 0x802'1ad1 0x16a Code Gb arm_cfft_f32.o [9] +arm_cfft_radix8by4_f32 0x802'1c3d 0x412 Code Gb arm_cfft_f32.o [9] arm_cfft_sR_f32_len1024 - 0x802'5900 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len128 0x802'58d0 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len16 0x802'58a0 0x10 Data Gb arm_const_structs.o [9] + 0x802'58c0 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len128 0x802'5890 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len16 0x802'5860 0x10 Data Gb arm_const_structs.o [9] arm_cfft_sR_f32_len2048 - 0x802'5910 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len256 0x802'58e0 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len32 0x802'58b0 0x10 Data Gb arm_const_structs.o [9] + 0x802'58d0 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len256 0x802'58a0 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len32 0x802'5870 0x10 Data Gb arm_const_structs.o [9] arm_cfft_sR_f32_len4096 - 0x802'5920 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len512 0x802'58f0 0x10 Data Gb arm_const_structs.o [9] -arm_cfft_sR_f32_len64 0x802'58c0 0x10 Data Gb arm_const_structs.o [9] + 0x802'58e0 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len512 0x802'58b0 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len64 0x802'5880 0x10 Data Gb arm_const_structs.o [9] arm_cmplx_mag_f32 0x801'f7f9 0x158 Code Gb arm_cmplx_mag_f32.o [9] arm_hanning_f32 0x801'e44d 0x5a Code Gb main.o [3] arm_max_f32 0x801'fa25 0xb6 Code Gb arm_max_f32.o [9] arm_radix8_butterfly_f32 - 0x802'2785 0x5a2 Code Gb arm_cfft_radix8_f32.o [9] + 0x802'2745 0x5a2 Code Gb arm_cfft_radix8_f32.o [9] arm_rfft_1024_fast_init_f32 - 0x802'0285 0x26 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'0245 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_128_fast_init_f32 - 0x802'0219 0x22 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'01d9 0x22 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_2048_fast_init_f32 - 0x802'02ab 0x26 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'026b 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_256_fast_init_f32 - 0x802'023b 0x24 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'01fb 0x24 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_32_fast_init_f32 - 0x802'01d5 0x22 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'0195 0x22 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_4096_fast_init_f32 - 0x802'02d1 0x26 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'0291 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_512_fast_init_f32 - 0x802'025f 0x26 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'021f 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_64_fast_init_f32 - 0x802'01f7 0x22 Code Lc arm_rfft_fast_init_f32.o [9] + 0x802'01b7 0x22 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_fast_f32 0x801'f7bd 0x3a Code Gb arm_rfft_fast_f32.o [9] -arm_rfft_fast_init_f32 0x802'02f7 0x5a Code Gb arm_rfft_fast_init_f32.o [9] +arm_rfft_fast_init_f32 0x802'02b7 0x5a Code Gb arm_rfft_fast_init_f32.o [9] arm_rms_f32 0x801'fadd 0xc0 Code Gb arm_rms_f32.o [9] arm_scale_f32 0x801'f951 0xd2 Code Gb arm_scale_f32.o [9] bat_v 0x2000'f754 0x4 Data Gb main.o [3] bat_v_get 0x801'e3d5 0x78 Code Gb main.o [3] cosf 0x801'f419 0x4 Code Gb cos_sin32.o [10] e22_config_data 0x2000'0000 0xc Data Gb e22.o [6] -e22_init 0x802'1a07 0x44 Code Gb e22.o [6] -exit 0x802'5837 0x4 Code Gb exit.o [8] +e22_init 0x802'19c7 0x44 Code Gb e22.o [6] +exit 0x802'57f7 0x4 Code Gb exit.o [8] fft_mag 0x2000'e110 0x1000 Data Gb main.o [3] fft_outdata 0x2000'a110 0x2000 Data Gb main.o [3] fft_rawdata 0x2000'8110 0x2000 Data Gb main.o [3] @@ -1007,18 +1007,18 @@ htim6 0x2000'f600 0x4c Data Gb tim.o [3] htim7 0x2000'f64c 0x4c Data Gb tim.o [3] huart1 0x2000'f3cc 0x84 Data Gb usart.o [3] huart3 0x2000'f450 0x84 Data Gb usart.o [3] -init_lora_uart 0x802'0a27 0x14 Code Gb uart_dev.o [1] -init_term_uart 0x802'0a15 0x12 Code Gb uart_dev.o [1] +init_lora_uart 0x802'09e7 0x14 Code Gb uart_dev.o [1] +init_term_uart 0x802'09d5 0x12 Code Gb uart_dev.o [1] ldexp 0x801'b085 Code Gb ldexp.o [10] ldexpl 0x801'b085 Code Gb ldexp.o [10] localeconv 0x801'b8b1 0x4 Code Gb xlocale_c.o [8] lora_in_buff 0x2000'f110 0x12c Data Lc uart_dev.o [1] lora_out_buff 0x2000'f538 0x64 Data Gb uart_dev.o [1] -lora_set_mode 0x802'19d9 0x2e Code Gb e22.o [6] -lora_set_mode_config 0x802'1995 0x22 Code Gb e22.o [6] -lora_set_mode_normal 0x802'1951 0x22 Code Gb e22.o [6] -lora_set_mode_sleep 0x802'19b7 0x22 Code Gb e22.o [6] -lora_set_mode_wor 0x802'1973 0x22 Code Gb e22.o [6] +lora_set_mode 0x802'1999 0x2e Code Gb e22.o [6] +lora_set_mode_config 0x802'1955 0x22 Code Gb e22.o [6] +lora_set_mode_normal 0x802'1911 0x22 Code Gb e22.o [6] +lora_set_mode_sleep 0x802'1977 0x22 Code Gb e22.o [6] +lora_set_mode_wor 0x802'1933 0x22 Code Gb e22.o [6] main 0x801'e6f9 0xa6 Code Gb main.o [3] main_freq 0x2000'f764 0x4 Data Gb main.o [3] max_rms_mA 0x2000'f770 0x4 Data Gb main.o [3] @@ -1028,8 +1028,8 @@ memset 0x801'e911 0x14 Code Gb memset.o [11] merge_rfft_f32 0x801'f719 0xa4 Code Gb arm_rfft_fast_f32.o [9] pFlash 0x2000'0080 0x20 Data Gb stm32l4xx_hal_flash.o [5] read_and_process_uart_data - 0x802'011d 0x4a Code Gb frt_protocol.o [1] -read_config_info 0x802'1903 0x3e Code Gb inflash.o [1] + 0x802'00dd 0x4a Code Gb frt_protocol.o [1] +read_config_info 0x802'18c3 0x3e Code Gb inflash.o [1] read_uart_flag 0x2000'f774 0x4 Data Gb main.o [3] result_data 0x2000'4110 0x2000 Data Gb main.o [3] rms_mA 0x2000'f76c 0x4 Data Gb main.o [3] @@ -1037,7 +1037,7 @@ rms_mV 0x2000'f768 0x4 Data Gb main.o [3] rs485_buff 0x2000'f6e0 0x34 Data Lc frt_protocol.o [1] rx_uart1_buf 0x2000'f78a 0x1 Data Gb usart.o [3] rx_uart3_buf 0x2000'f78b 0x1 Data Gb usart.o [3] -save_config_info 0x802'18e3 0x20 Code Gb inflash.o [1] +save_config_info 0x802'18a3 0x20 Code Gb inflash.o [1] scalbln 0x801'b085 Code Gb ldexp.o [10] scalblnl 0x801'b085 Code Gb ldexp.o [10] scalbn 0x801'b085 Code Gb ldexp.o [10] @@ -1048,41 +1048,41 @@ send_uart_pack 0x801'fd6f 0x74 Code Lc frt_protocol.o [1] stage_rfft_f32 0x801'f66d 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'25b5 0x1c Code Gb strrchr.o [8] +strrchr 0x802'2575 0x1c Code Gb strrchr.o [8] term_in_buff 0x2000'f304 0xc8 Data Lc uart_dev.o [1] term_out_buff 0x2000'f59c 0x64 Data Lc uart_dev.o [1] -term_printf 0x802'09e7 0x2e Code Gb uart_dev.o [1] +term_printf 0x802'09a7 0x2e Code Gb uart_dev.o [1] twiddleCoef_1024 0x801'018c 0x2000 Data Gb arm_common_tables.o [9] -twiddleCoef_128 0x802'3d6c 0x400 Data Gb arm_common_tables.o [9] -twiddleCoef_16 0x802'54e4 0x80 Data Gb arm_common_tables.o [9] +twiddleCoef_128 0x802'3d2c 0x400 Data Gb arm_common_tables.o [9] +twiddleCoef_16 0x802'54a4 0x80 Data Gb arm_common_tables.o [9] twiddleCoef_2048 0x800'818c 0x4000 Data Gb arm_common_tables.o [9] -twiddleCoef_256 0x802'2d6c 0x800 Data Gb arm_common_tables.o [9] -twiddleCoef_32 0x802'51fc 0x100 Data Gb arm_common_tables.o [9] +twiddleCoef_256 0x802'2d2c 0x800 Data Gb arm_common_tables.o [9] +twiddleCoef_32 0x802'51bc 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'4c5c 0x200 Data Gb arm_common_tables.o [9] +twiddleCoef_64 0x802'4c1c 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'4e5c 0x200 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_128 0x802'4e1c 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'416c 0x400 Data Gb arm_common_tables.o [9] -twiddleCoef_rfft_32 0x802'5564 0x80 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_256 0x802'412c 0x400 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_32 0x802'5524 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'356c 0x800 Data Gb arm_common_tables.o [9] -twiddleCoef_rfft_64 0x802'52fc 0x100 Data Gb arm_common_tables.o [9] -uart_dev_char_present 0x802'09a3 0x22 Code Gb uart_dev.o [1] -uart_dev_in_char 0x802'09c5 0x22 Code Gb uart_dev.o [1] -uart_dev_init 0x802'088d 0x5c Code Gb uart_dev.o [1] -uart_dev_write 0x802'0987 0x1c Code Gb uart_dev.o [1] +twiddleCoef_rfft_512 0x802'352c 0x800 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_64 0x802'52bc 0x100 Data Gb arm_common_tables.o [9] +uart_dev_char_present 0x802'0963 0x22 Code Gb uart_dev.o [1] +uart_dev_in_char 0x802'0985 0x22 Code Gb uart_dev.o [1] +uart_dev_init 0x802'084d 0x5c Code Gb uart_dev.o [1] +uart_dev_write 0x802'0947 0x1c Code Gb uart_dev.o [1] uart_devices 0x2000'00a4 0x30 Data Gb uart_dev.o [1] -uart_init 0x802'08e9 0x20 Code Lc uart_dev.o [1] -uart_putchar 0x802'0909 0x4a Code Lc uart_dev.o [1] +uart_init 0x802'08a9 0x20 Code Lc uart_dev.o [1] +uart_putchar 0x802'08c9 0x4a Code Lc uart_dev.o [1] uart_read_frt_climate_pack - 0x802'0011 0xa2 Code Lc frt_protocol.o [1] -uart_sendstr 0x802'0953 0x34 Code Gb uart_dev.o [1] + 0x802'000d 0x66 Code Lc frt_protocol.o [1] +uart_sendstr 0x802'0913 0x34 Code Gb uart_dev.o [1] uwTick 0x2000'f778 0x4 Data Gb stm32l4xx_hal.o [5] uwTickFreq 0x2000'010c 0x1 Data Gb stm32l4xx_hal.o [5] uwTickPrio 0x2000'007c 0x4 Data Gb stm32l4xx_hal.o [5] -vsprintf 0x802'23d1 0x34 Code Gb vsprintf.o [8] +vsprintf 0x802'2391 0x34 Code Gb vsprintf.o [8] window_data 0x2000'c110 0x2000 Data Gb main.o [3] @@ -1099,7 +1099,7 @@ window_data 0x2000'c110 0x2000 Data Gb main.o [3] [11] = rt7M_tl.a [12] = shb_l.a - 34'013 bytes of readonly code memory + 33'949 bytes of readonly code memory 120'310 bytes of readonly data memory 64'393 bytes of readwrite data memory diff --git a/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o b/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o index 37f85dd..1b471bd 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o and b/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/frt_protocol.o differ 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 ecb82d5..a859341 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/settings/Project.wsdt b/EWARM/settings/Project.wsdt index ad8a62b..2fae718 100644 --- a/EWARM/settings/Project.wsdt +++ b/EWARM/settings/Project.wsdt @@ -93,7 +93,7 @@ 1 1 1 - 3A020000E200178200000100000029920000030000001B8F0000010000001386000001000000A180000001000000298100000200000040E1000001000000048400000100000001DC000001000000D08400000100000019800000010000005786000004000000B28000000100000023870000010000000880000001000000598400000100000010860000010000009E8000000100000015810000020000002CE1000004000000AF8000000100000048810000010000003BB000000100000026810000020000005684000003000000048100000100000019B0000001000000599200000100000001840000010000008684000013000000AC800000010000000D8600000100000012810000020000009B80000001000000239200000100000007E100000200000001810000E800000029E10000080000003184000001000000458100000100000016B00000010000006BB0000001000000F080000001000000AF0600000E00000023810000010000008A800000020000000D970000020000001E97000001000000499C000001000000259E000002000000A9800000010000008780000001000000009000000100000004E10000040000000C840000010000009BB00000010000000A8600000100000079B0000001000000539200000100000002B0000001000000BA80000001000000209200000100000020810000010000000F810000010000005F860000010000000C8100006A0000001D8100001500000004DE00000100000007860000010000003F810000010000000D8000000500000023E100000100000001E1000005000000EA80000003000000A68000000100000026DE0000040000000684000001000000198200000100000004860000010000002FB000000100000003DC0000010000001EB0000001000000A6B00000010000002397000002000000289200000100000056860000010000001A8F00000100000017810000010000009A86000001000000038400000100000028810000050000003DB00000010000005FB0000001000000A08000000100000000DC0000020000000186000001000000B180000001000000148100001B00000025920000010000002BE10000480000009D80000001000000AE8000000100000011840000010000000084000004000000808C00000200000077840000010000006DB000000100000047810000010000004297000001000000558400000500000045D500000100000022810000010000008584000004000000AB800000010000000E8400001900000028E10000C3000000BFB00000010000000C860000010000004481000001000000BC80000002000000898000000100000000810000600000000E8100009C01000003E100009B0000005E86000001000000ECFFFFFF01000000098600000100000028DE00000200000023B00000010000001A8600000100000001B0000001000000EC80000001000000029E00000200000056B00000010000002F820000020000004D970000010000001F8100000100000006860000010000008E8600000100000000E100000C00000053B000000100000020B0000001000000A8B0000001000000E980000001000000A5800000020000000B8100000600000028970000010000005A840000010000001882000009000000A28000000100000069860000010000002EB000000100000058860000010000007C84000001000000D18400000200000083B000000100000041E1000002000000F78000000100000014860000010000000584000006000000509C00000100000016810000020000002781000006000000198F000001000000558600000100000000860000010000003CB00000010000000284000001000000B0800000010000002A8F000001000000218700000100000011860000010000000581000003000000468100000100000001E8000001000000108400000700000024920000010000002AE100000200000017B00000010000000281000001000000E3B00000010000009C80000002000000F1800000010000009980000001000000608600000100000088800000010000000B86000001000000218100001C00000003B000000100000025B000000200000047B0000001000000549200000100000051840000010000004381000001000000AA80000001000000BB800000030000000D810000050000005D86000001000000C980000001000000A7800000010000001E8100002D00000024E100000300000077B000000100000008860000010000000A8400000B000000C386000001000000A186000001000000AAB000000100000055B000000100000002E100000200000035E10000040000001986000004000000129E000004000000EB80000001000000B880000001000000449C00000100000007840000010000001686000002000000058600000100000004DC000001000000A7B0000001000000E880000001000000C08600000100000024DE000001000000A4800000010000000B80000001000000 + 3D020000E200178200000100000029920000030000001B8F0000010000001386000001000000A180000001000000298100000200000040E1000001000000048400000100000001DC000001000000D08400000100000019800000010000005786000004000000B28000000100000023870000010000000880000001000000598400000100000010860000010000009E8000000100000015810000020000002CE1000004000000AF8000000100000048810000010000003BB000000100000026810000020000005684000003000000048100000100000019B0000001000000599200000100000001840000010000008684000013000000AC800000010000000D8600000100000012810000020000009B80000001000000239200000100000007E100000200000001810000E800000029E10000080000003184000001000000458100000100000016B00000010000006BB0000001000000F080000001000000AF0600000E00000023810000010000008A800000020000000D970000020000001E97000001000000499C000001000000259E000002000000A9800000010000008780000001000000009000000100000004E10000040000000C840000010000009BB00000010000000A8600000100000079B0000001000000539200000100000002B0000001000000BA80000001000000209200000100000020810000010000000F810000010000005F860000010000000C8100006A0000001D8100001500000004DE00000100000007860000010000003F810000010000000D8000000500000023E100000100000001E1000005000000EA80000003000000A68000000100000026DE0000040000000684000001000000198200000100000004860000010000002FB000000100000003DC0000010000001EB0000001000000A6B00000010000002397000002000000289200000100000056860000010000001A8F00000100000017810000010000009A86000001000000038400000100000028810000050000003DB00000010000005FB0000001000000A08000000100000000DC0000020000000186000001000000B180000001000000148100001D00000025920000010000002BE10000480000009D80000001000000AE8000000100000011840000010000000084000004000000808C00000200000077840000010000006DB000000100000047810000010000004297000001000000558400000500000045D500000100000022810000010000008584000004000000AB800000010000000E8400001900000028E10000C3000000BFB00000010000000C860000010000004481000001000000BC80000002000000898000000100000000810000600000000E8100009D01000003E100009B0000005E86000001000000ECFFFFFF01000000098600000100000028DE00000200000023B00000010000001A8600000100000001B0000001000000EC80000001000000029E00000200000056B00000010000002F820000020000004D970000010000001F8100000100000006860000010000008E8600000100000000E100000C00000053B000000100000020B0000001000000A8B0000001000000E980000001000000A5800000020000000B8100000600000028970000010000005A840000010000001882000009000000A28000000100000069860000010000002EB000000100000058860000010000007C84000001000000D18400000200000083B000000100000041E1000002000000F78000000100000014860000010000000584000006000000509C00000100000016810000020000002781000006000000198F000001000000558600000100000000860000010000003CB00000010000000284000001000000B0800000010000002A8F000001000000218700000100000011860000010000000581000003000000468100000100000001E8000001000000108400000700000024920000010000002AE100000200000017B00000010000000281000001000000E3B00000010000009C80000002000000F1800000010000009980000001000000608600000100000088800000010000000B86000001000000218100001C00000003B000000100000025B000000200000047B0000001000000549200000100000051840000010000004381000001000000AA80000001000000BB800000030000000D810000050000005D86000001000000C980000001000000A7800000010000001E8100002D00000024E100000300000077B000000100000008860000010000000A8400000B000000C386000001000000A186000001000000AAB000000100000055B000000100000002E100000200000035E10000040000001986000004000000129E000004000000EB80000001000000B880000001000000449C00000100000007840000010000001686000002000000058600000100000004DC000001000000A7B0000001000000E880000001000000C08600000100000024DE000001000000A4800000010000000B80000001000000 2C000D8400000F84000008840000FFFFFFFF54840000328100001C81000009840000818400007D8400008284000083840000848400000C8400003384000078840000118400005E84000008800000098000000A8000000B8000000C800000158000000A81000001E80000538400000088000001880000028800000388000004880000058800002AE10000008200001C82000033820000018200003D9700003E9700004D9700002A8F00000D97000042970000 @@ -467,7 +467,7 @@ CMSIS-Pack - 00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED184000002000000AA000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000 + 00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED18400000200000008000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000 34049 @@ -484,7 +484,7 @@ Main - 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E1000000000000DB000000FFFEFF000000000000000000000000000100000001000000018001E1000000000000DC000000FFFEFF000000000000000000000000000100000001000000018003E1000000000400DE000000FFFEFF00000000000000000000000000010000000100000001800081000000000000BB000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E1000000000400E1000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E1000000000400E3000000FFFEFF000000000000000000000000000100000001000000018022E1000000000400E2000000FFFEFF000000000000000000000000000100000001000000018025E1000000000400E4000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE1000000000400E5000000FFFEFF00000000000000000000000000010000000100000001802CE1000000000400E6000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000400FFFFFFFFFFFEFF000100000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF009600000000000000000001802181000000000400CD000000FFFEFF000000000000000000000000000100000001000000018024E1000000000400D6000000FFFEFF000000000000000000000000000100000001000000018028E1000000000400D5000000FFFEFF000000000000000000000000000100000001000000018029E1000000000400D7000000FFFEFF00000000000000000000000000010000000100000001800281000000000400BC000000FFFEFF00000000000000000000000000010000000100000001802981000000000400D1000000FFFEFF00000000000000000000000000010000000100000001802781000000000400CF000000FFFEFF00000000000000000000000000010000000100000001802881000000000400D0000000FFFEFF00000000000000000000000000010000000100000001801D81000000000400C9000000FFFEFF00000000000000000000000000010000000100000001801E81000000000400CA000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B81000002000400C0000000FFFEFF00000000000000000000000000010000000100000001800C81000002000000C1000000FFFEFF00000000000000000000000000010000000100000001805F86000002000000D4000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E81000002000000C3000000FFFEFF00000000000000000000000000010000000100000001800F81000002000000C4000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E0024030000 + 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000039000000FFFEFF000000000000000000000000000100000001000000018001E10000000000003A000000FFFEFF000000000000000000000000000100000001000000018003E10000000004003C000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E100000000040041000000FFFEFF000000000000000000000000000100000001000000018022E100000000040040000000FFFEFF000000000000000000000000000100000001000000018025E100000000040042000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040043000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040044000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000400FFFFFFFFFFFEFF000000000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002B000000FFFEFF000000000000000000000000000100000001000000018024E100000000040034000000FFFEFF000000000000000000000000000100000001000000018028E100000000040033000000FFFEFF000000000000000000000000000100000001000000018029E100000000040035000000FFFEFF000000000000000000000000000100000001000000018002810000000004001A000000FFFEFF000000000000000000000000000100000001000000018029810000000004002F000000FFFEFF000000000000000000000000000100000001000000018027810000000004002D000000FFFEFF000000000000000000000000000100000001000000018028810000000004002E000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040027000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040028000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000020004001E000000FFFEFF00000000000000000000000000010000000100000001800C810000020000001F000000FFFEFF00000000000000000000000000010000000100000001805F8600000200000032000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000200000021000000FFFEFF00000000000000000000000000010000000100000001800F8100000200000022000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E0024030000 34050 @@ -520,7 +520,7 @@ - 010000000300000001000000000000000000000001000000010000000200000000000000010000000100000000000000280000002800000001000000120000000E00000001000000FFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006D00610069006E002E00630001000000FFFF010017004966436F6E74656E7453746F726167654D6663496D706CFFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100350037003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0036003800320034003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0036003800320034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0069006E0066006C006100730068002E006300010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100310030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100320034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006100640063002E006300010000000180FFFEFF00FFFEFFFF2D013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0033003500360038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100340037003000330034003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100340037003000330034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F006100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F0064006D0061002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003800330032003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00320038003700390039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00320038003700390039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F0064006D0061002E00630000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00730074006D00330032006C003400780078005F00690074002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200340030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0034003900320036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0034003900320036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F007000770072002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310039003200360036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310039003200360036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F007000770072002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0075006100720074005F006400650076002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100360031003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0034003900380032003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0034003900380032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006300010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003600370039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003700390034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00630000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C006600720074005F00700072006F0074006F0063006F006C002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310030003400350031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310030003400350031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C0073007400610072007400750070005F00730074006D00330032006C00340033003100780078002E007300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100350030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0038003900390030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0038003900390030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF1573007400610072007400750070005F00730074006D00330032006C00340033003100780078002E00730000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0069006E0066006C006100730068002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400330039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400330039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00680000000000FFFFFFFFFFFFFFFFFFFEFF3C2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200330037003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310030003200340038003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310030003200340038003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0F730074006D00330032006C003400780078005F00680061006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100310039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100310039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006700700069006F002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00340035003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003300310033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003300310033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066700700069006F002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00740069006D002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00310037003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003300380033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003300380033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF05740069006D002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1C2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00750073006100720074002E006300010000000180FFFEFF00FFFEFFFF22013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100320033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF07750073006100720074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006100640063002E006300010000000180FFFEFF00FFFEFFFF20013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C006600720074005F00700072006F0074006F0063006F006C002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003500380030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003600310032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00680000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000010000000200000026010000490000008007000042030000 + 010000000300000001000000000000000000000001000000010000000200000000000000010000000100000000000000280000002800000001000000120000000800000001000000FFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006D00610069006E002E00630001000000FFFF010017004966436F6E74656E7453746F726167654D6663496D706CFFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200350030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0037003500310033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0037003500310033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0069006E0066006C006100730068002E006300010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100310030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100310030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006100640063002E006300010000000180FFFEFF00FFFEFFFF2D013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0033003500360038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100340037003000330034003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100340037003000330034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F006100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F0064006D0061002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003800330032003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00320038003700390039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00320038003700390039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F0064006D0061002E00630000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00730074006D00330032006C003400780078005F00690074002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200340030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0034003900320036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0034003900320036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F007000770072002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310039003200360036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310039003200360036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F007000770072002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0075006100720074005F006400650076002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100360031003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0034003900380032003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0034003900380032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006300010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003600370039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003700390034003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00630000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C006600720074005F00700072006F0074006F0063006F006C002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003400300032003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310032003300360035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310032003300360035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C0073007400610072007400750070005F00730074006D00330032006C00340033003100780078002E007300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100350030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0038003900390030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0038003900390030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF1573007400610072007400750070005F00730074006D00330032006C00340033003100780078002E00730000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0069006E0066006C006100730068002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400330039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400330039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00680000000000FFFFFFFFFFFFFFFFFFFEFF3C2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200330037003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310030003200340038003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310030003200340038003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0F730074006D00330032006C003400780078005F00680061006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003100310039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003100310039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006700700069006F002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00340035003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003300310033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003300310033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066700700069006F002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00740069006D002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00310035003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003000340031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003000340031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF05740069006D002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1C2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00750073006100720074002E006300010000000180FFFEFF00FFFEFFFF22013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100320033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF07750073006100720074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006100640063002E006300010000000180FFFEFF00FFFEFFFF20013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C006600720074005F00700072006F0074006F0063006F006C002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003500380030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003600310032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00680000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000010000000200000026010000490000008007000042030000 diff --git a/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx b/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx index 012b9b1..4217389 100644 --- a/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx +++ b/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx @@ -13,15 +13,15 @@ D:\Program Files\IAR Systems\arm\config\debugger\ST\STM32L431RC.ddf - 1599935697 + 3292825121 - _ 0 _ 0 + _ 0 - 1 0 + 1 0 @@ -56,8 +56,8 @@ $PROJ_DIR$\ITM.log - 1 0 + 1 _ 0