no message

This commit is contained in:
95384 2024-07-23 10:00:15 +08:00
parent 0dd8f22443
commit 8351af655b
36 changed files with 5752 additions and 4271 deletions

View File

@ -6,7 +6,7 @@
config_info g_stConfigInfo={
.flag_head = FLAG_SAVE_INFLASH_HEAD,
.addr = 0x30, /* 蘇'華硊 */
.net_id = 0x00, /* ÄŹČϲ¨ĚŘÂĘ */
.net_id = 0x00, /* 默认网络ID */
.flag_end = FLAG_SAVE_INFLASH_END,
};

View File

@ -238,7 +238,7 @@ int main(void)
/* Initialize all configured peripherals */
MX_USART1_UART_Init(9600);
MX_USART3_UART_Init(9600);
HAL_GPIO_WritePin(RF_PWR_CTRL_GPIO_Port, RF_PWR_CTRL_Pin, GPIO_PIN_SET);
HAL_GPIO_WritePin(RF_PWR_CTRL_GPIO_Port, RF_PWR_CTRL_Pin, GPIO_PIN_SET);//使能e22
MX_GPIO_Init();
MX_DMA_Init();
MX_ADC1_Init();
@ -274,9 +274,10 @@ int main(void)
// HAL_DAC_SetValue(&hdac1,DAC_CHANNEL_1,DAC_ALIGN_12B_R,2048);
//HAL_ADC_Start_DMA(&hadc1,(uint32_t *)result_data,DATA_LEN);
// HAL_GPIO_TogglePin(GPIO_LED_GPIO_Port, GPIO_LED_Pin);
HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI);
read_and_process_uart_data(g_term_uart_handle);
read_and_process_uart_data(g_lora_uart_handle);
HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI);
// HAL_TIM_Base_Start(&htim6);

99
Drivers/e22/e22.c Normal file
View File

@ -0,0 +1,99 @@
#include "e22.h"
#include "main.h"
#include "inflash.h"
uint8_t e22_state = 0;
//c0 00 09 0000 00 64 00 0b 41 00 00 WOR定点发送
//c0 00 09 0000 00 64 00 0b 49 00 00 WOR定点收
/* 参数配置 */
uint8_t e22_config_data[12] = { 0xc0, 0x00, 0x09, //写0起始9长度
0x00, 0x30, //地址
0x00, //网络ID
0x64, //96008N19.6k
0x00,
0x0A, //信道10
0x49,
0x00, 0x00}; //加密
static unsigned short CRC16(unsigned char *arr_buff, unsigned char len)
{
unsigned short crc=0xFFFF;
unsigned char i, j;
for ( j=0; j<len; j++){
crc=crc ^*arr_buff++;
for ( i=0; i<8; i++){
if( ( crc&0x0001) >0){
crc=crc>>1;
crc=crc^ 0xa001;
}else{
crc=crc>>1;
}
}
}
return crc;
}
void lora_set_mode_normal()
{
HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_RESET);
HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_RESET);
}
void lora_set_mode_wor()
{
HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_SET);
HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_RESET);
}
void lora_set_mode_config()
{
HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_RESET);
HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_SET);
}
void lora_set_mode_sleep()
{
HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_SET);
HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_SET);
}
void lora_set_mode(e22_mode mode)
{
switch(mode)
{
case NORMAL:
lora_set_mode_normal();
HAL_Delay(200);
break;
case WOR:
lora_set_mode_wor();
HAL_Delay(200);
break;
case CONFIG:
lora_set_mode_config();
HAL_Delay(200);
break;
case SLEEP:
lora_set_mode_sleep();
HAL_Delay(200);
break;
default:
break;
}
}
void e22_init()
{
uint8_t init_cmd[] = {0xC0,
0x00, 0x09,
0x00, 0x30,
0x00,
0x64,
0x00,
0x0A,
0x48,
0x00, 0x00
};
lora_set_mode(CONFIG);
}

52
Drivers/e22/e22.h Normal file
View File

@ -0,0 +1,52 @@
#ifndef __E22_H__
#define __E22_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#define NORMAL 111
#define WOR 222
#define CONFIG 333
#define SLEEP 444
#pragma pack(push,1)
typedef struct _e22_config_pack{
unsigned char func;
unsigned char func;
unsigned char func;
unsigned char addr_h;
unsigned char addr_l;
unsigned char net_addr;
unsigned char baudRate;
unsigned char packetFragments;
unsigned char channel;
unsigned char transmissionMode;
}e22_config_pack;
#pragma pack(pop)
typedef int e22_mode;
extern UART_HandleTypeDef huart3;
extern void Serial_SendArray_3(uint8_t *Array, uint16_t Length);
void e22_config(void);
void lora_set_mode(e22_mode mode);
void e22_config_get(void);
void set_addr(uint8_t buf);
void set_net_id(uint8_t buf);
extern uint16_t MB_register[40];
extern uint8_t Transfer_Data_3[DATA_LEN_MAX]; //·¢ËÍÊý¾Ý
extern uint8_t Receive_Data_3[DATA_LEN_MAX]; //½ÓÊÕÊý¾Ý
#ifdef __cplusplus
}
#endif
#endif /* __E22_H__ */

View File

@ -1163,6 +1163,12 @@
</group>
<group>
<name>e22</name>
<file>
<name>$PROJ_DIR$\..\Drivers\e22\e22.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\e22\e22.h</name>
</file>
</group>
<group>
<name>ring_queue</name>

View File

@ -1490,6 +1490,12 @@
</group>
<group>
<name>e22</name>
<file>
<name>$PROJ_DIR$\..\Drivers\e22\e22.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\e22\e22.h</name>
</file>
</group>
<group>
<name>ring_queue</name>

View File

@ -39,3 +39,7 @@
681 984 7427373050082772 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out cf929ff19a057992
2 1015 7427368740465524 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/uart_dev.o b3f3d06590d27380
2 574 7427370100596734 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/ring_queue_4579790358902792442.dir/ring_queue.o 9889b8e0bb5d827a
3694 4032 7427965085171427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/e22_1376246393639769861.dir/e22.o b0a76782b987eed1
3 4347 7427965088171039 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o e5719b7979ac0a6a
4348 10297 7427965147765739 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out 6dcc9a6ebfe249da
10298 10830 7427965153199204 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex 7d99c4510add455f

View File

@ -11,7 +11,7 @@
3599 3965 7427368818036158 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.pbi e17a5115a0318c08
3074 3448 7427368812862453 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.pbi 6bd68485e05a5824
3305 3689 7427368815257829 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/CMSIS_6603591812247902717.dir/system_stm32l4xx.pbi 6e44238fa228aa1b
5627 6020 7427368838604531 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 242de219dde61a63
771 1167 7428015694649133 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
3111 3508 7427368813437568 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.pbi 405127a2c7d03ff4
94 744 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.xcl 24cecdd3618d82d3
2292 2671 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.xcl d1c63dd3cf9ad64f
@ -20,7 +20,7 @@
719 1238 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.xcl 3d6a51876ed349f3
1829 2328 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.xcl 9d670aed6fe801b2
3966 4393 7427368822307122 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.pbi 1df0e3f36e172d3a
2874 3462 7427368812982463 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
1 433 7427980025554308 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
1773 2250 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.xcl 869dfdad4c03c68b
129 731 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dma.xcl dd2e8108c9b4cd4b
3536 3906 7427368817440705 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.pbi 8fe9fe59491a7402
@ -39,7 +39,7 @@
2855 3198 7427368810347127 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dac.pbi d4167f5afa6a6852
3845 4234 7427368820591509 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.pbi 25cd7f2792fc1c89
1963 2382 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.xcl 229c56d44a49dd7
2384 2951 7427368807889331 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216
1 434 7427373094563182 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216
1720 2148 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.xcl d6e005550c325468
4332 4800 7427368826365721 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.pbi b8a2c9d6e5220138
1298 1863 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.xcl e73b3f3d49b841f3
@ -54,7 +54,7 @@
2252 2640 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.xcl 6faee9ccd7fc018b
2741 3100 7427368809385319 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dma.pbi 4051712cc6314e8e
2673 3050 7427368808873566 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/adc.pbi 9026c95d0949ec44
2731 3110 7427368809490628 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784
1 347 7427370358649399 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784
3199 3597 7427368814352700 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.pbi a1436f6001436575
2802 3151 7427368809889492 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/tim.pbi ac776f032d051dac
3101 3481 7427368813177571 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.pbi 44b852778065e0f6
@ -68,75 +68,155 @@
4466 5008 7427368828367389 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.pbi 1b4f982e630f457e
3945 4464 7427368823017132 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.pbi c01c2dc90d721502
4226 4763 7427368826003070 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.pbi fb7cdd34d037d5f9
4802 5483 7427368833222272 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi f725d1716a0e514a
4395 5115 7427368829411642 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 3ebcc302e729bf1e
4058 4781 7427368826185714 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
4214 4820 7427368826435715 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi 53a4d98fb5135522
5009 5626 7427368834653445 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 6709e6eac817f1c8
4236 4903 7427368827429030 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496
6020 7450 7427368852456809 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
167 2544 7427965181949408 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi d373232e53906c18
338 770 7428015690678365 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
434 955 7427980030776327 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
161 2081 7427965177306444 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi d113922f81021302
80 2003 7427965176530087 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 6fb320feec5cd23f
362 1054 7427977051579885 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496
1168 2623 7428015708770416 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
85 1188 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.xcl 6b1623e9f156c572
1 1204 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.xcl 85d7ecf7992ad1a5
2507 2873 7427368807108787 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi 32fa356aa05fd9c3
1 361 7427977044636294 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi 32fa356aa05fd9c3
2698 3072 7427368809105427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi ada5591d98e50876
179 309 7427370144429183 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi 14c65cec25037de2
77 627 7427370147600520 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi 706a0a80f25ebbb9
160 642 7427370147750489 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 22fd516c3a4c796a
154 1098 7427965167474180 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi c3bb6657d2a1570c
1 665 7427370140000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/ring_queue_4579790358902792442.dir/ring_queue.xcl 8b2eeecf86da4720
168 736 7427370148095766 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi 9c7142f35d8a18e7
667 774 7427370149073953 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/ring_queue_4579790358902792442.dir/ring_queue.pbi 5dc999b5980b5ccc
775 1137 7427370152715279 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 57e8bfcfc2effc84
1138 1554 7427370156873559 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1555 3025 7427370171138908 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 355 7427370226664690 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784
356 860 7427370231728425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
861 1276 7427370235897260 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1278 2655 7427370249229209 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 347 7427370358649399 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784
348 988 7427370365072541 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
989 1391 7427370369103264 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1392 2758 7427370382300435 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 424 7427371408328538 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
425 928 7427371413373370 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
929 1332 7427371417404189 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1333 2703 7427371430684352 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 421 7427371538024021 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
422 946 7427371543283545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
947 1351 7427371547340770 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1352 2759 7427371560958579 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 424 7427371719267617 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
425 928 7427371724314241 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
929 1337 7427371728393421 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1338 2814 7427371741892155 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 439 7427371799138621 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
440 962 7427371804385911 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
964 1370 7427371808464047 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1371 2761 7427371821951867 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 447 7427372031467759 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
448 958 7427372036588756 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
958 1358 7427372040577425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1359 2845 7427372055023128 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 434 7427372111334828 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
435 939 7427372116384425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
940 1344 7427372120445328 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1345 2766 7427372134192990 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 552 7427372293969388 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
553 1071 7427372299181585 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
1072 1493 7427372303385255 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1494 2909 7427372317092742 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 445 7427372372861101 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
446 941 7427372377817044 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
941 1417 7427372382577055 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1418 2909 7427372396585518 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 443 7427372963505325 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216
444 956 7427372968641183 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496
957 1364 7427372972720678 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1365 2770 7427372986321161 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 434 7427373094563182 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216
434 932 7427373099566373 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496
933 1405 7427373104291061 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1406 2899 7427373118785280 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 449 7427375472730044 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d
450 946 7427375477714646 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a
947 1345 7427375481701965 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1346 2743 7427375495235960 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 1695 7427965170000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.xcl 5f03e4cf4bc71ecd
1 337 7428015686332995 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
2 382 7428016226663216 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
383 843 7428016231284763 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
844 1255 7428016235404245 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1256 2774 7428016250062810 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 365 7428016306183805 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
366 785 7428016310383975 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
786 1181 7428016314355030 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1182 2710 7428016328316345 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 342 7428016539600794 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
342 772 7428016543904594 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
773 1172 7428016547917305 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1173 2536 7428016561119546 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 385 7428016821443289 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
386 812 7428016825727345 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
813 1216 7428016829767339 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1217 2609 7428016843201860 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 343 7428017155404596 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
344 775 7428017159716874 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
776 1289 7428017164859861 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1290 2819 7428017179724726 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 433 7428019591139990 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
433 852 7428019595334834 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
853 1260 7428019599426988 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1261 2628 7428019612657038 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 345 7428019668179341 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
346 828 7428019673024475 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
829 1230 7428019677036758 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1231 2609 7428019690385757 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 367 7428019745963036 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
368 809 7428019750386619 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
809 1232 7428019754634804 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1233 2597 7428019767834860 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 350 7428019823458743 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
351 781 7428019827778988 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
782 1177 7428019831741372 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1178 2565 7428019845195563 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 346 7428020105134539 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
346 812 7428020109803689 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
812 1229 7428020113974553 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1229 2569 7428020126928825 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 356 7428020233596296 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
357 781 7428020237854918 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
783 1181 7428020241854366 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1182 2601 7428020255611746 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 349 7428020311205545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
350 785 7428020315572648 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
786 1184 7428020319564299 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1185 2609 7428020333313155 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 357 7428020389016186 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
358 796 7428020393406366 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
797 1199 7428020397437501 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1200 2606 7428020411014202 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 351 7428020466637034 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
351 782 7428020470957805 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
783 1187 7428020475011746 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1188 2645 7428020489144889 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 357 7428022086371571 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
358 810 7428022090916804 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
811 1231 7428022095123497 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1232 2777 7428022108758323 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 387 7428022268058060 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
388 866 7428022272858184 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
867 1271 7428022276907100 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1272 2662 7428022290337437 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 365 7428022346104886 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
366 810 7428022350566750 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
811 1219 7428022354662368 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1220 2622 7428022368219146 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 349 7428022475024048 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
349 803 7428022479577322 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
804 1205 7428022483601892 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1206 2617 7428022497265318 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 350 7428022552780962 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
350 779 7428022557085170 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
780 1179 7428022561088004 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1180 2548 7428022574340584 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 350 7428023244066741 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
351 807 7428023248653537 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
808 1210 7428023252671894 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1211 2629 7428023266431586 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 346 7428023322020802 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
347 772 7428023326296582 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
773 1170 7428023330279282 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1170 2545 7428023343587542 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 350 7428023501608274 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
351 783 7428023505954003 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
784 1195 7428023510087276 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1196 2618 7428023523852670 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 343 7428023579551773 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
344 788 7428023584024864 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
789 1193 7428023588076716 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1194 2569 7428023601392320 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 354 7428023912509830 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
355 784 7428023916826226 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
785 1198 7428023920961486 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1199 2657 7428023935077781 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 350 7428023990769086 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
351 787 7428023995138777 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
788 1188 7428023999153398 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1189 2559 7428024012418865 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 351 7428024068023309 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
352 786 7428024072393555 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
787 1182 7428024076350411 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1183 2549 7428024089573668 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 386 7428024196695802 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
387 830 7428024201160015 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
831 1227 7428024205126975 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1228 2654 7428024218396243 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 347 7428024274466267 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
348 773 7428024278727980 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
773 1165 7428024282642273 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1165 2557 7428024296144102 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 359 7428024402908024 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
360 791 7428024407233632 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
791 1200 7428024411333634 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1201 2653 7428024425427427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 343 7428025608038688 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
345 756 7428025612169294 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
757 1158 7428025616201594 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1159 2533 7428025629524243 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 362 7428026351569983 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
363 802 7428026355994434 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
803 1203 7428026359995214 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1204 2680 7428026374268378 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
1 383 7428026634922198 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
384 822 7428026639332792 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
823 1236 7428026643476048 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1238 2697 7428026657657547 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 355 7428026969415883 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
356 808 7428026973951506 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
808 1215 7428026978026951 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1216 2620 7428026991641122 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214
2 366 7428027200738065 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2
367 813 7428027205212065 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f
814 1216 7428027209247545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c
1216 2720 7428027223828069 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214

View File

@ -0,0 +1,59 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\APP_7160814934950161391.dir\inflash.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\inflash.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h

View File

@ -1,59 +1,60 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\APP_7160814934950161391.dir\uart_dev.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdarg.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\uart_dev.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\uart_dev.c
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdarg.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h

View File

@ -0,0 +1,48 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\adc.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\adc.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h

View File

@ -1,65 +1,67 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\main.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\frt_protocol.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\main.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\main.c
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\frt_protocol.h

View File

@ -0,0 +1,48 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\usart.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h

View File

@ -90,6 +90,11 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br
rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl.rsp
xclcommand = -source_file E$:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\system_stm32l4xx.c -xcl_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl -macro_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.tmp -icc_path "D$:\Program$ Files\IAR$ Systems\arm\bin\iccarm.exe"
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl : COMPILER_XCL
flags = E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c -D USE_HAL_DRIVER -D STM32L431xx -o E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir --debug --endian=little --cpu=Cortex-M4 -e --fpu=VFPv4_sp --dlib_config "D$:\Program$ Files\IAR$ Systems\arm\inc\c\DLib_Config_Full.h" -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ -Ohz -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\Core\Include\\" -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\DSP\Include\\" -D ARM_MATH_CM4 --predef_macros E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.tmp
rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl.rsp
xclcommand = -source_file E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c -xcl_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl -macro_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.tmp -icc_path "D$:\Program$ Files\IAR$ Systems\arm\bin\iccarm.exe"
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl : COMPILER_XCL
flags = E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue\ring_queue.c -D USE_HAL_DRIVER -D STM32L431xx -o E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir --debug --endian=little --cpu=Cortex-M4 -e --fpu=VFPv4_sp --dlib_config "D$:\Program$ Files\IAR$ Systems\arm\inc\c\DLib_Config_Full.h" -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ -Ohz -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\Core\Include\\" -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\DSP\Include\\" -D ARM_MATH_CM4 --predef_macros E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.tmp
rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl.rsp
@ -249,6 +254,9 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\system_stm32l4xx.c
flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c
flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue\ring_queue.c
flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl
@ -338,36 +346,36 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part1.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\main.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\stm32l4xx_hal_msp.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\stm32l4xx_it.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi $
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi $
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi $
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi $
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi
flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi
build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10.pbd : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part0.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part1.pbi $
E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi $

View File

@ -0,0 +1,50 @@
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi: \
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c \
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h

View File

@ -0,0 +1,462 @@
"E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c"
-std=c11
-ferror-limit=0
-fbracket-depth=512
-funsigned-char
-MD
-MF
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi.dep
-o
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue
-I
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
-I
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
-I
D:\Program Files\IAR Systems\arm\inc\c\aarch32
-I
D:\Program Files\IAR Systems\arm\inc
-I
D:\Program Files\IAR Systems\arm\inc\c
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\STM32L4xx_HAL_Driver\Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\CMSIS\Device\ST\STM32L4xx\Include
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\CMSIS\Include
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Middlewares\ST\ARM\DSP\Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Middlewares\ST\ARM\DSP\Lib
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\App\Inc
-I
E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue
-I
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
-I
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
-D__CHAR_BITS__=8
-D__CHAR_MAX__=0xff
-D__CHAR_MIN__=0
-D__CHAR_SIZE__=1
-D__UNSIGNED_CHAR_MAX__=0xff
-D__SIGNED_CHAR_MAX__=127
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
-D__CHAR_ALIGN__=1
-D__SHORT_SIZE__=2
-D__UNSIGNED_SHORT_MAX__=0xffff
-D__SIGNED_SHORT_MAX__=32767
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
-D__SHORT_ALIGN__=2
-D__INT_SIZE__=4
-D__UNSIGNED_INT_MAX__=0xffffffffU
-D__SIGNED_INT_MAX__=2147483647
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
-D__INT_ALIGN__=4
-D__LONG_SIZE__=4
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
-D__SIGNED_LONG_MAX__=2147483647L
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
-D__LONG_ALIGN__=4
-D__LONG_LONG_SIZE__=8
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL
-D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
-D__LONG_LONG_ALIGN__=8
-D__INT8_T_TYPE__=signed char
-D__INT8_T_MAX__=127
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
-D__UINT8_T_TYPE__=unsigned char
-D__UINT8_T_MAX__=0xff
-D__INT8_SIZE_PREFIX__="hh"
-D__INT16_T_TYPE__=signed short int
-D__INT16_T_MAX__=32767
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
-D__UINT16_T_TYPE__=unsigned short int
-D__UINT16_T_MAX__=0xffff
-D__INT16_SIZE_PREFIX__="h"
-D__INT32_T_TYPE__=signed int
-D__INT32_T_MAX__=2147483647
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
-D__UINT32_T_TYPE__=unsigned int
-D__UINT32_T_MAX__=0xffffffffU
-D__INT32_SIZE_PREFIX__=""
-D__INT64_T_TYPE__=signed long long int
-D__INT64_T_MAX__=9223372036854775807LL
-D__INT64_T_MIN__=(-__INT64_T_MAX__-1)
-D__UINT64_T_TYPE__=unsigned long long int
-D__UINT64_T_MAX__=0xffffffffffffffffULL
-D__INT64_SIZE_PREFIX__="ll"
-D__INT_LEAST8_T_TYPE__=signed char
-D__INT_LEAST8_T_MAX__=127
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
-D__UINT_LEAST8_T_TYPE__=unsigned char
-D__UINT_LEAST8_T_MAX__=0xff
-D__INT8_C_SUFFIX__=
-D__UINT8_C_SUFFIX__=
-D__INT_LEAST8_SIZE_PREFIX__="hh"
-D__INT_LEAST16_T_TYPE__=signed short int
-D__INT_LEAST16_T_MAX__=32767
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
-D__UINT_LEAST16_T_TYPE__=unsigned short int
-D__UINT_LEAST16_T_MAX__=0xffff
-D__INT16_C_SUFFIX__=
-D__UINT16_C_SUFFIX__=
-D__INT_LEAST16_SIZE_PREFIX__="h"
-D__INT_LEAST32_T_TYPE__=signed int
-D__INT_LEAST32_T_MAX__=2147483647
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
-D__UINT_LEAST32_T_TYPE__=unsigned int
-D__UINT_LEAST32_T_MAX__=0xffffffffU
-D__INT32_C_SUFFIX__=
-D__UINT32_C_SUFFIX__=U
-D__INT_LEAST32_SIZE_PREFIX__=""
-D__INT_LEAST64_T_TYPE__=signed long long int
-D__INT_LEAST64_T_MAX__=9223372036854775807LL
-D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1)
-D__UINT_LEAST64_T_TYPE__=unsigned long long int
-D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL
-D__INT64_C_SUFFIX__=LL
-D__UINT64_C_SUFFIX__=ULL
-D__INT_LEAST64_SIZE_PREFIX__="ll"
-D__INT_FAST8_T_TYPE__=signed int
-D__INT_FAST8_T_MAX__=2147483647
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
-D__UINT_FAST8_T_TYPE__=unsigned int
-D__UINT_FAST8_T_MAX__=0xffffffffU
-D__INT_FAST8_SIZE_PREFIX__=""
-D__INT_FAST16_T_TYPE__=signed int
-D__INT_FAST16_T_MAX__=2147483647
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
-D__UINT_FAST16_T_TYPE__=unsigned int
-D__UINT_FAST16_T_MAX__=0xffffffffU
-D__INT_FAST16_SIZE_PREFIX__=""
-D__INT_FAST32_T_TYPE__=signed int
-D__INT_FAST32_T_MAX__=2147483647
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
-D__UINT_FAST32_T_TYPE__=unsigned int
-D__UINT_FAST32_T_MAX__=0xffffffffU
-D__INT_FAST32_SIZE_PREFIX__=""
-D__INT_FAST64_T_TYPE__=signed long long int
-D__INT_FAST64_T_MAX__=9223372036854775807LL
-D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1)
-D__UINT_FAST64_T_TYPE__=unsigned long long int
-D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL
-D__INT_FAST64_SIZE_PREFIX__="ll"
-D__INTMAX_T_TYPE__=signed long long int
-D__INTMAX_T_MAX__=9223372036854775807LL
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
-D__UINTMAX_T_TYPE__=unsigned long long int
-D__UINTMAX_T_MAX__=0xffffffffffffffffULL
-D__INTMAX_C_SUFFIX__=LL
-D__UINTMAX_C_SUFFIX__=ULL
-D__INTMAX_SIZE_PREFIX__="ll"
-D__ATOMIC_BOOL_LOCK_FREE=2
-D__ATOMIC_CHAR_LOCK_FREE=2
-D__ATOMIC_CHAR16_T_LOCK_FREE=2
-D__ATOMIC_CHAR32_T_LOCK_FREE=2
-D__ATOMIC_WCHAR_T_LOCK_FREE=2
-D__ATOMIC_SHORT_LOCK_FREE=2
-D__ATOMIC_INT_LOCK_FREE=2
-D__ATOMIC_LONG_LOCK_FREE=2
-D__ATOMIC_LLONG_LOCK_FREE=0
-D__ATOMIC_POINTER_LOCK_FREE=2
-D__FLOAT_SIZE__=4
-D__FLOAT_ALIGN__=4
-D__FLT_MANT_DIG__=24
-D__FLT_DIG__=6
-D__FLT_DECIMAL_DIG__=9
-D__FLT_MAX_EXP__=128
-D__FLT_MIN_EXP__=-125
-D__FLT_MAX_10_EXP__=38
-D__FLT_MIN_10_EXP__=-37
-D__FLT_MAX__=3.40282347E+38
-D__FLT_MIN__=1.17549435E-38
-D__FLT_HAS_SUBNORM__=1
-D__FLT_TRUE_MIN__=1.40129846E-45
-D__FLT_DENORM_MIN__=1.40129846E-45
-D__FLT_EPSILON__=1.1920929E-7
-D__DOUBLE_SIZE__=8
-D__DOUBLE_ALIGN__=8
-D__DBL_MANT_DIG__=53
-D__DBL_DIG__=15
-D__DBL_DECIMAL_DIG__=17
-D__DBL_MAX_EXP__=1024
-D__DBL_MIN_EXP__=-1021
-D__DBL_MAX_10_EXP__=308
-D__DBL_MIN_10_EXP__=-307
-D__DBL_MAX__=1.7976931348623157E+308
-D__DBL_MIN__=2.2250738585072014E-308
-D__DBL_HAS_SUBNORM__=1
-D__DBL_TRUE_MIN__=4.9406564584124654E-324
-D__DBL_DENORM_MIN__=4.9406564584124654E-324
-D__DBL_EPSILON__=2.2204460492503131E-16
-D__LONG_DOUBLE_SIZE__=8
-D__LONG_DOUBLE_ALIGN__=8
-D__LDBL_MANT_DIG__=53
-D__LDBL_DIG__=15
-D__LDBL_DECIMAL_DIG__=17
-D__LDBL_MAX_EXP__=1024
-D__LDBL_MIN_EXP__=-1021
-D__LDBL_MAX_10_EXP__=308
-D__LDBL_MIN_10_EXP__=-307
-D__LDBL_MAX__=1.7976931348623157E+308
-D__LDBL_MIN__=2.2250738585072014E-308
-D__LDBL_HAS_SUBNORM__=1
-D__LDBL_TRUE_MIN__=4.9406564584124654E-324
-D__LDBL_DENORM_MIN__=4.9406564584124654E-324
-D__LDBL_EPSILON__=2.2204460492503131E-16
-D____FP16_SIZE__=2
-D____FP16_ALIGN__=2
-D__FLT16_MANT_DIG__=11
-D__FLT16_DIG__=3
-D__FLT16_DECIMAL_DIG__=5
-D__FLT16_MAX_EXP__=16
-D__FLT16_MIN_EXP__=-13
-D__FLT16_MAX_10_EXP__=4
-D__FLT16_MIN_10_EXP__=-4
-D__FLT16_MAX__=6.5504E+4
-D__FLT16_MIN__=6.1035E-5
-D__FLT16_HAS_SUBNORM__=1
-D__FLT16_TRUE_MIN__=5.9605E-8
-D__FLT16_DENORM_MIN__=5.9605E-8
-D__FLT16_EPSILON__=9.7656E-4
-D___FLOAT16_SIZE__=2
-D___FLOAT16_ALIGN__=2
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
-D__SUBNORMAL_FLOATING_POINTS__=1
-D__SIZE_T_TYPE__=unsigned int
-D__SIZE_T_MAX__=0xffffffffU
-D__PTRDIFF_T_TYPE__=signed int
-D__PTRDIFF_T_MAX__=2147483647
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
-D__INTPTR_T_TYPE__=signed int
-D__INTPTR_T_MAX__=2147483647
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
-D__UINTPTR_T_TYPE__=unsigned int
-D__UINTPTR_T_MAX__=0xffffffffU
-D__INTPTR_SIZE_PREFIX__=""
-D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int
-D__JMP_BUF_NUM_ELEMENTS__=16
-D__TID__=0xcf60
-D__VER__=9040002
-D__BUILD_NUMBER__=374
-D__IAR_SYSTEMS_ICC__=9
-D_MAX_ALIGNMENT=8
-D__LITTLE_ENDIAN__=1
-D__BOOL_TYPE__=unsigned char
-D__BOOL_SIZE__=1
-D__WCHAR_T_TYPE__=unsigned int
-D__WCHAR_T_SIZE__=4
-D__WCHAR_T_MAX__=0xffffffffU
-D__DEF_PTR_MEM__=__data
-D__DEF_PTR_SIZE__=4
-D__DATA_MEM0__=__data
-D__DATA_MEM0_POINTER_OK__=1
-D__DATA_MEM0_UNIQUE_POINTER__=1
-D__DATA_MEM0_VAR_OK__=1
-D__DATA_MEM0_INTPTR_TYPE__=int
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned int
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__=""
-D__DATA_MEM0_MAX_SIZE__=0x7fffffffU
-D_RSIZE_MAX=0x7fffffffU
-D__DATA_MEM0_HEAP_SEGMENT__="HEAP"
-D__DATA_MEM0_PAGE_SIZE__=0
-D__DATA_MEM0_HEAP__=0
-D__CODE_MEM0__=__code
-D__CODE_MEM0_POINTER_OK__=1
-D__CODE_MEM0_UNIQUE_POINTER__=1
-D__HEAP_MEM0__=0
-D__HEAP_DEFAULT_MEM__=0
-D__HEAPND_MEMORY_LIST1__()=
-D__MULTIPLE_HEAPS__=0
-D__DEF_HEAP_MEM__=__data
-D__DEF_STACK_MEM_INDEX__=0
-D__PRAGMA_PACK_ON__=1
-D__MULTIPLE_INHERITANCE__=1
-D__AAPCS_VFP__=1
-D__ARM4TM__=4
-D__ARM5TM__=5
-D__ARM5T__=5
-D__ARM5__=5
-D__ARM6MEDIA__=6
-D__ARM6M__=11
-D__ARM6SM__=12
-D__ARM6T2__=6
-D__ARM6__=6
-D__ARM7EM__=13
-D__ARM7M__=7
-D__ARM7__=7
-D__ARMVFPV1__=1
-D__ARMVFPV2__=2
-D__ARMVFPV3_D16__=1
-D__ARMVFPV3_FP16__=1
-D__ARMVFPV3__=3
-D__ARMVFPV4__=4
-D__ARMVFP_D16__=1
-D__ARMVFP_FP16__=1
-D__ARMVFP_SP__=1
-D__ARMVFP__=__ARMVFPV4__
-D__ARM_32BIT_STATE=1
-D__ARM_ACLE=201
-D__ARM_ALIGN_MAX_PWR=8
-D__ARM_ALIGN_MAX_STACK_PWR=3
-D__ARM_ARCH=7
-D__ARM_ARCH_ISA_THUMB=2
-D__ARM_ARCH_PROFILE='M'
-D__ARM_FEATURE_CLZ=1
-D__ARM_FEATURE_COPROC=15
-D__ARM_FEATURE_DSP=1
-D__ARM_FEATURE_FMA=1
-D__ARM_FEATURE_IDIV=1
-D__ARM_FEATURE_LDREX=7
-D__ARM_FEATURE_MVE=0
-D__ARM_FEATURE_QBIT=1
-D__ARM_FEATURE_SAT=1
-D__ARM_FEATURE_SIMD32=1
-D__ARM_FEATURE_UNALIGNED=1
-D__ARM_FP=6
-D__ARM_FP16_ARGS=1
-D__ARM_FP16_FORMAT_IEEE=1
-D__ARM_MEDIA__=1
-D__ARM_PCS_VFP=1
-D__ARM_PROFILE_M__=1
-D__ARM_SIZEOF_MINIMAL_ENUM=1
-D__ARM_SIZEOF_WCHAR_T=4
-D__ARM_SIZE_MINIMAL_ENUM=1
-D__ARM_SIZE_WCHAR_T=4
-D__CODE_SIZE_LIMIT=0
-D__CORE__=__ARM7EM__
-D__CPU_MODE__=1
-D__ICCARM_INTRINSICS_VERSION__=2
-D__ICCARM__=1
-D__INTERWORKING__=1
-D__thumb__=1
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=0
-D__HAS_WEAK__=1
-D__HAS_PACKED__=1
-D__HAS_JOINED_TYPES__=1
-D__HAS_LOCATED_DECLARATION__=1
-D__HAS_LOCATED_WITH_INIT__=1
-D__IAR_COMPILERBASE__=0xa0e01
-D__IAR_COMPILERBASE_STR__=10.14.1.1479
-D__UNICODE_SOURCE_SUPPORTED__=1
-D__VTABLE_MEM__=
-D__PRAGMA_REDEFINE_EXTNAME=1
-D__STDC__=1
-D__STDC_VERSION__=201710L
-D__STDC_IEC_559__=1
-D__STDC_IEC_559_COMPLEX__=1
-D__STDC_NO_VLA__=1
-D__MEMORY_ORDER_RELAXED__=0
-D__MEMORY_ORDER_CONSUME__=1
-D__MEMORY_ORDER_ACQUIRE__=2
-D__MEMORY_ORDER_RELEASE__=3
-D__MEMORY_ORDER_ACQ_REL__=4
-D__MEMORY_ORDER_SEQ_CST__=5
-D__STDC_UTF_16__=1
-D__STDC_UTF_32__=1
-D__STDC_LIB_EXT1__=201112L
-D__STDC_NO_THREADS__=1
-D__STDC_ISO_10646__=201103L
-D__STDC_HOSTED__=1
-D__EDG_IA64_ABI=1
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
-D__cpp_designated_initializers=201707L
-D__cpp_hex_float=201603L
-D__cpp_binary_literals=201304L
-D__cpp_unicode_literals=200710L
-D__cpp_static_assert=200410L
-D__EDG__=1
-D__EDG_VERSION__=603
-D__EDG_SIZE_TYPE__=unsigned int
-D__EDG_PTRDIFF_TYPE__=int
-D__EDG_DELTA_TYPE=int
-D__EDG_IA64_VTABLE_ENTRY_TYPE=int
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
-D__EDG_ABI_CHANGES_FOR_RTTI=1
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
-D__EDG_BSD=0
-D__EDG_SYSV=0
-D__EDG_ANSIC=1
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
-D__EDG_FLOAT80_ENABLING_POSSIBLE=0
-D__EDG_FLOAT128_ENABLING_POSSIBLE=0
-D__EDG_INT128_EXTENSIONS_ALLOWED=0
-DUSE_HAL_DRIVER=1
-DSTM32L431xx=1
-DARM_MATH_CM4=1
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\Program Files\IAR Systems\arm\inc\c\DLib_Config_Full.h"
-D_DLIB_CONFIG_FILE_STRING="D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Config_Full.h"
-D__VERSION__="IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM"
-D_VA_DEFINED=
-D_VA_LIST=struct __va_list
-D__ICCARM_OLD_DEFINED_VAARGS__=1
-D__VA_STACK_ALIGN__=8
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
-D__TOPM_DATA_MEMORY_LIST1__()=
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
-D__DATA_MEM0_INDEX_TYPE__=signed int
-D__iar_fp2bits32(x)=0
-D__iar_fp2bits64(x)=0
-D__iar_fpgethi64(x)=0
-D__iar_atomic_add_fetch(x,y,z)=0
-D__iar_atomic_sub_fetch(x,y,z)=0
-D__iar_atomic_load(x,y)=0ULL
-D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0

View File

@ -7693,9 +7693,9 @@
:10E0A0004FF4007000F0FDFB7F21204601F0EAFBF9
:10E0B0000021284600F094FD00230022002128467C
:10E0C00000F0BDFDFFF7AAFE4FF480520F49204D2E
:10E0D000204601F00DFD1F48214C02F010F80121EF
:10E0E000002002F089F8286802F037FA206802F070
:10E0F00034FAF4E7D8D100200000303F66660A40C9
:10E0D000204601F00DFD1F48214C02F010F8286881
:10E0E00002F019FA206802F016FA0121002002F06D
:10E0F0008BFAF4E7D8D100200000303F66660A4072
:10E1000000D0814000005940A0010020C0710020D3
:10E11000C0B100200000003B0000144000409F40C0
:10E12000000000000000303F0000000000C8A940CF
@ -8224,76 +8224,76 @@
:1001C000CB6813434A6923F0800313430360B042B2
:1001D0008B68C3620A6882621CBFA842A04201D138
:1001E000096901630122426170BD0000002C0140D9
:1001F000004401400040014010B50C460D49002864
:10020000086805D1810507D5FEF75DFB20B110BD5B
:10021000810558BFFEF751FB0748016821F0040132
:10022000012C016001D130BF10BD40BF20BF20BFF5
:1002300010BD00001470004010ED00E0BFF34F8FC0
:10024000DFF8B013DFF8B0030A6802F4E06202439B
:100250000A60BFF34F8F00BFFDE730B503464FF68E
:10026000FF70002400E0641CE2B28A4211D213F84D
:10027000012B5040082205046D0C00F001000128FC
:10028000B2BF284685F4204080F00100521EF2D112
:10029000E9E730BDDFF8640390ED000A03E0DFF822
:1002A0005C0390ED010ABDEEC00A10EE101A0804BE
:1002B000000E40EA012080B27047DFF8400390ED65
:1002C000020AF0E7DFF8340390ED030AEBE7DFF80A
:1002D0002C0390ED040AE6E7DFF8200390ED050A11
:1002E000E1E7E0B5C649008848700522684605E0A8
:1002F000E0B50088C249488068460522FAF702FE48
:10030000DDE9000100F024FE00200EBD80B500886C
:10031000012800D108E0002002BD80B50088012836
:1003200000D101E0002002BD012181F31388FFF715
:1003300085FF00BF80B50088012800D1F4E70020C8
:1003400002BDF8B50446AF4F15461E463221384669
:1003500000F016FEAA4A5078387003217970BE70FA
:1003600032462946F81CFAF7CDFDB978C91CC9B246
:100370003846FFF772FFF91C885339462046BA7891
:10038000BDE8F840521D00F02FBE00002DE9F041FD
:1003900005468878CE784C7946EA0026087944EA02
:1003A0000024A6F109000B2801D3182E02DB3146E8
:1003B0009BA00AE03CB13019A0F10A010B2902D33D
:1003C000401E182805DB21469BA0BDE8F04100F047
:1003D00038BEDFF83482C821404600F037F90027E4
:1003E00007E0002002E051680020884728F8170045
:1003F0007F1CA7420EDAB919002082B208EBC202B4
:10040000CBB252F8C8CF6345EDD0401C82B2062A69
:10041000F3D3E6E77D48016864008D4205D1A3B2BD
:10042000424603212846FFF78CFF794801688D4238
:1004300006D1A3B242462846BDE8F041032180E739
:10044000BDE8F0812DE9F8410F469BB00646B8782B
:10045000FC787D7944EA00243879A4F11401092953
:1004600045EA002502D321466DA006E01DB16019C2
:100470001538092804D329466FA000F0E2FD41E0B9
:10048000642102A800F0E2F8002009E007EB400137
:10049000CA79097A41EA022102AA22F81010401C06
:1004A000A842F3DB5648DFF86C8141788DF80010E4
:1004B000042178788DF801008DF802408DF8035002
:1004C0006846FFF7CAFE8DF804000622000A8DF880
:1004D00005006946304600F087FD002710E0002641
:1004E00058F836003919884206D102AA08EBC6012D
:1004F00002EB47004A689047761C052EF0D37F1C1C
:10050000AF42ECDB1CB0BDE8F081F8B50D461646F5
:10051000044606F1FE01C9B22846FFF79EFEA9195E
:1005200011F8022D497842EA0122904214D16878EC
:10053000032818BF10280FD10026374F687857F8C6
:100540003610884205D107EBC6022946536820467B
:100550009847761C022EF1D3F1BD78B58DB00546D3
:1005600000F051FD002843D01420FEF711FB2B4C66
:100570003221204600F06AF80026284600F050FD9F
:10058000A055761C312EF8D31D494B780020225CF3
:100590009A4205D1621C125C032A18BF102A03D0AC
:1005A000401C3128F3D323E0312821D0C0F131069B
:1005B000211832466846FAF7A5FC31220021204670
:1005C000FAF7A0FC324669462046FAF79BFC9DF8F4
:1005D0000100032808BF082206D0102808D19DF882
:1005E00006205200093203DD21462846FFF78DFF21
:1005F0000EB070BD0CED00E00400FA05D0F600204E
:1006000030010020A4F5002010000020D8F10020C7
:1006100008F3002008010020000000209CF60020C4
:1006200073746172745F7265675F61646472206580
:1006300072726F723A2564007265675F6E756D2025
:100640006572726F723A256400000000002200F0AB
:1001F0000044014000400140BFF34F8FDFF8B013CF
:10020000DFF8B0030A6802F4E06202430A60BFF359
:100210004F8F00BFFDE730B503464FF6FF70002457
:1002200000E0641CE2B28A4211D213F8012B504064
:10023000082205046D0C00F001000128B2BF284619
:1002400085F4204080F00100521EF2D1E9E730BD74
:10025000DFF8640390ED000A03E0DFF85C0390ED43
:10026000010ABDEEC00A10EE101A0804000E40EAA2
:10027000012080B27047DFF8400390ED020AF0E7FA
:10028000DFF8340390ED030AEBE7DFF82C0390ED81
:10029000040AE6E7DFF8200390ED050AE1E7E0B5A0
:1002A000C649008848700522684605E0E0B5008828
:1002B000C249488068460522FAF724FEDDE90001BC
:1002C00000F046FE00200EBD80B50088012800D158
:1002D00008E0002002BD80B50088012800D101E0BF
:1002E000002002BD012181F31388FFF785FF00BFC5
:1002F00080B50088012800D1F4E7002002BDF8B5E0
:100300000446AF4F15461E463221384600F038FEEF
:10031000AA4A5078387003217970BE703246294657
:10032000F81CFAF7EFFDB978C91CC9B23846FFF7D7
:1003300072FFF91C885339462046BA78BDE8F84068
:10034000521D00F051BE00002DE9F04105468878AD
:10035000CE784C7946EA0026087944EA0024A6F1D2
:1003600009000B2801D3182E02DB31469BA00AE0BE
:100370003CB13019A0F10A010B2902D3401E182804
:1003800005DB21469BA0BDE8F04100F05ABEDFF836
:100390003482C821404600F059F9002707E00020C8
:1003A00002E051680020884728F817007F1CA74208
:1003B0000EDAB919002082B208EBC202CBB252F8B1
:1003C000C8CF6345EDD0401C82B2062AF3D3E6E7DE
:1003D0007D48016864008D4205D1A3B242460321E5
:1003E0002846FFF78CFF794801688D4206D1A3B2F9
:1003F00042462846BDE8F041032180E7BDE8F08190
:100400002DE9F8410F469BB00646B878FC787D7917
:1004100044EA00243879A4F11401092945EA0025A9
:1004200002D321466DA006E01DB1601915380928D8
:1004300004D329466FA000F004FE41E0642102A825
:1004400000F004F9002009E007EB4001CA79097ABD
:1004500041EA022102AA22F81010401CA842F3DB54
:100460005648DFF86C8141788DF8001004217878C7
:100470008DF801008DF802408DF803506846FFF7B3
:10048000CAFE8DF804000622000A8DF805006946B0
:10049000304600F0A9FD002710E0002658F836008D
:1004A0003919884206D102AA08EBC60102EB4700BF
:1004B0004A689047761C052EF0D37F1CAF42ECDBD8
:1004C0001CB0BDE8F081F8B50D461646044606F1AD
:1004D000FE01C9B22846FFF79EFEA91911F8022DA8
:1004E000497842EA0122904214D16878032818BF63
:1004F00010280FD10026374F687857F836108842F9
:1005000005D107EBC6022946536820469847761C5A
:10051000022EF1D3F1BD78B58DB0054600F073FD24
:10052000002843D01420FEF733FB2B4C3221204609
:1005300000F08CF80026284600F072FDA055761CCD
:10054000312EF8D31D494B780020225C9A4205D108
:10055000621C125C032A18BF102A03D0401C3128E9
:10056000F3D323E0312821D0C0F1310621183246DF
:100570006846FAF7C7FC312200212046FAF7C2FC90
:10058000324669462046FAF7BDFC9DF80100032873
:1005900008BF082206D0102808D19DF80620520076
:1005A000093203DD21462846FFF78DFF0EB070BDEE
:1005B0000CED00E00400FA05D0F600203001002028
:1005C000A4F5002010000020D8F1002008F300203E
:1005D00008010020000000209CF600207374617266
:1005E000745F7265675F61646472206572726F72B6
:1005F0003A2564007265675F6E756D206572726F73
:10060000723A25640000000010B50C460D49002820
:10061000086805D1810507D5FEF755F920B110BD51
:10062000810558BFFEF749F90748016821F0040128
:10063000012C016001D130BF10BD40BF20BF20BFE1
:1006400010BD00001470004010ED00E0002200F02A
:1006500015BD000062F30F2262F31F42401810F034
:10066000030308D0C91A1FD3DB0748BF00F8012DC8
:1006700028BF20F8022D130030B414461546103957
@ -9290,7 +9290,7 @@
:10446000CEF20001086840F470000860BFF34F8F7F
:10447000BFF36F8F4FF00170E1EE100A704700003C
:1044800025FFFFFF6CF50000A001002000000000E8
:104490000769FFFF18020000F8000000000000207C
:104490000769FFFF18020000F6000000000000207E
:1044A0000248016841F470010160704788ED00E046
:1044B00000000000000000000102030406070809D4
:1044C00000F00DF8002801D0FFF7B4FFAFF3008033
@ -9324,13 +9324,13 @@
:10468000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF5E
:10469000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF4E
:1046A000FFF7FEBFFFF7FEBFFFF7FEBF10070300D7
:1046B00000008D0302081008F003BA450402080048
:1046C0000110039502020801D1129F08120208127C
:1046D000BB0821F012C50812040812CF0812050801
:1046E00012D908121F0812E30812200812F108124A
:1046F0002108160D18122208121B08122308123561
:1047000008100355300000160C560129F60210312E
:10471000E20114F00507093D002EB101080452FF23
:0847200001E3AAAE140300003E
:1046B0000000490302081008F003BA0104020800D0
:1046C0000110035102020801D1125B081202081204
:1046D000770821F0128108120408128B08120508CD
:1046E000129508121F08129F0812200812AD081216
:1046F000210812C90812220812D70812230812F141
:1047000008240355300000162C5529F6021031E21A
:104710000114F00507093D002EB101080452FF0104
:07472000E3AAAE1403000040
:04000005080244F5B4
:00000001FF

View File

@ -1,6 +1,6 @@
###############################################################################
#
# IAR ELF Linker V9.40.2.374/W64 for ARM 15/Jul/2024 17:01:45
# IAR ELF Linker V9.40.2.374/W64 for ARM 16/Jul/2024 09:28:34
# Copyright 2007-2023 IAR Systems AB.
#
# Output file =
@ -13,6 +13,7 @@
# (E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\adc.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\dac.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\dma.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir\e22.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir\frt_protocol.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\gpio.o
# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir\inflash.o
@ -99,43 +100,43 @@ initialize by copy { rw };
.intvec ro code 0x800'0000 0x18c startup_stm32l431xx.o [4]
- 0x800'018c 0x18c
"P1": 0x2'459c
.rodata const 0x800'018c 0x8000 arm_common_tables.o [8]
.rodata const 0x800'818c 0x4000 arm_common_tables.o [8]
.rodata const 0x800'c18c 0x4000 arm_common_tables.o [8]
.rodata const 0x801'018c 0x2000 arm_common_tables.o [8]
.rodata const 0x801'218c 0x2000 arm_common_tables.o [8]
.rodata const 0x801'418c 0x1f80 arm_common_tables.o [8]
.rodata const 0x801'610c 0x1dc0 arm_common_tables.o [8]
.rodata const 0x801'7ecc 0x1000 arm_common_tables.o [8]
.rodata const 0x801'8ecc 0x1000 arm_common_tables.o [8]
.text ro code 0x801'9ecc 0xeca xprintffull_nomb.o [7]
.text ro code 0x801'ad96 0x7e lz77_init_single.o [10]
.text ro code 0x801'ae14 0x16 strchr.o [10]
.text ro code 0x801'ae2a 0xa xsprout.o [7]
.text ro code 0x801'ae34 0x40 xfail_s.o [7]
.text ro code 0x801'ae74 0x36 strlen.o [10]
.rodata const 0x801'aeaa 0x2 xlocale_c.o [7]
.text ro code 0x801'aeac 0x58 memchr.o [10]
.text ro code 0x801'af04 0x18 ABImemcpy_small.o [10]
.text ro code 0x801'af1c 0x70 frexp.o [9]
.text ro code 0x801'af8c 0x34 DblCmpLe.o [9]
.text ro code 0x801'afc0 0x34 DblCmpGe.o [9]
.text ro code 0x801'aff4 0x13a ldexp.o [9]
.rodata const 0x801'b12e 0x1 xlocale_c.o [7]
.text ro code 0x801'b130 0x36 DblToS32.o [9]
.text ro code 0x801'b168 0x22 S32ToDbl.o [9]
.text ro code 0x801'b18c 0x25e DblAddSub.o [9]
.text ro code 0x801'b3ec 0x246 DblDiv.o [9]
.text ro code 0x801'b634 0x22 DblToU32.o [9]
.text ro code 0x801'b658 0x1c U32ToDbl.o [9]
.text ro code 0x801'b674 0x1aa DblMul.o [9]
.text ro code 0x801'b820 0x8 xlocale_c.o [7]
.text ro code 0x801'b828 0x106 I64DivMod_small.o [10]
.text ro code 0x801'b92e 0x6 abort.o [7]
.text ro code 0x801'b934 0x2 I64DivZer.o [10]
.text ro code 0x801'b938 0x14 exit.o [11]
.rodata const 0x801'b94c 0xe10 arm_common_tables.o [8]
"P1": 0x2'459b
.rodata const 0x800'018c 0x8000 arm_common_tables.o [9]
.rodata const 0x800'818c 0x4000 arm_common_tables.o [9]
.rodata const 0x800'c18c 0x4000 arm_common_tables.o [9]
.rodata const 0x801'018c 0x2000 arm_common_tables.o [9]
.rodata const 0x801'218c 0x2000 arm_common_tables.o [9]
.rodata const 0x801'418c 0x1f80 arm_common_tables.o [9]
.rodata const 0x801'610c 0x1dc0 arm_common_tables.o [9]
.rodata const 0x801'7ecc 0x1000 arm_common_tables.o [9]
.rodata const 0x801'8ecc 0x1000 arm_common_tables.o [9]
.text ro code 0x801'9ecc 0xeca xprintffull_nomb.o [8]
.text ro code 0x801'ad96 0x7e lz77_init_single.o [11]
.text ro code 0x801'ae14 0x16 strchr.o [11]
.text ro code 0x801'ae2a 0xa xsprout.o [8]
.text ro code 0x801'ae34 0x40 xfail_s.o [8]
.text ro code 0x801'ae74 0x36 strlen.o [11]
.rodata const 0x801'aeaa 0x2 xlocale_c.o [8]
.text ro code 0x801'aeac 0x58 memchr.o [11]
.text ro code 0x801'af04 0x18 ABImemcpy_small.o [11]
.text ro code 0x801'af1c 0x70 frexp.o [10]
.text ro code 0x801'af8c 0x34 DblCmpLe.o [10]
.text ro code 0x801'afc0 0x34 DblCmpGe.o [10]
.text ro code 0x801'aff4 0x13a ldexp.o [10]
.rodata const 0x801'b12e 0x1 xlocale_c.o [8]
.text ro code 0x801'b130 0x36 DblToS32.o [10]
.text ro code 0x801'b168 0x22 S32ToDbl.o [10]
.text ro code 0x801'b18c 0x25e DblAddSub.o [10]
.text ro code 0x801'b3ec 0x246 DblDiv.o [10]
.text ro code 0x801'b634 0x22 DblToU32.o [10]
.text ro code 0x801'b658 0x1c U32ToDbl.o [10]
.text ro code 0x801'b674 0x1aa DblMul.o [10]
.text ro code 0x801'b820 0x8 xlocale_c.o [8]
.text ro code 0x801'b828 0x106 I64DivMod_small.o [11]
.text ro code 0x801'b92e 0x6 abort.o [8]
.text ro code 0x801'b934 0x2 I64DivZer.o [11]
.text ro code 0x801'b938 0x14 exit.o [12]
.rodata const 0x801'b94c 0xe10 arm_common_tables.o [9]
.text ro code 0x801'c75c 0xa94 stm32l4xx_hal_uart.o [5]
.text ro code 0x801'd1f0 0x150 usart.o [3]
.text ro code 0x801'd340 0xc stm32l4xx_hal.o [5]
@ -147,24 +148,24 @@ initialize by copy { rw };
.text ro code 0x801'd60c 0x734 stm32l4xx_hal_rcc.o [5]
.text ro code 0x801'dd40 0x2 stm32l4xx_hal_uart.o [5]
.text ro code 0x801'dd44 0x482 main.o [3]
.text ro code 0x801'e1c6 0x14 memset.o [10]
.text ro code 0x801'e1c6 0x14 memset.o [11]
.text ro code 0x801'e1dc 0x37c stm32l4xx_hal_rcc_ex.o [5]
.text ro code 0x801'e558 0x1d4 stm32l4xx_hal_gpio.o [5]
.text ro code 0x801'e72c 0xc4 stm32l4xx_hal_cortex.o [5]
.text ro code 0x801'e7f0 0x44 stm32l4xx_hal.o [5]
.text ro code 0x801'e834 0xdc stm32l4xx_hal_pwr_ex.o [5]
.text ro code 0x801'e910 0x48 FltToDbl.o [9]
.text ro code 0x801'e958 0x68 DblToFlt.o [9]
.text ro code 0x801'e9c0 0x1d0 cos_sin32.o [9]
.text ro code 0x801'e910 0x48 FltToDbl.o [10]
.text ro code 0x801'e958 0x68 DblToFlt.o [10]
.text ro code 0x801'e9c0 0x1d0 cos_sin32.o [10]
.text ro code 0x801'eb90 0x28 stm32l4xx_hal.o [5]
.text ro code 0x801'ebb8 0x1ca stm32l4xx_hal_dac.o [5]
.text ro code 0x801'ed84 0x18a arm_rfft_fast_f32.o [8]
.text ro code 0x801'ef10 0x158 arm_cmplx_mag_f32.o [8]
.text ro code 0x801'f068 0xd2 arm_scale_f32.o [8]
.text ro code 0x801'f13c 0xb6 arm_max_f32.o [8]
.text ro code 0x801'f1f4 0xc0 arm_rms_f32.o [8]
.text ro code 0x801'ed84 0x18a arm_rfft_fast_f32.o [9]
.text ro code 0x801'ef10 0x158 arm_cmplx_mag_f32.o [9]
.text ro code 0x801'f068 0xd2 arm_scale_f32.o [9]
.text ro code 0x801'f13c 0xb6 arm_max_f32.o [9]
.text ro code 0x801'f1f4 0xc0 arm_rms_f32.o [9]
.text ro code 0x801'f2b4 0x1e stm32l4xx_hal.o [5]
.text ro code 0x801'f2d4 0x1bc arm_rfft_fast_init_f32.o [8]
.text ro code 0x801'f2d4 0x1bc arm_rfft_fast_init_f32.o [9]
.text ro code 0x801'f490 0x13a gpio.o [3]
.text ro code 0x801'f5cc 0x30 dma.o [3]
.text ro code 0x801'f5fc 0x16c adc.o [3]
@ -173,66 +174,66 @@ initialize by copy { rw };
.text ro code 0x801'f884 0x94 stm32l4xx_hal_adc_ex.o [5]
.text ro code 0x801'f918 0x7ca stm32l4xx_hal_adc.o [5]
.text ro code 0x802'00e4 0x114 stm32l4xx_hal_tim.o [5]
.text ro code 0x802'01f8 0x44 stm32l4xx_hal_pwr.o [5]
.text ro code 0x802'023c 0x410 frt_protocol.o [1]
.text ro code 0x802'064c 0x6 ABImemclr4.o [10]
.text ro code 0x802'0654 0x66 ABImemset.o [10]
.text ro code 0x802'06bc 0x704 arm_cfft_f32.o [8]
.text ro code 0x802'01f8 0x410 frt_protocol.o [1]
.text ro code 0x802'0608 0x44 stm32l4xx_hal_pwr.o [5]
.text ro code 0x802'064c 0x6 ABImemclr4.o [11]
.text ro code 0x802'0654 0x66 ABImemset.o [11]
.text ro code 0x802'06bc 0x704 arm_cfft_f32.o [9]
.text ro code 0x802'0dc0 0x30 stm32l4xx_hal_msp.o [3]
.text ro code 0x802'0df0 0x98 arm_cfft_init_f32.o [8]
.text ro code 0x802'0df0 0x98 arm_cfft_init_f32.o [9]
.text ro code 0x802'0e88 0x64 stm32l4xx_hal_tim_ex.o [5]
.text ro code 0x802'0eec 0x2 stm32l4xx_hal_adc.o [5]
.text ro code 0x802'0eee 0x2 stm32l4xx_hal_adc.o [5]
.text ro code 0x802'0ef0 0x90 inflash.o [1]
.text ro code 0x802'0f80 0x6 ABImemclr.o [10]
.text ro code 0x802'0f80 0x6 ABImemclr.o [11]
.text ro code 0x802'0f88 0xf4 uart_dev.o [1]
.text ro code 0x802'107c 0x32 ABImemset48.o [10]
.text ro code 0x802'10b0 0x5a2 arm_cfft_radix8_f32.o [8]
.text ro code 0x802'1652 0x44 arm_bitreversal2.o [8]
.text ro code 0x802'107c 0x32 ABImemset48.o [11]
.text ro code 0x802'10b0 0x5a2 arm_cfft_radix8_f32.o [9]
.text ro code 0x802'1652 0x44 arm_bitreversal2.o [9]
.text ro code 0x802'1698 0x170 stm32l4xx_hal_flash_ex.o [5]
.text ro code 0x802'1808 0x1c strrchr.o [7]
.text ro code 0x802'1808 0x1c strrchr.o [8]
.text ro code 0x802'1824 0x168 stm32l4xx_hal_flash.o [5]
.text ro code 0x802'198c 0x5e ring_queue.o [6]
.text ro code 0x802'19ec 0x34 vsprintf.o [7]
.rodata const 0x802'1a20 0x800 arm_common_tables.o [8]
.rodata const 0x802'2220 0x800 arm_common_tables.o [8]
.rodata const 0x802'2a20 0x400 arm_common_tables.o [8]
.rodata const 0x802'2e20 0x400 arm_common_tables.o [8]
.rodata const 0x802'3220 0x380 arm_common_tables.o [8]
.rodata const 0x802'35a0 0x370 arm_common_tables.o [8]
.rodata const 0x802'3910 0x200 arm_common_tables.o [8]
.rodata const 0x802'3b10 0x200 arm_common_tables.o [8]
.rodata const 0x802'3d10 0x1a0 arm_common_tables.o [8]
.rodata const 0x802'3eb0 0x100 arm_common_tables.o [8]
.rodata const 0x802'3fb0 0x100 arm_common_tables.o [8]
.text ro code 0x802'198c 0x5e ring_queue.o [7]
.text ro code 0x802'19ec 0x34 vsprintf.o [8]
.rodata const 0x802'1a20 0x800 arm_common_tables.o [9]
.rodata const 0x802'2220 0x800 arm_common_tables.o [9]
.rodata const 0x802'2a20 0x400 arm_common_tables.o [9]
.rodata const 0x802'2e20 0x400 arm_common_tables.o [9]
.rodata const 0x802'3220 0x380 arm_common_tables.o [9]
.rodata const 0x802'35a0 0x370 arm_common_tables.o [9]
.rodata const 0x802'3910 0x200 arm_common_tables.o [9]
.rodata const 0x802'3b10 0x200 arm_common_tables.o [9]
.rodata const 0x802'3d10 0x1a0 arm_common_tables.o [9]
.rodata const 0x802'3eb0 0x100 arm_common_tables.o [9]
.rodata const 0x802'3fb0 0x100 arm_common_tables.o [9]
.text ro code 0x802'40b0 0xb0 stm32l4xx_it.o [3]
.text ro code 0x802'4160 0x10 stm32l4xx_hal.o [5]
.rodata const 0x802'4170 0x80 arm_common_tables.o [8]
.rodata const 0x802'41f0 0x80 arm_common_tables.o [8]
.rodata const 0x802'4270 0x70 arm_common_tables.o [8]
.rodata const 0x802'4170 0x80 arm_common_tables.o [9]
.rodata const 0x802'41f0 0x80 arm_common_tables.o [9]
.rodata const 0x802'4270 0x70 arm_common_tables.o [9]
.rodata const 0x802'42e0 0x64 inflash.o [1]
.rodata const 0x802'4344 0x60 arm_common_tables.o [8]
.text ro code 0x802'43a4 0x38 zero_init3.o [10]
.rodata const 0x802'4344 0x60 arm_common_tables.o [9]
.text ro code 0x802'43a4 0x38 zero_init3.o [11]
.rodata const 0x802'43dc 0x30 system_stm32l4xx.o [2]
.rodata const 0x802'440c 0x28 arm_common_tables.o [8]
.text ro code 0x802'4434 0x28 data_init.o [10]
.text ro code 0x802'445c 0x22 fpinit_M.o [9]
.rodata const 0x802'440c 0x28 arm_common_tables.o [9]
.text ro code 0x802'4434 0x28 data_init.o [11]
.text ro code 0x802'445c 0x22 fpinit_M.o [10]
.iar.init_table const 0x802'4480 0x20 - Linker created -
.text ro code 0x802'44a0 0x20 system_stm32l4xx.o [2]
.text ro code 0x802'44c0 0x1e cmain.o [10]
.text ro code 0x802'44de 0x4 low_level_init.o [7]
.text ro code 0x802'44e2 0x4 exit.o [7]
.text ro code 0x802'44e8 0xa cexit.o [10]
.text ro code 0x802'44f4 0x1c cstartup_M.o [10]
.rodata const 0x802'4510 0x10 arm_const_structs.o [8]
.rodata const 0x802'4520 0x10 arm_const_structs.o [8]
.rodata const 0x802'4530 0x10 arm_const_structs.o [8]
.rodata const 0x802'4540 0x10 arm_const_structs.o [8]
.rodata const 0x802'4550 0x10 arm_const_structs.o [8]
.rodata const 0x802'4560 0x10 arm_const_structs.o [8]
.rodata const 0x802'4570 0x10 arm_const_structs.o [8]
.rodata const 0x802'4580 0x10 arm_const_structs.o [8]
.rodata const 0x802'4590 0x10 arm_const_structs.o [8]
.text ro code 0x802'44c0 0x1e cmain.o [11]
.text ro code 0x802'44de 0x4 low_level_init.o [8]
.text ro code 0x802'44e2 0x4 exit.o [8]
.text ro code 0x802'44e8 0xa cexit.o [11]
.text ro code 0x802'44f4 0x1c cstartup_M.o [11]
.rodata const 0x802'4510 0x10 arm_const_structs.o [9]
.rodata const 0x802'4520 0x10 arm_const_structs.o [9]
.rodata const 0x802'4530 0x10 arm_const_structs.o [9]
.rodata const 0x802'4540 0x10 arm_const_structs.o [9]
.rodata const 0x802'4550 0x10 arm_const_structs.o [9]
.rodata const 0x802'4560 0x10 arm_const_structs.o [9]
.rodata const 0x802'4570 0x10 arm_const_structs.o [9]
.rodata const 0x802'4580 0x10 arm_const_structs.o [9]
.rodata const 0x802'4590 0x10 arm_const_structs.o [9]
.text ro code 0x802'45a0 0x10 startup_stm32l431xx.o [4]
.rodata const 0x802'45b0 0x8 system_stm32l4xx.o [2]
.text ro code 0x802'45b8 0x4 startup_stm32l431xx.o [4]
@ -296,10 +297,10 @@ initialize by copy { rw };
.text ro code 0x802'46a0 0x4 startup_stm32l431xx.o [4]
.text ro code 0x802'46a4 0x4 startup_stm32l431xx.o [4]
.text ro code 0x802'46a8 0x4 startup_stm32l431xx.o [4]
.rodata const 0x802'46ac 0x0 zero_init3.o [10]
.rodata const 0x802'46ac 0x0 lz77_init_single.o [10]
Initializer bytes const 0x802'46ac 0x7c <for P2-1>
- 0x802'4728 0x2'459c
.rodata const 0x802'46ac 0x0 zero_init3.o [11]
.rodata const 0x802'46ac 0x0 lz77_init_single.o [11]
Initializer bytes const 0x802'46ac 0x7b <for P2-1>
- 0x802'4727 0x2'459b
"P2", part 1 of 3: 0x1a0
P2-1 0x2000'0000 0x1a0 <Init block>
@ -310,7 +311,7 @@ initialize by copy { rw };
.data inited 0x2000'0138 0xc stm32l4xx_hal.o [5]
.data inited 0x2000'0144 0x20 stm32l4xx_hal_flash.o [5]
.data inited 0x2000'0164 0x4 system_stm32l4xx.o [2]
.data inited 0x2000'0168 0x38 xlocale_c.o [7]
.data inited 0x2000'0168 0x38 xlocale_c.o [8]
- 0x2000'01a0 0x1a0
"P2", part 2 of 3: 0xf56c
@ -330,7 +331,7 @@ initialize by copy { rw };
.bss zero 0x2000'f6d0 0x18 frt_protocol.o [1]
.bss zero 0x2000'f6e8 0x14 dac.o [3]
.bss zero 0x2000'f6fc 0x8 main.o [3]
.bss zero 0x2000'f704 0x4 xfail_s.o [7]
.bss zero 0x2000'f704 0x4 xfail_s.o [8]
.bss zero 0x2000'f708 0x1 usart.o [3]
.bss zero 0x2000'f709 0x1 usart.o [3]
- 0x2000'f70a 0xf56a
@ -344,7 +345,7 @@ Unused ranges:
From To Size
---- -- ----
0x802'4728 0x803'ffff 0x1'b8d8
0x802'4727 0x803'ffff 0x1'b8d9
0x2000'f70c 0x2000'f70f 0x4
0x2000'fb10 0x2000'ffff 0x4f0
@ -360,8 +361,8 @@ Zero (__iar_zero_init3)
0x2000'01a0 0xf56a
Copy/lz77 (__iar_lz77_init_single3)
1 source range, total size 0x7c (29% of destination):
0x802'46ac 0x7c
1 source range, total size 0x7b (29% of destination):
0x802'46ac 0x7b
1 destination range, total size 0x1a0:
0x2000'0000 0x1a0
@ -378,11 +379,11 @@ command line/config:
Total:
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir: [1]
frt_protocol.o 1'040 90 380
frt_protocol.o 1'040 89 380
inflash.o 144 103 8
uart_dev.o 244 708
---------------------------------------------------
Total: 1'428 193 1'096
Total: 1'428 192 1'096
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\CMSIS_6603591812247902717.dir: [2]
system_stm32l4xx.o 32 57 4
@ -428,12 +429,16 @@ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\STM32
---------------------------------------------------
Total: 10'974 13 44
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir: [6]
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir: [6]
---------------------------------------------------
Total:
E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir: [7]
ring_queue.o 94
---------------------------------------------------
Total: 94
dl7M_tlf.a: [7]
dl7M_tlf.a: [8]
abort.o 6
exit.o 4
low_level_init.o 4
@ -446,7 +451,7 @@ dl7M_tlf.a: [7]
---------------------------------------------------
Total: 3'962 20 60
iar_cortexM4lf_math.a: [8]
iar_cortexM4lf_math.a: [9]
arm_bitreversal2.o 68
arm_cfft_f32.o 1'796
arm_cfft_init_f32.o 152
@ -462,7 +467,7 @@ iar_cortexM4lf_math.a: [8]
---------------------------------------------------
Total: 5'224 119'912
m7M_tls.a: [9]
m7M_tls.a: [10]
DblAddSub.o 606
DblCmpGe.o 52
DblCmpLe.o 52
@ -481,7 +486,7 @@ m7M_tls.a: [9]
---------------------------------------------------
Total: 2'968
rt7M_tl.a: [10]
rt7M_tl.a: [11]
ABImemclr.o 6
ABImemclr4.o 6
ABImemcpy_small.o 24
@ -502,7 +507,7 @@ rt7M_tl.a: [10]
---------------------------------------------------
Total: 926
shb_l.a: [11]
shb_l.a: [12]
exit.o 20
---------------------------------------------------
Total: 20
@ -510,7 +515,7 @@ shb_l.a: [11]
Gaps 51 2
Linker created 32 1'024
-------------------------------------------------------
Grand Total: 29'059 120'229 64'266
Grand Total: 29'059 120'228 64'266
*******************************************************************************
@ -521,7 +526,7 @@ Entry Address Size Type Object
----- ------- ---- ---- ------
.iar.init_table$$Base 0x802'4480 -- Gb - Linker created -
.iar.init_table$$Limit 0x802'44a0 -- Gb - Linker created -
?main 0x802'44c1 Code Gb cmain.o [10]
?main 0x802'44c1 Code Gb cmain.o [11]
ADC1_IRQHandler 0x802'45fd Code Wk startup_stm32l431xx.o [4]
ADC_DMAConvCplt 0x802'0059 0x6c Code Gb stm32l4xx_hal_adc.o [5]
ADC_DMAError 0x802'00cd 0x16 Code Gb stm32l4xx_hal_adc.o [5]
@ -536,7 +541,7 @@ CAN1_RX1_IRQHandler 0x802'4609 Code Wk startup_stm32l431xx.o [4]
CAN1_SCE_IRQHandler 0x802'460d Code Wk startup_stm32l431xx.o [4]
CAN1_TX_IRQHandler 0x802'4601 Code Wk startup_stm32l431xx.o [4]
COMP_IRQHandler 0x802'4671 Code Wk startup_stm32l431xx.o [4]
CRC16 0x802'025b 0x3a Code Gb frt_protocol.o [1]
CRC16 0x802'0217 0x3a Code Gb frt_protocol.o [1]
CRS_IRQHandler 0x802'46a9 Code Wk startup_stm32l431xx.o [4]
CSTACK$$Base 0x2000'f710 -- Gb - Linker created -
CSTACK$$Limit 0x2000'fb10 -- Gb - Linker created -
@ -589,24 +594,24 @@ FLASH_Program_Fast 0x802'1945 0x26 Code Lc stm32l4xx_hal_flash.o [5]
FLASH_WaitForLastOperation
0x802'18e3 0x4a Code Gb stm32l4xx_hal_flash.o [5]
FPU_IRQHandler 0x802'46a5 Code Wk startup_stm32l431xx.o [4]
FRT_MsgHandler 0x802'050b 0x50 Code Gb frt_protocol.o [1]
FRT_MsgHandler 0x802'04c7 0x50 Code Gb frt_protocol.o [1]
FRT_MsgProc_ReadRegister
0x802'038d 0xb8 Code Lc frt_protocol.o [1]
0x802'0349 0xb8 Code Lc frt_protocol.o [1]
FRT_MsgProc_ReadRegister::reg_value_buff
0x2000'0010 0xc8 Data Lc frt_protocol.o [1]
FRT_MsgProc_WriteRegister
0x802'0445 0xc6 Code Lc frt_protocol.o [1]
FRT_ReadRegBat_Charge 0x802'02cf 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegBat_V 0x802'02c5 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegCurrent 0x802'0295 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegMACINFO 0x802'02d9 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegMaxCurrent 0x802'029f 0x8 Code Lc frt_protocol.o [1]
FRT_ReadRegPulseCount 0x802'02bb 0xa Code Lc frt_protocol.o [1]
FRT_WriteRegDeviceAddr 0x802'02e3 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegMaxCurrent 0x802'030d 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegNetId 0x802'02f1 0xc Code Lc frt_protocol.o [1]
FRT_WriteRegPulseCount 0x802'031b 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegReboot 0x802'0335 0xe Code Lc frt_protocol.o [1]
0x802'0401 0xc6 Code Lc frt_protocol.o [1]
FRT_ReadRegBat_Charge 0x802'028b 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegBat_V 0x802'0281 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegCurrent 0x802'0251 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegMACINFO 0x802'0295 0xa Code Lc frt_protocol.o [1]
FRT_ReadRegMaxCurrent 0x802'025b 0x8 Code Lc frt_protocol.o [1]
FRT_ReadRegPulseCount 0x802'0277 0xa Code Lc frt_protocol.o [1]
FRT_WriteRegDeviceAddr 0x802'029f 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegMaxCurrent 0x802'02c9 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegNetId 0x802'02ad 0xc Code Lc frt_protocol.o [1]
FRT_WriteRegPulseCount 0x802'02d7 0xe Code Lc frt_protocol.o [1]
FRT_WriteRegReboot 0x802'02f1 0xe Code Lc frt_protocol.o [1]
HAL_ADCEx_Calibration_Start
0x801'f885 0x8a Code Gb stm32l4xx_hal_adc_ex.o [5]
HAL_ADC_ConfigChannel 0x801'fb99 0x2f6 Code Gb stm32l4xx_hal_adc.o [5]
@ -654,7 +659,7 @@ HAL_PWREx_EnableLowPowerRunMode
0x801'e8bb 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5]
HAL_PWREx_GetVoltageRange
0x801'e835 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5]
HAL_PWR_EnterSLEEPMode 0x802'01f9 0x3a Code Gb stm32l4xx_hal_pwr.o [5]
HAL_PWR_EnterSLEEPMode 0x802'0609 0x3a Code Gb stm32l4xx_hal_pwr.o [5]
HAL_RCCEx_PeriphCLKConfig
0x801'e1dd 0x252 Code Gb stm32l4xx_hal_rcc_ex.o [5]
HAL_RCC_ClockConfig 0x801'daa1 0xfa Code Gb stm32l4xx_hal_rcc.o [5]
@ -692,7 +697,7 @@ I2C3_ER_IRQHandler 0x802'4691 Code Wk startup_stm32l431xx.o [4]
I2C3_EV_IRQHandler 0x802'468d Code Wk startup_stm32l431xx.o [4]
InFlash_Erase_Pages 0x802'0ef1 0x36 Code Gb inflash.o [1]
InFlash_Write 0x802'0f27 0x2a Code Gb inflash.o [1]
InRingQueue 0x802'198d 0x2e Code Gb ring_queue.o [6]
InRingQueue 0x802'198d 0x2e Code Gb ring_queue.o [7]
LL_ADC_GetOffsetChannel
0x801'f919 0xe Code Lc stm32l4xx_hal_adc.o [5]
LL_ADC_REG_IsTriggerSourceSWStart
@ -714,7 +719,7 @@ MX_USART3_UART_Init 0x801'd201 0x10 Code Gb usart.o [3]
Max_rms_10uA 0x2000'11a2 0x2 Data Gb main.o [3]
MemManage_Handler 0x802'40b5 0x2 Code Gb stm32l4xx_it.o [3]
NMI_Handler 0x802'40b1 0x2 Code Gb stm32l4xx_it.o [3]
OutRingQueue 0x802'19bb 0x22 Code Gb ring_queue.o [6]
OutRingQueue 0x802'19bb 0x22 Code Gb ring_queue.o [7]
PVD_PVM_IRQHandler 0x802'45bd Code Wk startup_stm32l431xx.o [4]
PendSV_Handler 0x802'40bf 0x2 Code Gb stm32l4xx_it.o [3]
Pulse_Count 0x2000'11a4 0x2 Data Gb main.o [3]
@ -771,129 +776,129 @@ UsageFault_Handler 0x802'40b9 0x2 Code Gb stm32l4xx_it.o [3]
V50hz_mA 0x2000'51ac 0x4 Data Gb main.o [3]
Vdc 0x2000'51a8 0x4 Data Gb main.o [3]
WWDG_IRQHandler 0x802'45b9 Code Wk startup_stm32l431xx.o [4]
_LC 0x801'9ecd 0x6 Code Lc xprintffull_nomb.o [7]
_LitobFullNoMb 0x801'abb5 0x114 Code Lc xprintffull_nomb.o [7]
_Locale_lconv 0x2000'0168 0x38 Data Lc xlocale_c.o [7]
_PrintfFullNoMb 0x801'9ed3 0xcb2 Code Gb xprintffull_nomb.o [7]
_PutcharsFullNoMb 0x801'ad21 0x2e Code Lc xprintffull_nomb.o [7]
_SProut 0x801'ae2b 0xa Code Gb xsprout.o [7]
_LC 0x801'9ecd 0x6 Code Lc xprintffull_nomb.o [8]
_LitobFullNoMb 0x801'abb5 0x114 Code Lc xprintffull_nomb.o [8]
_Locale_lconv 0x2000'0168 0x38 Data Lc xlocale_c.o [8]
_PrintfFullNoMb 0x801'9ed3 0xcb2 Code Gb xprintffull_nomb.o [8]
_PutcharsFullNoMb 0x801'ad21 0x2e Code Lc xprintffull_nomb.o [8]
_SProut 0x801'ae2b 0xa Code Gb xsprout.o [8]
__NVIC_SetPriority 0x801'e72d 0x1a Code Lc stm32l4xx_hal_cortex.o [5]
__NVIC_SystemReset 0x802'023d 0x1e Code Lc frt_protocol.o [1]
__aeabi_cdcmple 0x801'af8d Code Gb DblCmpLe.o [9]
__aeabi_cdrcmple 0x801'afc1 Code Gb DblCmpGe.o [9]
__aeabi_d2f 0x801'e959 Code Gb DblToFlt.o [9]
__aeabi_d2iz 0x801'b131 Code Gb DblToS32.o [9]
__aeabi_d2uiz 0x801'b635 Code Gb DblToU32.o [9]
__aeabi_dadd 0x801'b18d Code Gb DblAddSub.o [9]
__aeabi_ddiv 0x801'b3ed Code Gb DblDiv.o [9]
__aeabi_dmul 0x801'b675 Code Gb DblMul.o [9]
__aeabi_dsub 0x801'b309 Code Gb DblAddSub.o [9]
__aeabi_f2d 0x801'e911 Code Gb FltToDbl.o [9]
__aeabi_i2d 0x801'b169 Code Gb S32ToDbl.o [9]
__aeabi_ldiv0 0x801'b935 Code Gb I64DivZer.o [10]
__aeabi_memclr 0x802'0f81 Code Gb ABImemclr.o [10]
__aeabi_memclr4 0x802'064d Code Gb ABImemclr4.o [10]
__aeabi_memset 0x802'0655 Code Gb ABImemset.o [10]
__aeabi_ui2d 0x801'b659 Code Gb U32ToDbl.o [9]
__cmain 0x802'44c1 Code Gb cmain.o [10]
__exit 0x801'b939 0x14 Code Gb exit.o [11]
__iar_Fail_s 0x801'ae35 0x1c Code Gb xfail_s.o [7]
__iar_Memchr 0x801'aead Code Gb memchr.o [10]
__iar_Memset 0x802'0655 Code Gb ABImemset.o [10]
__iar_Memset4_word 0x802'107d Code Gb ABImemset48.o [10]
__iar_Memset8_word 0x802'107d Code Gb ABImemset48.o [10]
__iar_Memset_word 0x802'065d Code Gb ABImemset.o [10]
__iar_Sin32 0x801'e9c1 0x18c Code Lc cos_sin32.o [9]
__iar_Strchr 0x801'ae15 Code Gb strchr.o [10]
__iar_cos32 0x801'eb8d 0x4 Code Gb cos_sin32.o [9]
__iar_cos_medium32 0x801'eb8d 0x4 Code Gb cos_sin32.o [9]
__iar_cos_mediumf 0x801'eb8d 0x4 Code Gb cos_sin32.o [9]
__iar_data_init3 0x802'4435 0x28 Code Gb data_init.o [10]
__iar_frexp 0x801'af29 Code Gb frexp.o [9]
__iar_frexpl 0x801'af29 Code Gb frexp.o [9]
__iar_init_vfp 0x802'445d Code Gb fpinit_M.o [9]
__iar_ldexp64 0x801'aff5 Code Gb ldexp.o [9]
__NVIC_SystemReset 0x802'01f9 0x1e Code Lc frt_protocol.o [1]
__aeabi_cdcmple 0x801'af8d Code Gb DblCmpLe.o [10]
__aeabi_cdrcmple 0x801'afc1 Code Gb DblCmpGe.o [10]
__aeabi_d2f 0x801'e959 Code Gb DblToFlt.o [10]
__aeabi_d2iz 0x801'b131 Code Gb DblToS32.o [10]
__aeabi_d2uiz 0x801'b635 Code Gb DblToU32.o [10]
__aeabi_dadd 0x801'b18d Code Gb DblAddSub.o [10]
__aeabi_ddiv 0x801'b3ed Code Gb DblDiv.o [10]
__aeabi_dmul 0x801'b675 Code Gb DblMul.o [10]
__aeabi_dsub 0x801'b309 Code Gb DblAddSub.o [10]
__aeabi_f2d 0x801'e911 Code Gb FltToDbl.o [10]
__aeabi_i2d 0x801'b169 Code Gb S32ToDbl.o [10]
__aeabi_ldiv0 0x801'b935 Code Gb I64DivZer.o [11]
__aeabi_memclr 0x802'0f81 Code Gb ABImemclr.o [11]
__aeabi_memclr4 0x802'064d Code Gb ABImemclr4.o [11]
__aeabi_memset 0x802'0655 Code Gb ABImemset.o [11]
__aeabi_ui2d 0x801'b659 Code Gb U32ToDbl.o [10]
__cmain 0x802'44c1 Code Gb cmain.o [11]
__exit 0x801'b939 0x14 Code Gb exit.o [12]
__iar_Fail_s 0x801'ae35 0x1c Code Gb xfail_s.o [8]
__iar_Memchr 0x801'aead Code Gb memchr.o [11]
__iar_Memset 0x802'0655 Code Gb ABImemset.o [11]
__iar_Memset4_word 0x802'107d Code Gb ABImemset48.o [11]
__iar_Memset8_word 0x802'107d Code Gb ABImemset48.o [11]
__iar_Memset_word 0x802'065d Code Gb ABImemset.o [11]
__iar_Sin32 0x801'e9c1 0x18c Code Lc cos_sin32.o [10]
__iar_Strchr 0x801'ae15 Code Gb strchr.o [11]
__iar_cos32 0x801'eb8d 0x4 Code Gb cos_sin32.o [10]
__iar_cos_medium32 0x801'eb8d 0x4 Code Gb cos_sin32.o [10]
__iar_cos_mediumf 0x801'eb8d 0x4 Code Gb cos_sin32.o [10]
__iar_data_init3 0x802'4435 0x28 Code Gb data_init.o [11]
__iar_frexp 0x801'af29 Code Gb frexp.o [10]
__iar_frexpl 0x801'af29 Code Gb frexp.o [10]
__iar_init_vfp 0x802'445d Code Gb fpinit_M.o [10]
__iar_ldexp64 0x801'aff5 Code Gb ldexp.o [10]
__iar_lz77_init_single3
0x801'ad97 0x7e Code Gb lz77_init_single.o [10]
__iar_program_start 0x802'44f5 Code Gb cstartup_M.o [10]
__iar_scalbln64 0x801'aff5 Code Gb ldexp.o [9]
__iar_scalbn64 0x801'aff5 Code Gb ldexp.o [9]
__iar_small_Memcpy 0x801'af09 Code Gb ABImemcpy_small.o [10]
__iar_small_memcpy 0x801'af05 Code Gb ABImemcpy_small.o [10]
__iar_small_memcpy4 0x801'af05 Code Gb ABImemcpy_small.o [10]
__iar_small_memcpy8 0x801'af05 Code Gb ABImemcpy_small.o [10]
__iar_small_uldivmod 0x801'b829 Code Gb I64DivMod_small.o [10]
0x801'ad97 0x7e Code Gb lz77_init_single.o [11]
__iar_program_start 0x802'44f5 Code Gb cstartup_M.o [11]
__iar_scalbln64 0x801'aff5 Code Gb ldexp.o [10]
__iar_scalbn64 0x801'aff5 Code Gb ldexp.o [10]
__iar_small_Memcpy 0x801'af09 Code Gb ABImemcpy_small.o [11]
__iar_small_memcpy 0x801'af05 Code Gb ABImemcpy_small.o [11]
__iar_small_memcpy4 0x801'af05 Code Gb ABImemcpy_small.o [11]
__iar_small_memcpy8 0x801'af05 Code Gb ABImemcpy_small.o [11]
__iar_small_uldivmod 0x801'b829 Code Gb I64DivMod_small.o [11]
__iar_softfp___iar_frexp64
0x801'af1d Code Gb frexp.o [9]
__iar_softfp_frexp 0x801'af1d Code Gb frexp.o [9]
__iar_softfp_frexpl 0x801'af1d Code Gb frexp.o [9]
__iar_zero_init3 0x802'43a5 0x38 Code Gb zero_init3.o [10]
__low_level_init 0x802'44df 0x4 Code Gb low_level_init.o [7]
0x801'af1d Code Gb frexp.o [10]
__iar_softfp_frexp 0x801'af1d Code Gb frexp.o [10]
__iar_softfp_frexpl 0x801'af1d Code Gb frexp.o [10]
__iar_zero_init3 0x802'43a5 0x38 Code Gb zero_init3.o [11]
__low_level_init 0x802'44df 0x4 Code Gb low_level_init.o [8]
__vector_table 0x800'0000 Data Gb startup_stm32l431xx.o [4]
_call_main 0x802'44cd Code Gb cmain.o [10]
_exit 0x802'44e9 Code Gb cexit.o [10]
abort 0x801'b92f 0x6 Code Gb abort.o [7]
_call_main 0x802'44cd Code Gb cmain.o [11]
_exit 0x802'44e9 Code Gb cexit.o [11]
abort 0x801'b92f 0x6 Code Gb abort.o [8]
adc_bat_data 0x2000'd1d8 0x2000 Data Gb main.o [3]
adc_value 0x2000'71c0 0x4000 Data Gb main.o [3]
armBitRevIndexTable1024
0x801'b94c 0xe10 Data Gb arm_common_tables.o [8]
armBitRevIndexTable128 0x802'3d10 0x1a0 Data Gb arm_common_tables.o [8]
armBitRevIndexTable16 0x802'440c 0x28 Data Gb arm_common_tables.o [8]
0x801'b94c 0xe10 Data Gb arm_common_tables.o [9]
armBitRevIndexTable128 0x802'3d10 0x1a0 Data Gb arm_common_tables.o [9]
armBitRevIndexTable16 0x802'440c 0x28 Data Gb arm_common_tables.o [9]
armBitRevIndexTable2048
0x801'610c 0x1dc0 Data Gb arm_common_tables.o [8]
armBitRevIndexTable256 0x802'35a0 0x370 Data Gb arm_common_tables.o [8]
armBitRevIndexTable32 0x802'4344 0x60 Data Gb arm_common_tables.o [8]
0x801'610c 0x1dc0 Data Gb arm_common_tables.o [9]
armBitRevIndexTable256 0x802'35a0 0x370 Data Gb arm_common_tables.o [9]
armBitRevIndexTable32 0x802'4344 0x60 Data Gb arm_common_tables.o [9]
armBitRevIndexTable4096
0x801'418c 0x1f80 Data Gb arm_common_tables.o [8]
armBitRevIndexTable512 0x802'3220 0x380 Data Gb arm_common_tables.o [8]
armBitRevIndexTable64 0x802'4270 0x70 Data Gb arm_common_tables.o [8]
arm_bitreversal_32 0x802'1653 0x44 Code Gb arm_bitreversal2.o [8]
arm_cfft_f32 0x802'0c3d 0x184 Code Gb arm_cfft_f32.o [8]
arm_cfft_init_f32 0x802'0df1 0x98 Code Gb arm_cfft_init_f32.o [8]
arm_cfft_radix8by2_f32 0x802'06bd 0x16a Code Gb arm_cfft_f32.o [8]
arm_cfft_radix8by4_f32 0x802'0829 0x412 Code Gb arm_cfft_f32.o [8]
0x801'418c 0x1f80 Data Gb arm_common_tables.o [9]
armBitRevIndexTable512 0x802'3220 0x380 Data Gb arm_common_tables.o [9]
armBitRevIndexTable64 0x802'4270 0x70 Data Gb arm_common_tables.o [9]
arm_bitreversal_32 0x802'1653 0x44 Code Gb arm_bitreversal2.o [9]
arm_cfft_f32 0x802'0c3d 0x184 Code Gb arm_cfft_f32.o [9]
arm_cfft_init_f32 0x802'0df1 0x98 Code Gb arm_cfft_init_f32.o [9]
arm_cfft_radix8by2_f32 0x802'06bd 0x16a Code Gb arm_cfft_f32.o [9]
arm_cfft_radix8by4_f32 0x802'0829 0x412 Code Gb arm_cfft_f32.o [9]
arm_cfft_sR_f32_len1024
0x802'4570 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len128 0x802'4540 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len16 0x802'4510 0x10 Data Gb arm_const_structs.o [8]
0x802'4570 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len128 0x802'4540 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len16 0x802'4510 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len2048
0x802'4580 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len256 0x802'4550 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len32 0x802'4520 0x10 Data Gb arm_const_structs.o [8]
0x802'4580 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len256 0x802'4550 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len32 0x802'4520 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len4096
0x802'4590 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len512 0x802'4560 0x10 Data Gb arm_const_structs.o [8]
arm_cfft_sR_f32_len64 0x802'4530 0x10 Data Gb arm_const_structs.o [8]
arm_cmplx_mag_f32 0x801'ef11 0x158 Code Gb arm_cmplx_mag_f32.o [8]
0x802'4590 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len512 0x802'4560 0x10 Data Gb arm_const_structs.o [9]
arm_cfft_sR_f32_len64 0x802'4530 0x10 Data Gb arm_const_structs.o [9]
arm_cmplx_mag_f32 0x801'ef11 0x158 Code Gb arm_cmplx_mag_f32.o [9]
arm_hanning_f32 0x801'ddc1 0x5c Code Gb main.o [3]
arm_max_f32 0x801'f13d 0xb6 Code Gb arm_max_f32.o [8]
arm_max_f32 0x801'f13d 0xb6 Code Gb arm_max_f32.o [9]
arm_radix8_butterfly_f32
0x802'10b1 0x5a2 Code Gb arm_cfft_radix8_f32.o [8]
0x802'10b1 0x5a2 Code Gb arm_cfft_radix8_f32.o [9]
arm_rfft_1024_fast_init_f32
0x801'f385 0x26 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f385 0x26 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_128_fast_init_f32
0x801'f319 0x22 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f319 0x22 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_2048_fast_init_f32
0x801'f3ab 0x26 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f3ab 0x26 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_256_fast_init_f32
0x801'f33b 0x24 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f33b 0x24 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_32_fast_init_f32
0x801'f2d5 0x22 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f2d5 0x22 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_4096_fast_init_f32
0x801'f3d1 0x26 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f3d1 0x26 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_512_fast_init_f32
0x801'f35f 0x26 Code Lc arm_rfft_fast_init_f32.o [8]
0x801'f35f 0x26 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_64_fast_init_f32
0x801'f2f7 0x22 Code Lc arm_rfft_fast_init_f32.o [8]
arm_rfft_fast_f32 0x801'eed5 0x3a Code Gb arm_rfft_fast_f32.o [8]
arm_rfft_fast_init_f32 0x801'f3f7 0x5a Code Gb arm_rfft_fast_init_f32.o [8]
arm_rms_f32 0x801'f1f5 0xc0 Code Gb arm_rms_f32.o [8]
arm_scale_f32 0x801'f069 0xd2 Code Gb arm_scale_f32.o [8]
0x801'f2f7 0x22 Code Lc arm_rfft_fast_init_f32.o [9]
arm_rfft_fast_f32 0x801'eed5 0x3a Code Gb arm_rfft_fast_f32.o [9]
arm_rfft_fast_init_f32 0x801'f3f7 0x5a Code Gb arm_rfft_fast_init_f32.o [9]
arm_rms_f32 0x801'f1f5 0xc0 Code Gb arm_rms_f32.o [9]
arm_scale_f32 0x801'f069 0xd2 Code Gb arm_scale_f32.o [9]
bat_v 0x2000'f700 0x4 Data Gb main.o [3]
bat_v_get 0x801'dd45 0x7a Code Gb main.o [3]
batteryVoltage_mV 0x2000'f6fc 0x2 Data Gb main.o [3]
cosf 0x801'eb8d 0x4 Code Gb cos_sin32.o [9]
exit 0x802'44e3 0x4 Code Gb exit.o [7]
cosf 0x801'eb8d 0x4 Code Gb cos_sin32.o [10]
exit 0x802'44e3 0x4 Code Gb exit.o [8]
fft_mag 0x2000'01a0 0x1000 Data Gb main.o [3]
fft_outdata 0x2000'51bc 0x2000 Data Gb main.o [3]
fft_rawdata 0x2000'31a8 0x2000 Data Gb main.o [3]
@ -910,20 +915,20 @@ hdma_adc1 0x2000'f654 0x48 Data Gb adc.o [3]
htim6 0x2000'f608 0x4c Data Gb tim.o [3]
huart1 0x2000'f438 0x84 Data Gb usart.o [3]
huart3 0x2000'f4bc 0x84 Data Gb usart.o [3]
ldexp 0x801'aff5 Code Gb ldexp.o [9]
ldexpl 0x801'aff5 Code Gb ldexp.o [9]
localeconv 0x801'b821 0x4 Code Gb xlocale_c.o [7]
ldexp 0x801'aff5 Code Gb ldexp.o [10]
ldexpl 0x801'aff5 Code Gb ldexp.o [10]
localeconv 0x801'b821 0x4 Code Gb xlocale_c.o [8]
lora_in_buff 0x2000'f30c 0x12c Data Lc uart_dev.o [1]
lora_out_buff 0x2000'f5a4 0x64 Data Gb uart_dev.o [1]
main 0x801'e04d 0xa8 Code Gb main.o [3]
main_freq 0x2000'51b0 0x4 Data Gb main.o [3]
max_val 0x2000'71bc 0x4 Data Gb main.o [3]
memchr 0x801'aead Code Gb memchr.o [10]
memset 0x801'e1c7 0x14 Code Gb memset.o [10]
merge_rfft_f32 0x801'ee31 0xa4 Code Gb arm_rfft_fast_f32.o [8]
memchr 0x801'aead Code Gb memchr.o [11]
memset 0x801'e1c7 0x14 Code Gb memset.o [11]
merge_rfft_f32 0x801'ee31 0xa4 Code Gb arm_rfft_fast_f32.o [9]
pFlash 0x2000'0144 0x20 Data Gb stm32l4xx_hal_flash.o [5]
read_and_process_uart_data
0x802'055b 0x9a Code Gb frt_protocol.o [1]
0x802'0517 0x9a Code Gb frt_protocol.o [1]
result_data 0x2000'11a8 0x2000 Data Gb main.o [3]
rms_10uA 0x2000'11a0 0x2 Data Gb main.o [3]
rms_mA 0x2000'51b8 0x4 Data Gb main.o [3]
@ -932,37 +937,37 @@ rs485_buff 0x2000'f69c 0x34 Data Lc frt_protocol.o [1]
rx_uart1_buf 0x2000'f708 0x1 Data Gb usart.o [3]
rx_uart3_buf 0x2000'f709 0x1 Data Gb usart.o [3]
save_config_info 0x802'0f51 0x4 Code Gb inflash.o [1]
scalbln 0x801'aff5 Code Gb ldexp.o [9]
scalblnl 0x801'aff5 Code Gb ldexp.o [9]
scalbn 0x801'aff5 Code Gb ldexp.o [9]
scalbnl 0x801'aff5 Code Gb ldexp.o [9]
scale 0x801'acc9 0x46 Code Lc xprintffull_nomb.o [7]
sec_hand 0x2000'f704 0x4 Data Lc xfail_s.o [7]
send_uart_pack 0x802'0343 0x48 Code Lc frt_protocol.o [1]
stage_rfft_f32 0x801'ed85 0xac Code Gb arm_rfft_fast_f32.o [8]
strchr 0x801'ae15 Code Gb strchr.o [10]
strlen 0x801'ae75 Code Gb strlen.o [10]
strrchr 0x802'1809 0x1c Code Gb strrchr.o [7]
scalbln 0x801'aff5 Code Gb ldexp.o [10]
scalblnl 0x801'aff5 Code Gb ldexp.o [10]
scalbn 0x801'aff5 Code Gb ldexp.o [10]
scalbnl 0x801'aff5 Code Gb ldexp.o [10]
scale 0x801'acc9 0x46 Code Lc xprintffull_nomb.o [8]
sec_hand 0x2000'f704 0x4 Data Lc xfail_s.o [8]
send_uart_pack 0x802'02ff 0x48 Code Lc frt_protocol.o [1]
stage_rfft_f32 0x801'ed85 0xac Code Gb arm_rfft_fast_f32.o [9]
strchr 0x801'ae15 Code Gb strchr.o [11]
strlen 0x801'ae75 Code Gb strlen.o [11]
strrchr 0x802'1809 0x1c Code Gb strrchr.o [8]
term_in_buff 0x2000'f1dc 0xc8 Data Lc uart_dev.o [1]
term_out_buff 0x2000'f2a4 0x64 Data Lc uart_dev.o [1]
term_printf 0x802'1043 0x2c Code Gb uart_dev.o [1]
twiddleCoef_1024 0x801'018c 0x2000 Data Gb arm_common_tables.o [8]
twiddleCoef_128 0x802'2a20 0x400 Data Gb arm_common_tables.o [8]
twiddleCoef_16 0x802'4170 0x80 Data Gb arm_common_tables.o [8]
twiddleCoef_2048 0x800'818c 0x4000 Data Gb arm_common_tables.o [8]
twiddleCoef_256 0x802'1a20 0x800 Data Gb arm_common_tables.o [8]
twiddleCoef_32 0x802'3eb0 0x100 Data Gb arm_common_tables.o [8]
twiddleCoef_4096 0x800'018c 0x8000 Data Gb arm_common_tables.o [8]
twiddleCoef_512 0x801'7ecc 0x1000 Data Gb arm_common_tables.o [8]
twiddleCoef_64 0x802'3910 0x200 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_1024 0x801'8ecc 0x1000 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_128 0x802'3b10 0x200 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_2048 0x801'218c 0x2000 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_256 0x802'2e20 0x400 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_32 0x802'41f0 0x80 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_4096 0x800'c18c 0x4000 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_512 0x802'2220 0x800 Data Gb arm_common_tables.o [8]
twiddleCoef_rfft_64 0x802'3fb0 0x100 Data Gb arm_common_tables.o [8]
twiddleCoef_1024 0x801'018c 0x2000 Data Gb arm_common_tables.o [9]
twiddleCoef_128 0x802'2a20 0x400 Data Gb arm_common_tables.o [9]
twiddleCoef_16 0x802'4170 0x80 Data Gb arm_common_tables.o [9]
twiddleCoef_2048 0x800'818c 0x4000 Data Gb arm_common_tables.o [9]
twiddleCoef_256 0x802'1a20 0x800 Data Gb arm_common_tables.o [9]
twiddleCoef_32 0x802'3eb0 0x100 Data Gb arm_common_tables.o [9]
twiddleCoef_4096 0x800'018c 0x8000 Data Gb arm_common_tables.o [9]
twiddleCoef_512 0x801'7ecc 0x1000 Data Gb arm_common_tables.o [9]
twiddleCoef_64 0x802'3910 0x200 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_1024 0x801'8ecc 0x1000 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_128 0x802'3b10 0x200 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_2048 0x801'218c 0x2000 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_256 0x802'2e20 0x400 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_32 0x802'41f0 0x80 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_4096 0x800'c18c 0x4000 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_512 0x802'2220 0x800 Data Gb arm_common_tables.o [9]
twiddleCoef_rfft_64 0x802'3fb0 0x100 Data Gb arm_common_tables.o [9]
uart_dev_char_present 0x802'1007 0x1a Code Gb uart_dev.o [1]
uart_dev_in_char 0x802'1021 0x1c Code Gb uart_dev.o [1]
uart_dev_write 0x802'0fe9 0x1a Code Gb uart_dev.o [1]
@ -971,7 +976,7 @@ uart_sendstr 0x802'0fbf 0x2a Code Gb uart_dev.o [1]
uwTick 0x2000'013c 0x4 Data Gb stm32l4xx_hal.o [5]
uwTickFreq 0x2000'0138 0x1 Data Gb stm32l4xx_hal.o [5]
uwTickPrio 0x2000'0140 0x4 Data Gb stm32l4xx_hal.o [5]
vsprintf 0x802'19ed 0x34 Code Gb vsprintf.o [7]
vsprintf 0x802'19ed 0x34 Code Gb vsprintf.o [8]
window_data 0x2000'b1c0 0x2000 Data Gb main.o [3]
@ -980,15 +985,16 @@ window_data 0x2000'b1c0 0x2000 Data Gb main.o [3]
[3] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir
[4] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\EWARM_18443280873093131863.dir
[5] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\STM32L4xx_HAL_Driver_2987639196379523013.dir
[6] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir
[7] = dl7M_tlf.a
[8] = iar_cortexM4lf_math.a
[9] = m7M_tls.a
[10] = rt7M_tl.a
[11] = shb_l.a
[6] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir
[7] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir
[8] = dl7M_tlf.a
[9] = iar_cortexM4lf_math.a
[10] = m7M_tls.a
[11] = rt7M_tl.a
[12] = shb_l.a
29'059 bytes of readonly code memory
120'229 bytes of readonly data memory
120'228 bytes of readonly data memory
64'266 bytes of readwrite data memory
Errors: none

File diff suppressed because one or more lines are too long

View File

@ -3,10 +3,10 @@
<StLinkDriver>
<stlinkserialNo>131A10002B135937334D4E00</stlinkserialNo>
<stlinkfoundProbes />
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
<CStepIntDis>_ 0</CStepIntDis>
<stlinkResetStyle>0</stlinkResetStyle>
<stlinkResetStrategy>2</stlinkResetStrategy>
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
<CStepIntDis>_ 0</CStepIntDis>
</StLinkDriver>
<PlDriver>
<FirstRun>0</FirstRun>