Merge branch 'Test'
# Conflicts: # EWARM/micro_climate/.micro_climate_build_cache # EWARM/micro_climate/.ninja_deps # EWARM/micro_climate/.ninja_log # EWARM/micro_climate/Exe/micro_climate.out # EWARM/micro_climate/List/micro_climate.map # EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o # EWARM/settings/Project.wsdt # EWARM/settings/micro_climate.dbgdt # EWARM/settings/micro_climate.dnx
This commit is contained in:
commit
21e3ca1f82
|
@ -54,6 +54,26 @@
|
|||
extern int16_t adc_val[ADC_VAL_LEN];
|
||||
extern int16_t adc_val1[ADC_VAL_LEN];
|
||||
|
||||
//滑动平均值结构体
|
||||
typedef struct {
|
||||
float speed_data[3]; // 存储数据点的数组
|
||||
float direction_data[3]; // 存储数据点的数组
|
||||
int index; // 指向队列头部的索引(实际上是最近添加的元素)
|
||||
int count; // 当前队列中的元素数量
|
||||
} SlidingWindow_3s;
|
||||
typedef struct {
|
||||
float speed_data[60]; // 存储数据点的数组
|
||||
float direction_data[60]; // 存储数据点的数组
|
||||
int index; // 指向队列头部的索引(实际上是最近添加的元素)
|
||||
int count; // 当前队列中的元素数量
|
||||
} SlidingWindow_1mim;
|
||||
typedef struct {
|
||||
float speed_data[600]; // 存储数据点的数组
|
||||
float direction_data[600]; // 存储数据点的数组
|
||||
int index; // 指向队列头部的索引(实际上是最近添加的元素)
|
||||
int count; // 当前队列中的元素数量
|
||||
} SlidingWindow_10min;
|
||||
|
||||
#pragma pack(push,1)
|
||||
typedef struct __weather_param
|
||||
{
|
||||
|
@ -106,5 +126,7 @@ void calculate_param(Weather_param *parm ,uint32_t direction , int16_t *adc_buf1
|
|||
|
||||
|
||||
void wind_task(void const * argument);
|
||||
void tem_hum_update_task(void const * argument);
|
||||
void wind_update_task(void const * argument);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -46,7 +46,7 @@ typedef enum
|
|||
|
||||
#pragma pack(push,1)
|
||||
typedef struct _frt_climate_pack{
|
||||
unsigned char addr;
|
||||
unsigned char addr;
|
||||
unsigned char func;
|
||||
unsigned char addr_begin_high_byte;
|
||||
unsigned char addr_begin_low_byte;
|
||||
|
@ -55,14 +55,29 @@ typedef struct _frt_climate_pack{
|
|||
unsigned char crc_low_byte;
|
||||
unsigned char crc_high_byte;
|
||||
}frt_climate_pack;
|
||||
|
||||
typedef struct _frt_climate_pack_write{
|
||||
unsigned char addr;
|
||||
unsigned char func;
|
||||
unsigned char addr_begin_high_byte;
|
||||
unsigned char addr_begin_low_byte;
|
||||
unsigned char regnum_begin_high_byte;
|
||||
unsigned char regnum_begin_low_byte;
|
||||
unsigned char byte_num;
|
||||
unsigned char *reg_val;
|
||||
unsigned char crc_low_byte;
|
||||
unsigned char crc_high_byte;
|
||||
}frt_climate_pack_write;
|
||||
#define FRT_CLIMATE_PACK_SIZE(x) (sizeof(frt_climate_pack))
|
||||
#define FRT_CLIMATE_PACK_CRC16(x) ((x->crc_low_byte)|(x->crc_high_byte<<8))
|
||||
|
||||
#define FRT_CLIMATE_BUFF_CRC16(x) ((x[MsgLen - 2]) | (x[MsgLen - 1] << 8))
|
||||
|
||||
typedef struct _frt_climate_pack_resp{
|
||||
unsigned char addr;
|
||||
unsigned char addr;
|
||||
unsigned char func;
|
||||
unsigned char data_len;
|
||||
unsigned char data[1];
|
||||
unsigned char data[1];
|
||||
}frt_climate_pack_resp;
|
||||
|
||||
typedef void (*MsgProcFunc)(device_handle device, void*);
|
||||
|
|
|
@ -32,5 +32,6 @@ extern config_info g_stConfigInfo;
|
|||
void InFlash_Erase_Pages(u_int16_t PageBeginNum, u_int16_t NbPages);
|
||||
void InFlash_Write(u_int32_t addr, u_int64_t *pBuffer,u_int32_t NumToWrite);
|
||||
void save_config_info(config_info save_config_info);
|
||||
void delete_config_info();
|
||||
BOOL read_config_info();
|
||||
#endif //_INFLASH_H_
|
|
@ -0,0 +1,485 @@
|
|||
#include "frt_protocol.h"
|
||||
#include "cmsis_os.h"
|
||||
#include "assertions.h"
|
||||
#include "inflash.h"
|
||||
#include "anemometer_dev.h"
|
||||
#include "sht30.h"
|
||||
|
||||
extern u_int8_t rs485_out_buff[50];
|
||||
|
||||
/* 静态函数申明 */
|
||||
static void send_uart_pack(device_handle device,FRT_MsgFunctionCode_e cmd_type, const void *data, u_int16_t len);
|
||||
static void FRT_MsgProc_ReadRegister(device_handle device, void *pMsg);
|
||||
static void FRT_MsgProc_WriteRegister(device_handle device, void *pMsg);
|
||||
static u_int16_t FRT_ReadReg(unsigned char regId);
|
||||
static u_int16_t FRT_ReadRegMinWindDiretion(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegAverageWindDirection(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegMaxWindDirection(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegMinWindSpeed(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegAverageWindSpeed(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegMaxWindSpeed(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegTemperature(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegHumidity(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegPressure(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegRain(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegPrecipitationIntensity(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegDeviceAddr(void *pMsg);
|
||||
static void pdebug_mcs_info();
|
||||
|
||||
/* 功能码处理表 */
|
||||
FRT_FuncionMsgProcTable_s g_MsgTbl[] =
|
||||
{
|
||||
{ FRT_FUNCTION_CODE_READ_REGISTER, FRT_MsgProc_ReadRegister },
|
||||
{ FRT_FUNCTION_CODE_WRITE_REGISTER, FRT_MsgProc_WriteRegister },
|
||||
};
|
||||
|
||||
/* 寄存器处理表 */
|
||||
FRT_RegProcTable_s g_RegTbl[] =
|
||||
{
|
||||
{ FRT_REGISTER_MIN_WIND_DIRECTION, FRT_ReadRegMinWindDiretion },
|
||||
{ FRT_REGISTER_AVERAGE_WIND_DIRECTION, FRT_ReadRegAverageWindDirection },
|
||||
{ FRT_REGISTER_MAX_WIND_DIRECTION, FRT_ReadRegMaxWindDirection },
|
||||
{ FRT_REGISTER_MIN_WIND_SPEED, FRT_ReadRegMinWindSpeed },
|
||||
{ FRT_REGISTER_AVERAGE_WIND_SPEED, FRT_ReadRegAverageWindSpeed },
|
||||
{ FRT_REGISTER_MAX_WIND_SPEED, FRT_ReadRegMaxWindSpeed },
|
||||
{ FRT_REGISTER_TEMPERATURE, FRT_ReadRegTemperature },
|
||||
{ FRT_REGISTER_HUMIDITY, FRT_ReadRegHumidity },
|
||||
{ FRT_REGISTER_PRESSURE, FRT_ReadRegPressure },
|
||||
{ FRT_REGISTER_RAIN, FRT_ReadRegRain },
|
||||
{ FRT_REGISTER_PRECIPITATION_INTENSITY, FRT_ReadRegPrecipitationIntensity },
|
||||
{ FRT_REGISTER_DEVICE_ADDR, FRT_ReadRegDeviceAddr },
|
||||
// { FRT_REGISTER_COMMU_BAUDRATE, FRT_ReadRegCommuBaudRate },
|
||||
// { FRT_REGISTER_SPEED_AVERAGE_TIME, FRT_ReadRegSpeedAverageTime },
|
||||
// { FRT_REGISTER_TEMPHUM_UPDATE_TIME, FRT_ReadRegTempHumUpdateTime },
|
||||
// { FRT_REGISTER_RAIN_POWER_CONTROL, FRT_ReadRegRainPowerCtl },
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief modbus crc16算法
|
||||
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 交换高低字节
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_swap_endian_16(u_int16_t value)
|
||||
{
|
||||
return ((value << 8) | (value >> 8));
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读最小风向寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegMinWindDiretion(void *pMsg)
|
||||
{
|
||||
u_int16_t value = (u_int16_t)(g_stMcs_Para.min_wind_direction *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读平均风向寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegAverageWindDirection(void *pMsg)
|
||||
{
|
||||
u_int16_t value = (u_int16_t)(g_stMcs_Para.average_wind_direction *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读最大风向寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegMaxWindDirection(void *pMsg)
|
||||
{
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.max_wind_direction *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读最小风速寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegMinWindSpeed(void *pMsg)
|
||||
{
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.min_wind_speed *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读平均风速寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegAverageWindSpeed(void *pMsg)
|
||||
{
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.average_wind_speed *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读最大风速寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegMaxWindSpeed(void *pMsg)
|
||||
{
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.max_wind_speed *10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读温度寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegTemperature(void *pMsg)
|
||||
{
|
||||
u_int16_t value= (u_int16_t)(g_stMcs_Para.temperature*10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读湿度寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegHumidity(void *pMsg)
|
||||
{
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.humidity*10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读气压寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegPressure(void *pMsg)
|
||||
{
|
||||
u_int16_t value=8;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读雨量寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegRain(void *pMsg)
|
||||
{
|
||||
u_int16_t value=9;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读光辐射强度寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegPrecipitationIntensity(void *pMsg)
|
||||
{
|
||||
u_int16_t value=10;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读设备地址寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegDeviceAddr(void *pMsg)
|
||||
{
|
||||
u_int16_t value=g_stConfigInfo.addr;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 封装协议发送
|
||||
|
||||
* @param
|
||||
* @retval 数据正确返回TRUE,数据异常返回FALSE
|
||||
*/
|
||||
static void send_uart_pack(device_handle device,FRT_MsgFunctionCode_e cmd_type, const void *data, u_int16_t len)
|
||||
{
|
||||
memset(rs485_out_buff,0,sizeof(rs485_out_buff));
|
||||
frt_climate_pack_resp *pack = (frt_climate_pack_resp*)rs485_out_buff;
|
||||
|
||||
pack->addr = g_stConfigInfo.addr;
|
||||
pack->func = FRT_FUNCTION_CODE_READ_REGISTER;
|
||||
pack->data_len = len;
|
||||
memcpy(pack->data, data, len);
|
||||
*(u_int16_t*)&pack->data[len] = CRC16((u_int8_t *)&pack->addr,pack->data_len+3);
|
||||
|
||||
uart_dev_write(device,(u_int8_t*)pack,pack->data_len+5);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 遍历处理寄存器
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
u_int16_t FRT_ReadReg(unsigned char regId)
|
||||
{
|
||||
for(u_int16_t i = 0; i < sizeof(g_RegTbl) / sizeof(FRT_RegProcTable_s); i++){
|
||||
//term_printf("regId:%d, g_RegTbl.regId :%d\r\n",regId,g_RegTbl[i].regId);
|
||||
if (regId == g_RegTbl[i].regId){
|
||||
return g_RegTbl[i].pRegProc(NULL);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 处理读取寄存器数据
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
void FRT_MsgProc_ReadRegister(device_handle device, void *pMsg)
|
||||
{
|
||||
static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
|
||||
memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
|
||||
u_int16_t start_reg_addr = (pack->addr_begin_high_byte<<8)| pack->addr_begin_low_byte;
|
||||
u_int16_t reg_num= (pack->regnum_begin_high_byte<<8)| pack->regnum_begin_low_byte;
|
||||
|
||||
AssertError(start_reg_addr < 100,return, "读取寄存器起始地址错误%d",start_reg_addr);
|
||||
AssertError(reg_num < 100,return, "读取寄存器数量错误%d",reg_num);
|
||||
|
||||
/* 采集sht30数据 */
|
||||
AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
|
||||
// /* 调试信息 */
|
||||
// pdebug_mcs_info();
|
||||
|
||||
for(u_int16_t pos=0; pos <reg_num; pos++){
|
||||
*(u_int16_t*)®_value_buff[pos*2] = FRT_ReadReg((start_reg_addr+pos));
|
||||
}
|
||||
|
||||
if(device == g_term_uart_handle)
|
||||
{
|
||||
pdebug_mcs_info();
|
||||
}
|
||||
if(device == g_rs485_uart_handle)
|
||||
{
|
||||
send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
pdebug_mcs_info();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 处理写入寄存器数据
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
void FRT_MsgProc_WriteRegister(device_handle device, void *pMsg)
|
||||
{
|
||||
term_printf("00000");
|
||||
static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
|
||||
memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
|
||||
u_int16_t start_reg_addr = (pack->addr_begin_high_byte<<8)| pack->addr_begin_low_byte;
|
||||
u_int16_t reg_num= (pack->regnum_begin_high_byte<<8)| pack->regnum_begin_low_byte;
|
||||
|
||||
AssertError(start_reg_addr < 100,return, "读取寄存器起始地址错误%d",start_reg_addr);
|
||||
AssertError(reg_num < 100,return, "读取寄存器数量错误%d",reg_num);
|
||||
|
||||
/* 采集sht30数据 */
|
||||
AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
|
||||
/* 调试信息 */
|
||||
pdebug_mcs_info();
|
||||
|
||||
for(u_int16_t pos=0; pos <reg_num; pos++){
|
||||
*(u_int16_t*)®_value_buff[pos*2] = FRT_ReadReg((start_reg_addr+pos));
|
||||
}
|
||||
|
||||
send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读取串口数据
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static int uart_read_frt_climate_pack(device_handle uart_handle,u_int8_t *buff, u_int32_t buff_size)
|
||||
{
|
||||
u_int32_t offset = 0;
|
||||
char c = 0;
|
||||
// frt_climate_pack *pack = (frt_climate_pack *)buff;
|
||||
|
||||
unsigned char new_buff[50];
|
||||
buff_size--; //预留一个'\0'位置
|
||||
|
||||
for (int i = 0; i < buff_size;i++)
|
||||
{
|
||||
c = uart_dev_in_char(uart_handle);
|
||||
buff[i] = c;
|
||||
}
|
||||
|
||||
int start_index = buff_size; // 初始化为一个不可能的值
|
||||
|
||||
// 遍历数组以找到符合条件的字节对
|
||||
for (int i = 0; i < buff_size; i += 1)
|
||||
{
|
||||
if ((buff[i] == g_stConfigInfo.addr) && ((buff[i + 1] == 0x03) || (buff[i + 1] == 0x10)))
|
||||
{
|
||||
start_index = i; // 从符合条件的字节对开始复制
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (start_index == buff_size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
memcpy(new_buff, buff + start_index, buff_size - start_index);
|
||||
// for (int i = 0; i < buff_size; i++) {
|
||||
// term_printf("%x ", new_buff[i]);
|
||||
// }
|
||||
// term_printf("\r\n");
|
||||
|
||||
if (new_buff[1] == 0x30)
|
||||
{
|
||||
offset = 8
|
||||
}
|
||||
if (new_buff[1] == 0x10)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// for (offset = 0; offset < buff_size;){
|
||||
// c = uart_dev_in_char(uart_handle);
|
||||
// buff[offset++] = c;
|
||||
// if (offset == sizeof(pack->addr)){
|
||||
// if (pack->addr != g_stConfigInfo.addr){
|
||||
// memcpy(buff, buff+1, offset-1);
|
||||
// offset--;
|
||||
// buff_size--;
|
||||
// }
|
||||
// }else if (offset == FRT_CLIMATE_PACK_SIZE(pack)){
|
||||
// return offset;
|
||||
// }
|
||||
// }
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 处理一条消息
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
void FRT_MsgHandler(device_handle device, u_int8_t *pMsg, u_int32_t MsgLen)
|
||||
{
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
|
||||
//AssertErrorNoPrint((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pHeader)),return);
|
||||
// AssertError((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pack)),return,"crc16校验失败");
|
||||
// AssertError((pack->func == FRT_FUNCTION_CODE_READ_REGISTER) ||\
|
||||
// (pack->func == FRT_FUNCTION_CODE_WRITE_REGISTER),return,"crc16校验失败");
|
||||
// 断言有问题,CRC出错卡死
|
||||
if(CRC16(pMsg, MsgLen-2) != FRT_CLIMATE_PACK_CRC16(pack))
|
||||
{
|
||||
// term_printf("CRC不过");
|
||||
return;
|
||||
}
|
||||
if((pack->func != FRT_FUNCTION_CODE_READ_REGISTER) && (pack->func != FRT_FUNCTION_CODE_WRITE_REGISTER))
|
||||
{
|
||||
// term_printf("功能码不过");
|
||||
return;
|
||||
}
|
||||
|
||||
for (u_int16_t i = 0; i < sizeof(g_MsgTbl) / sizeof(FRT_FuncionMsgProcTable_s); i++){
|
||||
if (pack->func == g_MsgTbl[i].msgId){
|
||||
g_MsgTbl[i].pMsgProc(device, pMsg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读取并解析串口数据
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int8_t rs485_buff[50]={0x00};
|
||||
void read_and_process_uart_data(device_handle device)
|
||||
{
|
||||
if(uart_dev_char_present(device)){
|
||||
osDelay(20);
|
||||
memset(rs485_buff,0,sizeof(rs485_buff));
|
||||
int ret = uart_read_frt_climate_pack(device, rs485_buff, sizeof(rs485_buff));
|
||||
if(ret > 0){
|
||||
FRT_MsgHandler(device, rs485_buff, ret);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 打印微气象数据 */
|
||||
static void pdebug_mcs_info()
|
||||
{
|
||||
term_printf("min_wind_direction: %.2f\r\n", g_stMcs_Para.min_wind_direction);
|
||||
term_printf("average_wind_direction: %.2f\r\n", g_stMcs_Para.average_wind_direction);
|
||||
term_printf("max_wind_direction: %.2f\r\n", g_stMcs_Para.max_wind_direction);
|
||||
term_printf("min_wind_speed: %.2f\r\n", g_stMcs_Para.min_wind_speed);
|
||||
term_printf("average_wind_speed: %.2f\r\n", g_stMcs_Para.average_wind_speed);
|
||||
term_printf("max_wind_speed: %.2f\r\n", g_stMcs_Para.max_wind_speed);
|
||||
term_printf("temperature: %.2f\r\n", g_stMcs_Para.temperature);
|
||||
term_printf("humidity: %.2f\r\n", g_stMcs_Para.humidity);
|
||||
term_printf("pressure: %.2f\r\n", g_stMcs_Para.pressure);
|
||||
term_printf("rain: %.2f\r\n", g_stMcs_Para.precipitation);
|
||||
// term_printf("precipitation_intensity: %.2f\r\n", g_stMcs_Para.precipitation_intensity);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// 30 03 00 00 00 0B 00 2C
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -4,7 +4,8 @@
|
|||
#include "inflash.h"
|
||||
#include "uart_dev.h"
|
||||
#include "fdacoefs.h"
|
||||
|
||||
#include "sht30.h"
|
||||
#include "hp203b.h"
|
||||
|
||||
#ifdef ENABLE_FIR_FILTER
|
||||
#define NUM_TAPS 46
|
||||
|
@ -43,15 +44,8 @@ float32_t av_speedy=0;
|
|||
Weather_param weather_info={0x00};
|
||||
mcs_para g_stMcs_Para={0x00};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void update_mcs_param(float new_wind_speed, float new_wind_dirction);
|
||||
|
||||
|
||||
|
||||
|
||||
float32_t max_val_f32;
|
||||
|
||||
int32_t max_val_index_f32;
|
||||
|
@ -308,7 +302,7 @@ float cal_tof(q15_t* x,uint32_t len)
|
|||
}
|
||||
}
|
||||
}
|
||||
term_printf("bad wave of echo signal \r\n");
|
||||
///term_printf("bad wave of echo signal \r\n");
|
||||
// term_printf("maxVal:%d,maxValP:%d \r\n",max_point_val[0],max_point_position[0]);
|
||||
// for(cnt = 1 ;cnt<9;cnt++)
|
||||
// {
|
||||
|
@ -602,7 +596,7 @@ void wind_task(void const * argument)
|
|||
}
|
||||
// arm_mean_f32(speed,AV_SPEED_LEN,&av_speed);
|
||||
// arm_mean_f32(angle,AV_SPEED_LEN,&av_angle);
|
||||
///term_printf("x:%.2f y:%.2f win_speed %.2f m/s angle %.2f \r\n",av_speedx,av_speedy,av_speed,av_angle);
|
||||
/// term_printf("x:%.2f y:%.2f win_speed %.2f m/s angle %.2f \r\n",av_speedx,av_speedy,av_speed,av_angle);
|
||||
}
|
||||
|
||||
///term_printf("win_speed %.2f \r\n",weather_info.wind_velocity);
|
||||
|
@ -632,7 +626,7 @@ void wind_task(void const * argument)
|
|||
g_stMcs_Para.average_wind_speed = weather_info.wind_velocity;
|
||||
g_stMcs_Para.max_wind_speed = 0;
|
||||
}
|
||||
update_mcs_param(weather_info.wind_velocity, weather_info.wind_c);
|
||||
// update_mcs_param(weather_info.wind_velocity, weather_info.wind_c);
|
||||
}
|
||||
/* USER CODE END wind_task */
|
||||
}
|
||||
|
@ -688,7 +682,7 @@ void update_mcs_param(float new_wind_speed, float new_wind_dirction)
|
|||
|
||||
if(flag1 ==0){
|
||||
Yn_1_sp_3s_average_value = new_wind_speed;
|
||||
Yn_1_dir_3s_average_value=new_wind_dirction;
|
||||
Yn_1_dir_3s_average_value = new_wind_dirction;
|
||||
flag1=1;
|
||||
}
|
||||
|
||||
|
@ -764,8 +758,79 @@ void update_mcs_param(float new_wind_speed, float new_wind_dirction)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
SlidingWindow_10min win_10min = {0};
|
||||
float ave_10min_speed = 0;
|
||||
float ave_10min_direction = 0;
|
||||
|
||||
float av_min_speed = 400.0;
|
||||
float av_min_direction = 400.0;
|
||||
float av_max_speed = 0.0;
|
||||
float av_max_direction = 0.0;
|
||||
|
||||
//求和函数
|
||||
double sum(float arr[], int n)
|
||||
{
|
||||
double total = 0;
|
||||
for(int i = 0; i < n; i++)
|
||||
{
|
||||
total += arr[i];
|
||||
}
|
||||
return total;
|
||||
}
|
||||
|
||||
int times_1s_3sec = 0;
|
||||
int times_1s_1min = 0;
|
||||
|
||||
void my_update_mcs_param(float new_wind_speed, float new_wind_dirction)
|
||||
{
|
||||
// 十分钟滑动平均值
|
||||
win_10min.speed_data[win_10min.index] = new_wind_speed; //添加新数据
|
||||
win_10min.direction_data[win_10min.index] = new_wind_dirction;
|
||||
|
||||
win_10min.index = (win_10min.index + 1) % 600; //更新索引
|
||||
|
||||
if(win_10min.count < /* g_stConfigInfo.speed_average_time */ 600)
|
||||
{
|
||||
win_10min.count++;
|
||||
}
|
||||
|
||||
if(win_10min.count > /* g_stConfigInfo.speed_average_time */600){win_10min.count = 600/* g_stConfigInfo.speed_average_time */;}
|
||||
ave_10min_speed = sum(win_10min.speed_data, win_10min.count) / win_10min.count; //计算10min滑动平均值
|
||||
ave_10min_direction = sum(win_10min.direction_data, win_10min.count) / win_10min.count;
|
||||
|
||||
//统计
|
||||
if(av_max_speed < ave_10min_speed){av_max_speed = ave_10min_speed;}
|
||||
if(av_max_direction < ave_10min_direction){av_max_direction = ave_10min_direction;}
|
||||
if(av_min_speed > ave_10min_speed){av_min_speed = ave_10min_speed;}
|
||||
if(av_min_direction > ave_10min_direction){av_min_direction = ave_10min_direction;}
|
||||
|
||||
g_stMcs_Para.min_wind_direction = av_min_direction;
|
||||
g_stMcs_Para.average_wind_direction = ave_10min_direction;
|
||||
g_stMcs_Para.max_wind_direction = av_max_direction;
|
||||
|
||||
g_stMcs_Para.min_wind_speed = av_min_speed;
|
||||
g_stMcs_Para.average_wind_speed = ave_10min_speed;
|
||||
g_stMcs_Para.max_wind_speed = av_max_speed;
|
||||
}
|
||||
|
||||
void tem_hum_update_task(void const * argument)
|
||||
{
|
||||
int time_s_temp_humi = 0;
|
||||
|
||||
get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity);//开机先采集一次
|
||||
while(1)
|
||||
{
|
||||
osDelay(1000);
|
||||
time_s_temp_humi ++;
|
||||
|
||||
if (time_s_temp_humi >= g_stConfigInfo.temp_hum_update_time)
|
||||
{
|
||||
get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity);
|
||||
time_s_temp_humi = 0;
|
||||
}
|
||||
|
||||
my_update_mcs_param(av_speed, av_angle);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4,8 +4,10 @@
|
|||
#include "inflash.h"
|
||||
#include "anemometer_dev.h"
|
||||
#include "sht30.h"
|
||||
#include "hp203b.h"
|
||||
|
||||
extern u_int8_t rs485_out_buff[50];
|
||||
extern uart_device_info uart_devices[];
|
||||
|
||||
/* 静态函数申明 */
|
||||
static void send_uart_pack(device_handle device,FRT_MsgFunctionCode_e cmd_type, const void *data, u_int16_t len);
|
||||
|
@ -24,6 +26,16 @@ static u_int16_t FRT_ReadRegPressure(void *pMsg);
|
|||
static u_int16_t FRT_ReadRegRain(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegPrecipitationIntensity(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegDeviceAddr(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegCommuBaudRate(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegSpeedAverageTime(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegTempHumUpdateTime(void *pMsg);
|
||||
static u_int16_t FRT_ReadRegRainPowerCtl(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegDeviceAddr(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegCommuBaudRate(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegSpeedAverageTime(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegTempHumUpdateTime(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegSoftReset(void *pMsg);
|
||||
static u_int16_t FRT_WriteRegResetDefault(void *pMsg);
|
||||
static void pdebug_mcs_info();
|
||||
|
||||
/* 功能码处理表 */
|
||||
|
@ -33,25 +45,36 @@ FRT_FuncionMsgProcTable_s g_MsgTbl[] =
|
|||
{ FRT_FUNCTION_CODE_WRITE_REGISTER, FRT_MsgProc_WriteRegister },
|
||||
};
|
||||
|
||||
/* 寄存器处理表 */
|
||||
/* 读寄存器处理表 */
|
||||
FRT_RegProcTable_s g_RegTbl[] =
|
||||
{
|
||||
{ FRT_REGISTER_MIN_WIND_DIRECTION, FRT_ReadRegMinWindDiretion },
|
||||
{ FRT_REGISTER_AVERAGE_WIND_DIRECTION, FRT_ReadRegAverageWindDirection },
|
||||
{ FRT_REGISTER_MAX_WIND_DIRECTION, FRT_ReadRegMaxWindDirection },
|
||||
{ FRT_REGISTER_MIN_WIND_SPEED, FRT_ReadRegMinWindSpeed },
|
||||
{ FRT_REGISTER_AVERAGE_WIND_SPEED, FRT_ReadRegAverageWindSpeed },
|
||||
{ FRT_REGISTER_MAX_WIND_SPEED, FRT_ReadRegMaxWindSpeed },
|
||||
{ FRT_REGISTER_TEMPERATURE, FRT_ReadRegTemperature },
|
||||
{ FRT_REGISTER_HUMIDITY, FRT_ReadRegHumidity },
|
||||
{ FRT_REGISTER_PRESSURE, FRT_ReadRegPressure },
|
||||
{ FRT_REGISTER_RAIN, FRT_ReadRegRain },
|
||||
{ FRT_REGISTER_PRECIPITATION_INTENSITY, FRT_ReadRegPrecipitationIntensity },
|
||||
{ FRT_REGISTER_DEVICE_ADDR, FRT_ReadRegDeviceAddr },
|
||||
// { FRT_REGISTER_COMMU_BAUDRATE, FRT_ReadRegCommuBaudRate },
|
||||
// { FRT_REGISTER_SPEED_AVERAGE_TIME, FRT_ReadRegSpeedAverageTime },
|
||||
// { FRT_REGISTER_TEMPHUM_UPDATE_TIME, FRT_ReadRegTempHumUpdateTime },
|
||||
// { FRT_REGISTER_RAIN_POWER_CONTROL, FRT_ReadRegRainPowerCtl },
|
||||
{ FRT_REGISTER_MIN_WIND_DIRECTION, FRT_ReadRegMinWindDiretion }, /* 最小风向 */
|
||||
{ FRT_REGISTER_AVERAGE_WIND_DIRECTION, FRT_ReadRegAverageWindDirection }, /* 平均风向 */
|
||||
{ FRT_REGISTER_MAX_WIND_DIRECTION, FRT_ReadRegMaxWindDirection }, /* 最大风向 */
|
||||
{ FRT_REGISTER_MIN_WIND_SPEED, FRT_ReadRegMinWindSpeed }, /* 最小风速 */
|
||||
{ FRT_REGISTER_AVERAGE_WIND_SPEED, FRT_ReadRegAverageWindSpeed }, /* 平均风速 */
|
||||
{ FRT_REGISTER_MAX_WIND_SPEED, FRT_ReadRegMaxWindSpeed }, /* 最大风速 */
|
||||
{ FRT_REGISTER_TEMPERATURE, FRT_ReadRegTemperature }, /* 大气温度 */
|
||||
{ FRT_REGISTER_HUMIDITY, FRT_ReadRegHumidity }, /* 大气湿度 */
|
||||
{ FRT_REGISTER_PRESSURE, FRT_ReadRegPressure }, /* 大气压 */
|
||||
{ FRT_REGISTER_RAIN, FRT_ReadRegRain }, /* 雨量 */
|
||||
{ FRT_REGISTER_PRECIPITATION_INTENSITY, FRT_ReadRegPrecipitationIntensity }, /* 总辐射 */
|
||||
{ FRT_REGISTER_DEVICE_ADDR, FRT_ReadRegDeviceAddr }, /* 设备地址 */
|
||||
{ FRT_REGISTER_COMMU_BAUDRATE, FRT_ReadRegCommuBaudRate }, /* 波特率 */
|
||||
{ FRT_REGISTER_SPEED_AVERAGE_TIME, FRT_ReadRegSpeedAverageTime }, /* 风速平均时间 */
|
||||
{ FRT_REGISTER_TEMPHUM_UPDATE_TIME, FRT_ReadRegTempHumUpdateTime }, /* 温湿度更新时间 */
|
||||
{ FRT_REGISTER_RAIN_POWER_CONTROL, FRT_ReadRegRainPowerCtl }, /* 雨量电源时间 */
|
||||
};
|
||||
|
||||
/* 写寄存器处理表 */
|
||||
FRT_RegProcTable_s g_Write_RegTbl[] =
|
||||
{
|
||||
{ FRT_REGISTER_DEVICE_ADDR, FRT_WriteRegDeviceAddr }, /* 写设备地址 */
|
||||
{ FRT_REGISTER_COMMU_BAUDRATE, FRT_WriteRegCommuBaudRate }, /* 写波特率 */
|
||||
{ FRT_REGISTER_SPEED_AVERAGE_TIME, FRT_WriteRegSpeedAverageTime }, /* 写风速平均时间 */
|
||||
{ FRT_REGISTER_TEMPHUM_UPDATE_TIME, FRT_WriteRegTempHumUpdateTime }, /* 写温湿度更新时间 */
|
||||
{ FRT_REGISTER_SOFT_REST, FRT_WriteRegSoftReset }, /* 软件复位 */
|
||||
{ FRT_REGISTER_REST_DEFAULT_SETTING, FRT_WriteRegResetDefault }, /* 恢复出厂设置 */
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -183,7 +206,7 @@ static u_int16_t FRT_ReadRegHumidity(void *pMsg)
|
|||
*/
|
||||
static u_int16_t FRT_ReadRegPressure(void *pMsg)
|
||||
{
|
||||
u_int16_t value=8;
|
||||
u_int16_t value=(u_int16_t)(g_stMcs_Para.pressure*10);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
|
@ -216,10 +239,163 @@ static u_int16_t FRT_ReadRegPrecipitationIntensity(void *pMsg)
|
|||
*/
|
||||
static u_int16_t FRT_ReadRegDeviceAddr(void *pMsg)
|
||||
{
|
||||
read_config_info();
|
||||
u_int16_t value=g_stConfigInfo.addr;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读波特率寄存器值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegCommuBaudRate(void *pMsg)
|
||||
{
|
||||
read_config_info();
|
||||
u_int16_t value=g_stConfigInfo.uart_baud;
|
||||
// term_printf("%x", value);
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读风速平均时间值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegSpeedAverageTime(void *pMsg)
|
||||
{
|
||||
read_config_info();
|
||||
u_int16_t value=g_stConfigInfo.speed_average_time;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读温湿度更新时间值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegTempHumUpdateTime(void *pMsg)
|
||||
{
|
||||
read_config_info();
|
||||
u_int16_t value=g_stConfigInfo.temp_hum_update_time;
|
||||
return FRT_swap_endian_16(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 读雨量电源控制值
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_ReadRegRainPowerCtl(void *pMsg)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 写设备地址
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegDeviceAddr(void *pMsg)
|
||||
{
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
g_stConfigInfo.addr = data;
|
||||
save_config_info(g_stConfigInfo);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 写波特率
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegCommuBaudRate(void *pMsg)
|
||||
{
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
g_stConfigInfo.uart_baud = data;
|
||||
save_config_info(g_stConfigInfo);
|
||||
|
||||
MX_USART3_UART_Init(g_stConfigInfo.uart_baud);
|
||||
MX_USART1_UART_Init(g_stConfigInfo.uart_baud);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 写风速平均时间
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegSpeedAverageTime(void *pMsg)
|
||||
{
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
|
||||
g_stConfigInfo.speed_average_time = data;
|
||||
save_config_info(g_stConfigInfo);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 写温湿度更新时间
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegTempHumUpdateTime(void *pMsg)
|
||||
{
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
|
||||
g_stConfigInfo.temp_hum_update_time = data;
|
||||
save_config_info(g_stConfigInfo);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 软件复位
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegSoftReset(void *pMsg)
|
||||
{
|
||||
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
if(data == 0x0001)
|
||||
{
|
||||
__iar_builtin_set_FAULTMASK(1);
|
||||
NVIC_SystemReset();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 恢复出厂设置
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
static u_int16_t FRT_WriteRegResetDefault(void *pMsg)
|
||||
{
|
||||
uint16_t *pMsgAddr = (uint16_t *)pMsg;
|
||||
uint16_t data = *pMsgAddr;
|
||||
|
||||
if(data == 0x0001)
|
||||
{
|
||||
delete_config_info();
|
||||
|
||||
__iar_builtin_set_FAULTMASK(1);
|
||||
NVIC_SystemReset();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 封装协议发送
|
||||
|
||||
|
@ -241,7 +417,7 @@ static void send_uart_pack(device_handle device,FRT_MsgFunctionCode_e cmd_type,
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief 遍历处理寄存器
|
||||
* @brief 遍历读取寄存器
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
|
@ -263,35 +439,78 @@ u_int16_t FRT_ReadReg(unsigned char regId)
|
|||
*/
|
||||
void FRT_MsgProc_ReadRegister(device_handle device, void *pMsg)
|
||||
{
|
||||
static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
// static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
//
|
||||
// memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
// frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
//
|
||||
// u_int16_t start_reg_addr = (pack->addr_begin_high_byte<<8)| pack->addr_begin_low_byte;
|
||||
// u_int16_t reg_num= (pack->regnum_begin_high_byte<<8)| pack->regnum_begin_low_byte;
|
||||
//
|
||||
// AssertError(start_reg_addr < 100,return, "读取寄存器起始地址错误%d",start_reg_addr);
|
||||
// AssertError(reg_num < 100,return, "读取寄存器数量错误%d",reg_num);
|
||||
//
|
||||
// /* 采集sht30数据 */
|
||||
// AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
//
|
||||
//// /* 调试信息 */
|
||||
//// pdebug_mcs_info();
|
||||
//
|
||||
// for(u_int16_t pos=0; pos <reg_num; pos++){
|
||||
// *(u_int16_t*)®_value_buff[pos*2] = FRT_ReadReg((start_reg_addr+pos));
|
||||
// }
|
||||
//
|
||||
// if(device == g_term_uart_handle)
|
||||
// {
|
||||
// pdebug_mcs_info();
|
||||
// }
|
||||
// if(device == g_rs485_uart_handle)
|
||||
// {
|
||||
// send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
// pdebug_mcs_info();
|
||||
// }
|
||||
|
||||
memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
|
||||
u_int16_t start_reg_addr = (pack->addr_begin_high_byte<<8)| pack->addr_begin_low_byte;
|
||||
u_int16_t reg_num= (pack->regnum_begin_high_byte<<8)| pack->regnum_begin_low_byte;
|
||||
|
||||
AssertError(start_reg_addr < 100,return, "读取寄存器起始地址错误%d",start_reg_addr);
|
||||
AssertError(reg_num < 100,return, "读取寄存器数量错误%d",reg_num);
|
||||
uint8_t *data = (uint8_t *)pMsg;
|
||||
u_int16_t start_reg_addr = (data[2] << 8)| data[3];
|
||||
u_int16_t reg_num= (data[4] << 8)| data[5];
|
||||
if (start_reg_addr < 0x00 || (start_reg_addr > 0x08 && start_reg_addr < 0x14) || start_reg_addr > 0x17)
|
||||
{
|
||||
term_printf("start_reg_addr error:%d", start_reg_addr);
|
||||
return;
|
||||
}
|
||||
if (reg_num < 0x01 || (((reg_num + start_reg_addr - 1) > 0x08) && ((reg_num + start_reg_addr - 1) < 0x14)) || ((reg_num + start_reg_addr -1) > 0x17))
|
||||
{
|
||||
term_printf("reg_num error:%d", reg_num);
|
||||
return;
|
||||
}
|
||||
|
||||
//采集气压数据
|
||||
uint8_t tttt[] = {0xff, 0xff};
|
||||
HAL_I2C_Master_Transmit(&hi2c3, 0xEE, tttt, 1, 0xFF);
|
||||
/* 采集sht30数据 */
|
||||
AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
// AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
//采集HP203B数据(大气压)
|
||||
Hp203bReadPressure();
|
||||
|
||||
// /* 调试信息 */
|
||||
// pdebug_mcs_info();
|
||||
|
||||
static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
|
||||
memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
for(u_int16_t pos=0; pos <reg_num; pos++){
|
||||
*(u_int16_t*)®_value_buff[pos*2] = FRT_ReadReg((start_reg_addr+pos));
|
||||
}
|
||||
|
||||
if(device == g_term_uart_handle)
|
||||
{
|
||||
pdebug_mcs_info();
|
||||
send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
// pdebug_mcs_info();
|
||||
}
|
||||
if(device == g_rs485_uart_handle)
|
||||
{
|
||||
send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
pdebug_mcs_info();
|
||||
// pdebug_mcs_info();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -302,29 +521,67 @@ void FRT_MsgProc_ReadRegister(device_handle device, void *pMsg)
|
|||
*/
|
||||
void FRT_MsgProc_WriteRegister(device_handle device, void *pMsg)
|
||||
{
|
||||
term_printf("00000");
|
||||
static u_int8_t reg_value_buff[2*100]={0x00};
|
||||
uint8_t *data = (uint8_t *)pMsg;
|
||||
u_int16_t start_reg_addr = (data[2] << 8)| data[3];
|
||||
u_int16_t reg_num= (data[4] << 8)| data[5];
|
||||
u_int16_t byte_num= data[6];
|
||||
unsigned short return_crc_value;
|
||||
|
||||
memset(reg_value_buff,0,sizeof(reg_value_buff));
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
|
||||
u_int16_t start_reg_addr = (pack->addr_begin_high_byte<<8)| pack->addr_begin_low_byte;
|
||||
u_int16_t reg_num= (pack->regnum_begin_high_byte<<8)| pack->regnum_begin_low_byte;
|
||||
|
||||
AssertError(start_reg_addr < 100,return, "读取寄存器起始地址错误%d",start_reg_addr);
|
||||
AssertError(reg_num < 100,return, "读取寄存器数量错误%d",reg_num);
|
||||
|
||||
/* 采集sht30数据 */
|
||||
AssertError(get_temp_humi_data(&g_stMcs_Para.temperature, &g_stMcs_Para.humidity),g_stMcs_Para.temperature=0;g_stMcs_Para.humidity=0,"采集sht30温湿度数据失败" );
|
||||
|
||||
/* 调试信息 */
|
||||
pdebug_mcs_info();
|
||||
|
||||
for(u_int16_t pos=0; pos <reg_num; pos++){
|
||||
*(u_int16_t*)®_value_buff[pos*2] = FRT_ReadReg((start_reg_addr+pos));
|
||||
// 校验
|
||||
if (start_reg_addr < 0x14 || start_reg_addr > 0x1C )
|
||||
{
|
||||
term_printf("start_reg_addr error:%d", start_reg_addr);
|
||||
return;
|
||||
}
|
||||
if (reg_num < 0x01 || ((reg_num + start_reg_addr - 1) < 0x14) || ((reg_num + start_reg_addr -1) > 0x1C))
|
||||
{
|
||||
term_printf("reg_num error:%d", reg_num);
|
||||
return;
|
||||
}
|
||||
|
||||
send_uart_pack(device, FRT_FUNCTION_CODE_READ_REGISTER, (u_int8_t*)®_value_buff, reg_num*2);
|
||||
// 取出数据
|
||||
uint16_t content[50] = {0};
|
||||
for (uint16_t var = 0; var < reg_num; var++)
|
||||
{
|
||||
content[var] = data[7 + 2 * var] << 8 | data[7 + 2 * var + 1];
|
||||
}
|
||||
//// 调试
|
||||
// for (int i = 0; i < 20; i++)
|
||||
// {
|
||||
// term_printf("%x", content[i]);
|
||||
// }
|
||||
|
||||
// 发回数据
|
||||
uint8_t Trans_data[6];
|
||||
Trans_data[0] = g_stConfigInfo.addr;
|
||||
Trans_data[1] = data[1];
|
||||
Trans_data[2] = start_reg_addr;
|
||||
Trans_data[3] = reg_num;
|
||||
|
||||
return_crc_value = CRC16(Trans_data, 4);
|
||||
Trans_data[4] = return_crc_value;
|
||||
Trans_data[5] = return_crc_value >> 8;
|
||||
uart_dev_write(device, Trans_data, 6);
|
||||
|
||||
for(u_int16_t pos=0; pos <reg_num; pos++)
|
||||
{
|
||||
for (uint16_t i = 0; i < sizeof(g_Write_RegTbl) / sizeof(FRT_RegProcTable_s); i++)
|
||||
{
|
||||
if (g_Write_RegTbl[i].regId == (start_reg_addr + pos))
|
||||
{
|
||||
g_Write_RegTbl[i].pRegProc(&content[pos]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// if(device == g_term_uart_handle)
|
||||
// {
|
||||
// pdebug_mcs_info();
|
||||
// }
|
||||
// if(device == g_rs485_uart_handle)
|
||||
// {
|
||||
// pdebug_mcs_info();
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -336,25 +593,42 @@ static int uart_read_frt_climate_pack(device_handle uart_handle,u_int8_t *buff,
|
|||
{
|
||||
u_int32_t offset = 0;
|
||||
char c = 0;
|
||||
frt_climate_pack *pack = (frt_climate_pack *)buff;
|
||||
// frt_climate_pack *pack = (frt_climate_pack *)buff;
|
||||
|
||||
unsigned char new_buff[50];
|
||||
buff_size--; //预留一个'\0'位置
|
||||
for (offset = 0; offset < buff_size;){
|
||||
|
||||
for (int offset = 0; offset < buff_size;)
|
||||
{
|
||||
// 逐字符读取
|
||||
c = uart_dev_in_char(uart_handle);
|
||||
buff[offset++] = c;
|
||||
if (offset == sizeof(pack->addr)){
|
||||
if (pack->addr != g_stConfigInfo.addr){
|
||||
memcpy(buff, buff+1, offset-1);
|
||||
offset--;
|
||||
buff_size--;
|
||||
}
|
||||
}else if (offset == FRT_CLIMATE_PACK_SIZE(pack)){
|
||||
return offset;
|
||||
}
|
||||
|
||||
// 判断首字符是否是地址,是地址再开始读取,不是则将索引退一步
|
||||
if(offset == sizeof(unsigned char))
|
||||
{
|
||||
if(buff[0] != g_stConfigInfo.addr)
|
||||
{
|
||||
memcpy(buff, buff + 1, offset - 1);
|
||||
offset--;
|
||||
buff_size--;
|
||||
}
|
||||
}
|
||||
// 读寄存器
|
||||
else if (buff[1] == FRT_FUNCTION_CODE_READ_REGISTER & offset == 8)
|
||||
{
|
||||
return offset;
|
||||
}
|
||||
// 写寄存器
|
||||
else if (buff[1] == FRT_FUNCTION_CODE_WRITE_REGISTER & offset == 7 + buff[6] * 2 +2)
|
||||
{
|
||||
return offset;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief 处理一条消息
|
||||
* @param
|
||||
|
@ -362,26 +636,43 @@ static int uart_read_frt_climate_pack(device_handle uart_handle,u_int8_t *buff,
|
|||
*/
|
||||
void FRT_MsgHandler(device_handle device, u_int8_t *pMsg, u_int32_t MsgLen)
|
||||
{
|
||||
frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
// frt_climate_pack *pack = (frt_climate_pack*)pMsg;
|
||||
//
|
||||
// //AssertErrorNoPrint((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pHeader)),return);
|
||||
//// AssertError((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pack)),return,"crc16校验失败");
|
||||
//// AssertError((pack->func == FRT_FUNCTION_CODE_READ_REGISTER) ||\
|
||||
//// (pack->func == FRT_FUNCTION_CODE_WRITE_REGISTER),return,"crc16校验失败");
|
||||
//// 断言有问题,CRC出错卡死
|
||||
// if(CRC16(pMsg, MsgLen-2) != FRT_CLIMATE_PACK_CRC16(pack))
|
||||
// {
|
||||
//// term_printf("CRC不过");
|
||||
// return;
|
||||
// }
|
||||
// if((pack->func != FRT_FUNCTION_CODE_READ_REGISTER) && (pack->func != FRT_FUNCTION_CODE_WRITE_REGISTER))
|
||||
// {
|
||||
//// term_printf("功能码不过");
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// for (u_int16_t i = 0; i < sizeof(g_MsgTbl) / sizeof(FRT_FuncionMsgProcTable_s); i++){
|
||||
// if (pack->func == g_MsgTbl[i].msgId){
|
||||
// g_MsgTbl[i].pMsgProc(device, pMsg);
|
||||
// }
|
||||
// }
|
||||
|
||||
//AssertErrorNoPrint((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pHeader)),return);
|
||||
// AssertError((CRC16(pMsg, MsgLen-2) == FRT_CLIMATE_PACK_CRC16(pack)),return,"crc16校验失败");
|
||||
// AssertError((pack->func == FRT_FUNCTION_CODE_READ_REGISTER) ||\
|
||||
// (pack->func == FRT_FUNCTION_CODE_WRITE_REGISTER),return,"crc16校验失败");
|
||||
// 断言有问题,CRC出错卡死
|
||||
if(CRC16(pMsg, MsgLen-2) != FRT_CLIMATE_PACK_CRC16(pack))
|
||||
|
||||
if(CRC16(pMsg, MsgLen-2) != FRT_CLIMATE_BUFF_CRC16(pMsg))
|
||||
{
|
||||
// term_printf("CRC不过");
|
||||
return;
|
||||
}
|
||||
if((pack->func != FRT_FUNCTION_CODE_READ_REGISTER) && (pack->func != FRT_FUNCTION_CODE_WRITE_REGISTER))
|
||||
if((pMsg[1] != FRT_FUNCTION_CODE_READ_REGISTER) && (pMsg[1] != FRT_FUNCTION_CODE_WRITE_REGISTER))
|
||||
{
|
||||
// term_printf("功能码不过");
|
||||
return;
|
||||
}
|
||||
|
||||
for (u_int16_t i = 0; i < sizeof(g_MsgTbl) / sizeof(FRT_FuncionMsgProcTable_s); i++){
|
||||
if (pack->func == g_MsgTbl[i].msgId){
|
||||
if (pMsg[1] == g_MsgTbl[i].msgId){
|
||||
g_MsgTbl[i].pMsgProc(device, pMsg);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,11 +4,12 @@
|
|||
#include "assertions.h"
|
||||
|
||||
config_info g_stConfigInfo={
|
||||
.flag_head = FLAG_SAVE_INFLASH_HEAD,
|
||||
.addr = 0x30, /* 默认地址 */
|
||||
.uart_baud = 9600, /* 默认波特率 */
|
||||
.speed_average_time = 10, /* 默认10分钟平均风速 */
|
||||
.flag_end = FLAG_SAVE_INFLASH_END,
|
||||
.flag_head = FLAG_SAVE_INFLASH_HEAD,
|
||||
.addr = 0x30, /* 默认地址 */
|
||||
.uart_baud = 9600, /* 默认波特率 */
|
||||
.speed_average_time = 600, /* 默认10分钟平均风速 */
|
||||
.temp_hum_update_time = 600, /* 温湿度更新时间 */
|
||||
.flag_end = FLAG_SAVE_INFLASH_END,
|
||||
};
|
||||
|
||||
|
||||
|
@ -23,6 +24,7 @@ void InFlash_Erase_Pages(u_int16_t PageBeginNum, u_int16_t NbPages)
|
|||
FLASH_EraseInitTypeDef EraseInitStruct;
|
||||
u_int32_t PAGEError = 0;
|
||||
|
||||
EraseInitStruct.Banks = FLASH_BANK_1;
|
||||
EraseInitStruct.TypeErase = FLASH_TYPEERASE_PAGES;
|
||||
EraseInitStruct.Page = PageBeginNum;
|
||||
EraseInitStruct.NbPages = NbPages;
|
||||
|
@ -43,7 +45,7 @@ void InFlash_Write(u_int32_t addr, u_int64_t *pBuffer,u_int32_t NumToWrite)
|
|||
int i = 0;
|
||||
while( i < NumToWrite){
|
||||
if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_DOUBLEWORD, addr, pBuffer[i]) != HAL_OK){
|
||||
log_error("inflash write error!");
|
||||
// log_error("inflash write error!");
|
||||
return;
|
||||
}else{
|
||||
addr += 8;
|
||||
|
@ -60,6 +62,7 @@ void InFlash_Write(u_int32_t addr, u_int64_t *pBuffer,u_int32_t NumToWrite)
|
|||
void save_config_info(config_info save_config_info)
|
||||
{
|
||||
HAL_FLASH_Unlock();
|
||||
InFlash_Write(STM32_INFLASH_SAVE_ADDR_BEGIN, (u_int64_t*)&save_config_info, (sizeof(save_config_info)+7)/8);
|
||||
InFlash_Erase_Pages(STM32_INFLASH_SAVE_PAGE, 1);
|
||||
InFlash_Write(STM32_INFLASH_SAVE_ADDR_BEGIN, (u_int64_t*)&save_config_info, (sizeof(save_config_info)+7)/8);
|
||||
HAL_FLASH_Lock();
|
||||
|
@ -75,17 +78,33 @@ BOOL read_config_info()
|
|||
config_info temp_config_info={0x00};
|
||||
|
||||
memcpy((u_int8_t*)&temp_config_info,(u_int8_t*) STM32_INFLASH_SAVE_ADDR_BEGIN, sizeof(config_info));
|
||||
// term_printf("%d", temp_config_info.addr);
|
||||
if((temp_config_info.flag_head == FLAG_SAVE_INFLASH_HEAD) && (temp_config_info.flag_end == FLAG_SAVE_INFLASH_END)){
|
||||
memcpy((u_int8_t*)&g_stConfigInfo, (u_int8_t*)&temp_config_info, sizeof(config_info));
|
||||
term_printf("Addr:%d, speed_average_time:%dmin\r\n", g_stConfigInfo.addr, g_stConfigInfo.speed_average_time);
|
||||
// term_printf("Addr:%d, speed_average_time:%dmin\r\n", g_stConfigInfo.addr, g_stConfigInfo.speed_average_time);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
term_printf("!get config info from inflash error,use default parameter.\r\n");
|
||||
term_printf("Addr:%d, speed_average_time:%dmin\r\n", g_stConfigInfo.addr, g_stConfigInfo.speed_average_time);
|
||||
// term_printf("!get config info from inflash error,use default parameter.\r\n");
|
||||
// term_printf("Addr:%d, speed_average_time:%dmin\r\n", g_stConfigInfo.addr, g_stConfigInfo.speed_average_time);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 删除配置信息
|
||||
* @param
|
||||
* @retval
|
||||
*/
|
||||
void delete_config_info()
|
||||
{
|
||||
config_info delete_config_info = {0};
|
||||
HAL_FLASH_Unlock();
|
||||
InFlash_Write(STM32_INFLASH_SAVE_ADDR_BEGIN, (u_int64_t*)&delete_config_info, (sizeof(delete_config_info)+7)/8);
|
||||
InFlash_Erase_Pages(STM32_INFLASH_SAVE_PAGE, 1);
|
||||
InFlash_Write(STM32_INFLASH_SAVE_ADDR_BEGIN, (u_int64_t*)&delete_config_info, (sizeof(delete_config_info)+7)/8);
|
||||
HAL_FLASH_Lock();
|
||||
}
|
||||
|
||||
|
||||
|
||||
#if 0
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include <stdarg.h>
|
||||
#include "timer.h"
|
||||
#include "gpio.h"
|
||||
#include "inflash.h"
|
||||
|
||||
extern UART_HandleTypeDef huart1;
|
||||
extern UART_HandleTypeDef huart3;
|
||||
|
@ -73,11 +74,11 @@ device_handle uart_dev_init(uartIndex_e uart_index, uint8_t *buff, int buff_size
|
|||
static void uart_init(uartIndex_e uart_index, int baud)
|
||||
{
|
||||
if(uart_index == TERM_UART_INDEX){
|
||||
MX_USART1_UART_Init();
|
||||
//MX_USART1_UART_Init(baud);
|
||||
// MX_USART1_UART_Init();
|
||||
MX_USART1_UART_Init(baud);
|
||||
}else if(uart_index == RS485_UART_INDEX){
|
||||
//MX_USART3_UART_Init(baud);
|
||||
MX_USART3_UART_Init();
|
||||
MX_USART3_UART_Init(baud);
|
||||
// MX_USART3_UART_Init();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -47,8 +47,8 @@ extern UART_HandleTypeDef huart3;
|
|||
|
||||
void MX_LPUART1_UART_Init(void);
|
||||
void MX_UART5_Init(void);
|
||||
void MX_USART1_UART_Init(void);
|
||||
void MX_USART3_UART_Init(void);
|
||||
void MX_USART1_UART_Init(int baud);
|
||||
void MX_USART3_UART_Init(int baud);
|
||||
|
||||
/* USER CODE BEGIN Prototypes */
|
||||
|
||||
|
|
|
@ -30,6 +30,8 @@ void task_shell_term_main_loop(void const * argument);
|
|||
#include "anemometer_dev.h"
|
||||
#include "uart_dev.h"
|
||||
#include "frt_protocol.h"
|
||||
#include "inflash.h"
|
||||
#include "hp203b.h"
|
||||
/* USER CODE END Includes */
|
||||
|
||||
/* Private typedef -----------------------------------------------------------*/
|
||||
|
@ -52,10 +54,13 @@ void task_shell_term_main_loop(void const * argument);
|
|||
osThreadId defaultTaskHandle;
|
||||
osThreadId anemometerHandle;
|
||||
osThreadId sensorTaskHandle;
|
||||
|
||||
osThreadId ledTaskHandle;
|
||||
//osThreadId TermShellHandle;
|
||||
/* USER CODE END Variables */
|
||||
osThreadId defaultTaskHandle;
|
||||
|
||||
osThreadId temhum_update_taskHandle;
|
||||
osThreadId wind_update_taskHandle;
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
/* USER CODE BEGIN FunctionPrototypes */
|
||||
|
||||
|
@ -63,6 +68,8 @@ osThreadId defaultTaskHandle;
|
|||
|
||||
void StartDefaultTask(void const * argument);
|
||||
|
||||
void LEDTask(void const * argument);
|
||||
|
||||
void MX_FREERTOS_Init(void); /* (MISRA C 2004 rule 8.1) */
|
||||
|
||||
/* GetIdleTaskMemory prototype (linked to static allocation support) */
|
||||
|
@ -109,13 +116,19 @@ void MX_FREERTOS_Init(void) {
|
|||
|
||||
/* Create the thread(s) */
|
||||
/* definition and creation of defaultTask */
|
||||
osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 256);
|
||||
osThreadDef(defaultTask, StartDefaultTask, osPriorityHigh, 0, 256);//ͨѶ
|
||||
defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL);
|
||||
|
||||
osThreadDef(ledTask, LEDTask, osPriorityIdle, 0, 32);//LED
|
||||
ledTaskHandle = osThreadCreate(osThread(ledTask), NULL);
|
||||
|
||||
/* USER CODE BEGIN RTOS_THREADS */
|
||||
osThreadDef(anemometer, wind_task, osPriorityRealtime, 0, 128);
|
||||
osThreadDef(anemometer, wind_task, osPriorityRealtime, 0, 128);//·ç²É¼¯
|
||||
anemometerHandle = osThreadCreate(osThread(anemometer), NULL);
|
||||
|
||||
osThreadDef(temhum_update_task, tem_hum_update_task, osPriorityAboveNormal, 0, 128);//ÎÂʪ¶È¸üÐÂ
|
||||
temhum_update_taskHandle = osThreadCreate(osThread(temhum_update_task), NULL);
|
||||
|
||||
// osThreadDef(sensorTask, SensorTask, osPriorityRealtime, 0, 128);
|
||||
// sensorTaskHandle = osThreadCreate(osThread(anemometer), NULL);
|
||||
//osThreadDef(TermShellHandle, task_shell_term_main_loop, osPriorityAboveNormal, 0, 128);
|
||||
|
@ -142,7 +155,7 @@ void StartDefaultTask(void const * argument)
|
|||
read_and_process_uart_data(g_rs485_uart_handle);
|
||||
read_and_process_uart_data(g_term_uart_handle);
|
||||
osDelay(100);
|
||||
HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
|
||||
}
|
||||
/* USER CODE END StartDefaultTask */
|
||||
}
|
||||
|
@ -174,3 +187,16 @@ void SensorTask(void const * argument)
|
|||
/* USER CODE END StartDefaultTask */
|
||||
}
|
||||
/* USER CODE END Application */
|
||||
|
||||
void LEDTask(void const * argument)
|
||||
{
|
||||
/* USER CODE BEGIN StartDefaultTask */
|
||||
/* Infinite loop */
|
||||
for(;;)
|
||||
{
|
||||
osDelay(1000);
|
||||
HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
}
|
||||
/* USER CODE END StartDefaultTask */
|
||||
}
|
||||
/* USER CODE END Application */
|
||||
|
|
|
@ -42,6 +42,9 @@
|
|||
#include "anemometer_dev.h"
|
||||
#include "uart_dev.h"
|
||||
#include "sht30.h"
|
||||
#include "hp203b.h"
|
||||
|
||||
#include "inflash.h"
|
||||
/* USER CODE END Includes */
|
||||
|
||||
/* Private typedef -----------------------------------------------------------*/
|
||||
|
@ -56,7 +59,7 @@
|
|||
/* Private macro -------------------------------------------------------------*/
|
||||
/* USER CODE BEGIN PM */
|
||||
|
||||
|
||||
extern uart_device_info uart_devices[];
|
||||
|
||||
|
||||
uint8_t temp_str[100];
|
||||
|
@ -107,13 +110,17 @@ int main(void)
|
|||
/* USER CODE END SysInit */
|
||||
|
||||
/* Initialize all configured peripherals */
|
||||
read_config_info();
|
||||
uart_devices[0].uart_baudrate = g_stConfigInfo.uart_baud;
|
||||
uart_devices[1].uart_baudrate = g_stConfigInfo.uart_baud;
|
||||
|
||||
MX_GPIO_Init();
|
||||
MX_DMA_Init();
|
||||
MX_ADC1_Init();
|
||||
MX_LPUART1_UART_Init();
|
||||
MX_UART5_Init();
|
||||
MX_USART1_UART_Init();
|
||||
MX_USART3_UART_Init();
|
||||
// MX_USART1_UART_Init();
|
||||
// MX_USART3_UART_Init();
|
||||
MX_TIM2_Init();
|
||||
MX_TIM6_Init();
|
||||
MX_TIM7_Init();
|
||||
|
@ -129,7 +136,7 @@ int main(void)
|
|||
term_printf("Version 1.0.0 Build: %s %s\r\n",__DATE__,__TIME__);
|
||||
HAL_ADCEx_Calibration_Start(&hadc1,ADC_SINGLE_ENDED);
|
||||
sht30_init();
|
||||
|
||||
hp203_set_mode();
|
||||
/* USER CODE END 2 */
|
||||
|
||||
/* Call init function for freertos objects (in cmsis_os2.c) */
|
||||
|
@ -143,7 +150,7 @@ int main(void)
|
|||
/* Infinite loop */
|
||||
/* USER CODE BEGIN WHILE */
|
||||
//HAL_PWREx_EnableLowPowerRunMode();
|
||||
|
||||
// save_config_info(g_stConfigInfo);
|
||||
while (1)
|
||||
{
|
||||
/* USER CODE END WHILE */
|
||||
|
|
|
@ -93,7 +93,7 @@ void MX_UART5_Init(void)
|
|||
}
|
||||
/* USART1 init function */
|
||||
|
||||
void MX_USART1_UART_Init(void)
|
||||
void MX_USART1_UART_Init(int baud)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN USART1_Init 0 */
|
||||
|
@ -104,7 +104,7 @@ void MX_USART1_UART_Init(void)
|
|||
|
||||
/* USER CODE END USART1_Init 1 */
|
||||
huart1.Instance = USART1;
|
||||
huart1.Init.BaudRate = 9600;
|
||||
huart1.Init.BaudRate = baud;
|
||||
huart1.Init.WordLength = UART_WORDLENGTH_8B;
|
||||
huart1.Init.StopBits = UART_STOPBITS_1;
|
||||
huart1.Init.Parity = UART_PARITY_NONE;
|
||||
|
@ -124,7 +124,7 @@ void MX_USART1_UART_Init(void)
|
|||
}
|
||||
/* USART3 init function */
|
||||
|
||||
void MX_USART3_UART_Init(void)
|
||||
void MX_USART3_UART_Init(int baud)
|
||||
{
|
||||
|
||||
/* USER CODE BEGIN USART3_Init 0 */
|
||||
|
@ -135,7 +135,7 @@ void MX_USART3_UART_Init(void)
|
|||
|
||||
/* USER CODE END USART3_Init 1 */
|
||||
huart3.Instance = USART3;
|
||||
huart3.Init.BaudRate = 9600;
|
||||
huart3.Init.BaudRate = baud;
|
||||
huart3.Init.WordLength = UART_WORDLENGTH_8B;
|
||||
huart3.Init.StopBits = UART_STOPBITS_1;
|
||||
huart3.Init.Parity = UART_PARITY_NONE;
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1,48 @@
|
|||
#include "hp203b.h"
|
||||
#include "i2c.h"
|
||||
#include "anemometer_dev.h"
|
||||
|
||||
|
||||
/****************************
|
||||
*名称:set_mode
|
||||
*功能:配置从机模式,设置通道及采样率
|
||||
*参数:无
|
||||
*
|
||||
*
|
||||
*返回:无
|
||||
*****************************/
|
||||
void hp203_set_mode()
|
||||
{
|
||||
uint8_t cmd[1] = {HP20X_CONVERT_OSR1024};
|
||||
HAL_I2C_Master_Transmit(&hi2c3, HP20X_ADDRESSCMD, cmd, 1, 0xff);
|
||||
}
|
||||
|
||||
|
||||
/****************************
|
||||
*名称:Hp203bReadPressure
|
||||
*功能:获取气压数据
|
||||
*参数:Press--气压值
|
||||
*
|
||||
*
|
||||
*返回:无
|
||||
*****************************/
|
||||
long Hp203b_Pressure = 0;
|
||||
uint8_t Hp203bPressure_Temp[3] = {0};
|
||||
void Hp203bReadPressure(void)
|
||||
{
|
||||
uint8_t read_command[1] = {HP20X_READ_P};
|
||||
|
||||
HAL_I2C_Master_Transmit(&hi2c3, HP20X_ADDRESSCMD, read_command, 1, 0xff);
|
||||
HAL_I2C_Master_Receive(&hi2c3, HP20X_ADDRESSCMD, Hp203bPressure_Temp, 3, 0xff);
|
||||
|
||||
Hp203b_Pressure = Hp203bPressure_Temp[0];
|
||||
Hp203b_Pressure <<= 8;
|
||||
Hp203b_Pressure |= Hp203bPressure_Temp[1];
|
||||
Hp203b_Pressure <<= 8;
|
||||
Hp203b_Pressure |= Hp203bPressure_Temp[2];
|
||||
|
||||
Hp203b_Pressure = Hp203b_Pressure / 100;
|
||||
g_stMcs_Para.pressure = Hp203b_Pressure;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
#ifndef __HP203B_H__
|
||||
#define __HP203B_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "main.h"
|
||||
|
||||
#define IIC_SDA_PIN GPIO_PIN_4
|
||||
#define IIC_SDA_PORT GPIOB
|
||||
#define IIC_SCL_PIN GPIO_PIN_7
|
||||
#define IIC_SCL_PORT GPIOA
|
||||
|
||||
#define HP20X_ADDRESSCMD 0x77<<1 //CSB PIN = 0£¬µÍµçƽ
|
||||
|
||||
#define HP20X_READ_P 0x30 //read_p command
|
||||
#define HP20X_READ_A 0x31 //read_a command
|
||||
#define HP20X_READ_T 0x32 //read_t command
|
||||
#define HP20X_READ_PT 0x10 //read_pt command
|
||||
#define HP20X_READ_AT 0x11 //read_at command
|
||||
|
||||
#define HP20X_CONVERT_OSR1024 0x48
|
||||
|
||||
void hp203_set_mode();
|
||||
void Hp203bReadPressure(void);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /*__ __HP203B_H__ */
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -189,7 +189,7 @@
|
|||
<option>
|
||||
<name>TrustZoneModes</name>
|
||||
<version>0</version>
|
||||
<state>1</state>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OGAarch64Abi</name>
|
||||
|
@ -250,23 +250,23 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>CCListCFile</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCListCMnemonics</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCListCMessages</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCListAssFile</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCListAssSource</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCEnableRemarks</name>
|
||||
|
@ -335,7 +335,7 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>CCCompilerRuntimeInfo</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>IFpuProcessor</name>
|
||||
|
@ -373,6 +373,7 @@
|
|||
<state>$PROJ_DIR$/../Middlewares/ST/ARM/DSP/Inc</state>
|
||||
<state>$PROJ_DIR$\..\tools</state>
|
||||
<state>$PROJ_DIR$\..\App\Inc</state>
|
||||
<state>$PROJ_DIR$\..\Drivers\HP203B </state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCStdIncCheck</name>
|
||||
|
@ -552,7 +553,7 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>AList</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>AListHeader</name>
|
||||
|
@ -564,11 +565,11 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>Includes</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>MacDefs</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>MacExps</name>
|
||||
|
@ -576,19 +577,19 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>MacExec</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OnlyAssed</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>MultiLine</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>PageLengthCheck</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>PageLength</name>
|
||||
|
@ -600,19 +601,19 @@
|
|||
</option>
|
||||
<option>
|
||||
<name>AXRef</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>AXRefDefines</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>AXRefInternal</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>AXRefDual</name>
|
||||
<state>0</state>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>AProcessor</name>
|
||||
|
@ -700,7 +701,7 @@
|
|||
<data>
|
||||
<extensions></extensions>
|
||||
<cmdline></cmdline>
|
||||
<hasPrio>0</hasPrio>
|
||||
<hasPrio>8</hasPrio>
|
||||
<buildSequence>inputOutputBased</buildSequence>
|
||||
</data>
|
||||
</settings>
|
||||
|
@ -1223,6 +1224,15 @@
|
|||
<name>$PROJ_DIR$\..\Drivers\Filter\filter.h</name>
|
||||
</file>
|
||||
</group>
|
||||
<group>
|
||||
<name>HP203B</name>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\Drivers\HP203B\hp203b.c</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\Drivers\HP203B\hp203b.h</name>
|
||||
</file>
|
||||
</group>
|
||||
<group>
|
||||
<name>RingQueue</name>
|
||||
<file>
|
||||
|
|
|
@ -1539,6 +1539,15 @@
|
|||
<name>$PROJ_DIR$\..\Drivers\Filter\filter.h</name>
|
||||
</file>
|
||||
</group>
|
||||
<group>
|
||||
<name>HP203B</name>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\Drivers\HP203B\hp203b.c</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\Drivers\HP203B\hp203b.h</name>
|
||||
</file>
|
||||
</group>
|
||||
<group>
|
||||
<name>RingQueue</name>
|
||||
<file>
|
||||
|
|
|
@ -1,5 +1,539 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<BuildDb>
|
||||
<Tool>
|
||||
<Name>compiler</Name>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\RingQueue\ring_queue.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\RingQueue_10900368326811202236.dir\ring_queue.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\RingQueue_10900368326811202236.dir\ring_queue.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\dma.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\dma.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\dma.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhelp.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_msp.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_autocomplete.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhist.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_timebase_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\main.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_it.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\usart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Filter\filter.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\HP203B_1856951872026386537.dir\hp203b.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\HP203B_1856951872026386537.dir\hp203b.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\system_stm32l4xx.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\frt_protocol.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\inflash.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\uart_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\anemometer_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\gpio.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\gpio.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\gpio.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\croutine.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\i2c.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\freertos.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\freertos.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\freertos.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\spi.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Sht3x\sht30.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\timers.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\queue.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\list.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\tasks.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
<Tool>
|
||||
<Name>linker</Name>
|
||||
<Parent>
|
||||
|
@ -8,10 +542,19 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\micro_climate.map</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
<Tool>
|
||||
<Name>assembler</Name>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\soft\soft\EWARM\micro_climate\Exe\micro_climate.out</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\startup_stm32l496xx.s</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\soft\soft\EWARM\micro_climate\List\micro_climate.map</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EWARM_18443280873093131863.dir\startup_stm32l496xx.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\portasm.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
|
|
Binary file not shown.
|
@ -1,287 +1,95 @@
|
|||
# ninja log v5
|
||||
5 42 7417257153649773 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/EWARM/startup_stm32l496xx.o 4403b216f7648447
|
||||
1209 1681 7417257169926393 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal.o 4d219ca1503e0701
|
||||
2188 2556 7417257178711329 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_flash_ramfunc.o 7a796faf16dbd43
|
||||
922 1386 7417257167044448 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/CMSIS/system_stm32l4xx.o e9e546a87593883f
|
||||
466 896 7417257161818162 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/stm32l4xx_hal_msp.o 7ce50bd11e57f2c
|
||||
617 1034 7417257163383128 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/stm32l4xx_it.o f06484ff48cf8838
|
||||
1168 1631 7417257169481205 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_cortex.o 435645c6d7a5f6ef
|
||||
417 845 7417257161607969 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/spi.o 9d95a1efa0c5c0bd
|
||||
4982 5239 7417257205638923 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/event_groups.o 4426a87c1fb51210
|
||||
1007 1143 7417257164364013 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/RingQueue/ring_queue.o d40302b0ba1113b8
|
||||
3469 6252 7417257215587423 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_tim.o 68923ca53a96c0d1
|
||||
11 651 7417283246595677 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/main.o 239935f318dc7312
|
||||
1872 1991 7417257173149329 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Shell/shell_cmdhist.o cf594ff6d0244331
|
||||
541 988 7417257162812605 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/i2c.o 5ecd7425c33bd017
|
||||
871 1451 7417257167691451 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/usart.o d631712936d34ff6
|
||||
1790 2211 7417257174999098 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Shell/shell_uart.o 20b72b197aa109f5
|
||||
6688 6762 7397161390414133 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/com.o 103e88bad8c24822
|
||||
15 746 7417283247536532 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/tim.o 5910ed6fa9fb213e
|
||||
6104 6844 7397164291451318 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Tools/xcorr.o b9219550fd77629e
|
||||
2235 2676 7417257179922429 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_exti.o 569b252171a37046
|
||||
1409 1815 7417257171147508 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_dma_ex.o 162319fa988eee85
|
||||
2562 3045 7397126833060462 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_dac_ex.o 33165405c9f08526
|
||||
5802 6517 7417257218410241 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/queue.o cc12a9580dd2f1f1
|
||||
1654 2864 7417257181786265 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_adc_ex.o 7573a2f30e2b0d4b
|
||||
1122 1764 7417257170777170 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_dma.o 778be816c47c2299
|
||||
5366 5542 7417257208667037 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/port.o 838993468cb32f95
|
||||
4423 6024 7417257213352870 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_spi.o 386a0f6fedfbf03a
|
||||
10 505 7417278357522551 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/adc.o b6ce9dab1c066562
|
||||
2939 4194 7417257195089268 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_rcc_ex.o f6c60d52e5f8cd64
|
||||
494 945 7417257162312146 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/gpio.o fea725bac49a8c32
|
||||
716 1192 7397126814284155 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/dac.o eaeb1b063ee9cdfe
|
||||
1853 2460 7397126827172435 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_dac.o ddcfefdb91a5d167
|
||||
1475 2991 7417257183064793 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_adc.o 3f4005b3ba7af123
|
||||
4219 4724 7417257200343664 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_uart_ex.o 240f6a9aa23ee15d
|
||||
1249 1269 7417283252960101 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
2890 3405 7417257187241458 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_gpio.o d6044a82b53639aa
|
||||
2400 2915 7417257182016468 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_flash.o 769c5d3c242c8b06
|
||||
3012 3446 7417257187361563 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_i2c_ex.o 13d3d9c09609fba0
|
||||
3711 5345 7417257206555110 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_uart.o a2afeeb2a9ac8e9f
|
||||
2580 3231 7417257185457141 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_flash_ex.o 6d0a61d693f7433b
|
||||
3137 4037 7417257193517845 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_rcc.o b764a4b587fc0b1a
|
||||
5313 5831 7417257211531208 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/cmsis_os.o 64bfdebcaf9834e6
|
||||
2148 3114 7417257184315917 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Shell/shell.o 7ecc392f5c53dd53
|
||||
3252 3688 7417257190047360 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_pwr.o 1443d3975f3f8d14
|
||||
3428 3987 7417257193037409 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_pwr_ex.o a67789947fa2e121
|
||||
5566 5693 7417257210173914 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/list.o 889918de843341da
|
||||
4066 4400 7417257197174696 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_spi_ex.o db8e2b7b04859946
|
||||
4009 5288 7417257205869129 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_tim_ex.o 70a93fff0ee036d0
|
||||
2702 5394 7417257206815345 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/STM32L4xx_HAL_Driver/stm32l4xx_hal_i2c.o b0a519b3fcafc6fc
|
||||
971 1183 7417283251899165 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
2010 2165 7417257174583096 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Shell/shell_cmdhelp.o 7dd4d03747b60130
|
||||
5713 5880 7417257212061696 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/croutine.o a94b0bcf63632f81
|
||||
1705 2124 7417257174466028 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Shell/shell_autocomplete.o 57267004747fcc7e
|
||||
5708 6085 7397164283894828 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Tools/arr_tool.o aad9b393f2dbd79a
|
||||
30 592 7417257158507124 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/uart_dev.o de7886a69b8f232b
|
||||
17 470 7417257157382751 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/inflash.o f543c330adf0b150
|
||||
967 1102 7417257164253913 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Filter/filter.o 3937299df4a762ac
|
||||
22 396 7417257157142536 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/dma.o 71a1b8332b480307
|
||||
48 442 7417257157392765 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/stm32l4xx_hal_timebase_tim.o ef41e66092447d29
|
||||
4751 4959 7417257202838221 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/heap_4.o a60f66d996ef02b2
|
||||
5263 5779 7417257211000746 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/stream_buffer.o cc4c9be46fe30fd2
|
||||
5855 5956 7417257212832401 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/timers.o 220961126d8198b2
|
||||
5867 6322 7397164286259473 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Tools/delay.o a2358d8a3884ce
|
||||
6041 6065 7417257213973432 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/portasm.o 121f1708eb3ff676
|
||||
5419 6352 7417257216716401 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Middlewares/FreeRTOS/tasks.o 7eae81368a742cb2
|
||||
6566 7100 7397161393675108 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/timer.o b37e82b06921f9cb
|
||||
23 804 7417283248097040 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/frt_protocol.o e8c39cd76a13eff3
|
||||
5 610 7417283246185293 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/freertos.o 7b99df0660a1e165
|
||||
18 951 7417283249581445 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
1839 2375 7417257176911194 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Drivers/Sht3x/sht30.o e219c964efbf0b6c
|
||||
4 318 7417283396270246 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/adc.o b6ce9dab1c066562
|
||||
334 522 7417283398280115 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
575 594 7417283399160922 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
5 510 7417294919038406 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/Core/main.o 239935f318dc7312
|
||||
11 798 7417294921879081 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
815 1004 7417294923965123 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
1059 1081 7417294924905981 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
5 643 7417305097348450 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
659 851 7417305099433788 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
901 923 7417305100334620 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 665 7417309215113293 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
681 865 7417309217104787 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
918 939 7417309218013612 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 724 7417310515889541 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
742 936 7417310517980833 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
986 1005 7417310518859264 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 901 7417312954088334 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
919 1107 7417312956161316 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
1168 1189 7417312957152221 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 787 7417315055171997 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
809 1001 7417315057313946 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
1059 1080 7417315058282451 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 638 7417319841080580 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
654 840 7417319843074696 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
893 913 7417319843975516 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
5 715 7417322693522310 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
733 921 7417322695604812 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
989 1009 7417322696652066 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
5 761 7417323667029611 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
783 972 7417323669169019 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
1032 1053 7417323670149915 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 641 7417323763428282 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
662 852 7417323765535777 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
900 920 7417323766397685 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
4 687 7417324916205321 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Obj/Application/User/App/Src/anemometer_dev.o 82240caaacf2391b
|
||||
712 911 7417324918498604 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.out 485844d63b4b91b1
|
||||
970 989 7417324919449460 C:/Users/huabuduo/OneDrive/Design/PCB/SelfDesign/micro_climate/trunk/hardware/V18/soft/EWARM/micro_climate/Exe/micro_climate.hex 8b324a7fd31de4dd
|
||||
526 936 7418465874692151 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o 54dd59aafaa83b8b
|
||||
1 977 7418465874742175 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o baf0f225dab99f60
|
||||
571 1027 7418465875125678 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/gpio.o 9877861b82843c1a
|
||||
396 1062 7418465875245680 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o 9dd37a92cab61b20
|
||||
603 1173 7418465877059661 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o 5f136c6624f23b43
|
||||
495 1231 7418465877439662 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o ace61417dd312f9f
|
||||
427 1269 7418465877249660 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o f39f186bf5e9c0e6
|
||||
458 1367 7418465878959659 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 829ee7070692c821
|
||||
980 1421 7418465879399681 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_msp.o 1b18041ad00434ee
|
||||
938 1467 7418465879719685 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o 43d601d0b4c2849b
|
||||
1270 1869 7418465881866882 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o 70cb604e07092454
|
||||
1064 1935 7418465884687916 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.o bf67a288678e770c
|
||||
1029 2005 7418465885307918 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o c1209822a2edf65c
|
||||
1175 2041 7418465885297922 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o ca4cb8e076ac83ec
|
||||
1469 2086 7418465885917913 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 6554d4ed9f8cd9ac
|
||||
1232 2121 7418465886097939 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o 8bd737623ba04e21
|
||||
1938 2191 7418465887347913 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/RingQueue_10900368326811202236.dir/ring_queue.o 7b6f94202609633e
|
||||
2007 2240 7418465887627923 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o c7e5d0faca5959e5
|
||||
2043 2275 7418465887567910 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhist.o d7d75790aa815631
|
||||
1369 2319 7418465887837908 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o a3a093ce01d581e7
|
||||
1423 2515 7418465890497908 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o caf7f9e4667f1820
|
||||
2088 2576 7418465891077905 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o 4c5592b44e737ee1
|
||||
2241 2636 7418465891697906 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.o b56f27c39951a4a8
|
||||
2122 2693 7418465892237906 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o 1479b3891fd42bd
|
||||
2321 2843 7418465893807901 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o 25da864d4b13d861
|
||||
1871 2895 7418465894187903 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o a5e8b5676dee6a7
|
||||
2517 2958 7418465894857901 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o 880e68c1f8bbfca1
|
||||
2639 3066 7418465896047900 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.o 37776bea155fa7c5
|
||||
2579 3220 7418465897567906 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.o e391e16f90211406
|
||||
2277 3285 7418465898147900 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o d4824e08ee1c5191
|
||||
2846 3341 7418465898447894 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o d6487b5fcff3fc2f
|
||||
2194 3376 7418465898558511 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o 1d57e0481fd760ee
|
||||
2897 3432 7418465899217907 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o b0b79702e7d0b11d
|
||||
2961 3601 7418465901352274 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o 698e28cc909e63eb
|
||||
3288 3726 7418465902622270 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.o 6c6c5d65f7668ef2
|
||||
3068 4127 7418465903092270 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o b258135edf24d396
|
||||
3223 4168 7418465905432271 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o af9d1c0b66584a9a
|
||||
3378 4204 7418465902862274 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o d42a2684d63cb13e
|
||||
3344 4254 7418465907902264 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o 155d6b926f857747
|
||||
3603 4396 7418465909312275 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o 6272c79de2744d0d
|
||||
4206 4451 7418465909922266 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o fa2901fba7ada0c7
|
||||
4399 4528 7418465910692261 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o 413eceac15e680d
|
||||
4129 4589 7418465910832257 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o a26f86c6aa92d130
|
||||
3435 4681 7418465912132256 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o 3a36b018cdb0f294
|
||||
4256 4859 7418465912622257 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o 3a68a5d13d77f564
|
||||
2695 4922 7418465914372256 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o 1915af0291d63811
|
||||
4591 5067 7418465916094310 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/event_groups.o ff6359ef4fd779d1
|
||||
4531 5150 7418465916894307 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.o 46301c9b14aa9b7d
|
||||
5070 5244 7418465917864310 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/list.o c1002288cb6b39e4
|
||||
4170 5290 7418465917854310 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o 3be1f98d4107cffa
|
||||
5246 5433 7418465919755244 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/port.o 13f5778316a1e62d
|
||||
4925 5550 7418465920975243 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 2add1bfbd9f1c902
|
||||
4684 5596 7418465921435237 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o d5236f420bd1547c
|
||||
4862 5602 7418465921125244 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o d5a8da0fe909f23a
|
||||
5436 5611 7418465921515240 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o ae1de8654ec1e60f
|
||||
5292 5825 7418465923675238 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/queue.o 491bc92ede87b19
|
||||
4453 5892 7418465924255236 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.o 705cb74be94bf929
|
||||
5553 5896 7418465924375240 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o c1dd1dd665d24350
|
||||
5153 5969 7418465925100319 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o 9ab5ad336c03e1ad
|
||||
3729 6094 7418465926290297 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.o 6ff3b7338a8479d7
|
||||
6096 6485 7418465930220107 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.out a137bbb0f2d02a0f
|
||||
6486 6581 7418465931298348 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.hex ab1bd272bc09f178
|
||||
370 816 7418470446385524 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o ca4cb8e076ac83ec
|
||||
2 862 7418470446743770 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o 8bd737623ba04e21
|
||||
400 1073 7418470448833726 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o d5a8da0fe909f23a
|
||||
1074 1380 7418470452033277 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.out a137bbb0f2d02a0f
|
||||
1382 1483 7418470453173542 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.hex ab1bd272bc09f178
|
||||
3 727 7418471032449117 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 829ee7070692c821
|
||||
727 1087 7418471036033108 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.out a137bbb0f2d02a0f
|
||||
1088 1184 7418471037124068 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.hex ab1bd272bc09f178
|
||||
2 867 7418472184816940 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o d5a8da0fe909f23a
|
||||
868 1169 7418472187852815 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.out a137bbb0f2d02a0f
|
||||
1171 1303 7418472189303302 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.hex ab1bd272bc09f178
|
||||
2 710 7418472965540991 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o 54dd59aafaa83b8b
|
||||
419 835 7418472966791025 E:/Y/IAR/soft/soft/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 829ee7070692c821
|
||||
837 1156 7418472969986545 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.out a137bbb0f2d02a0f
|
||||
1157 1261 7418472971176718 E:/Y/IAR/soft/soft/EWARM/micro_climate/Exe/micro_climate.hex ab1bd272bc09f178
|
||||
416 1179 7418490110256464 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/gpio.o 7a4ced00cc1c7fdc
|
||||
1 1237 7418490110785314 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o a070a09f1188c0a0
|
||||
447 1277 7418490110505317 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.o ce2d2f1a8440dd91
|
||||
381 1314 7418490110665316 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o 906b9169f7dd8326
|
||||
938 1371 7418490112008717 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o c3b544cefd467e3a
|
||||
350 1418 7418490111435318 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o 11e09f87928d81bc
|
||||
516 1464 7418490112817588 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o 964a1bc2085813ac
|
||||
1420 1572 7418490114261322 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/RingQueue_10900368326811202236.dir/ring_queue.o 5748bc7f606f19e6
|
||||
480 1647 7418490114441312 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o e31ec8238b99653b
|
||||
1181 1703 7418490115241305 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_msp.o fdce2451dd04f71d
|
||||
1279 1749 7418490115801301 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o 3d4473179426797d
|
||||
1574 1782 7418490116051305 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 15242202ceebadc3
|
||||
1238 1829 7418490116333598 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o 621abb33c99797ae
|
||||
1650 1900 7418490117533597 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhist.o 810f470683154410
|
||||
1705 1954 7418490117733608 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o 3cca9261f33b2cda
|
||||
1315 2006 7418490118263592 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o 30091de56ee15e52
|
||||
1374 2060 7418490119018225 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o 338a8374470e7aa9
|
||||
1750 2162 7418490120128172 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o a68467d7210c39cf
|
||||
1783 2279 7418490121238170 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o 1b4da38053c8d1df
|
||||
1903 2650 7418490122138158 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.o 9a3d564a8ed28afc
|
||||
1466 2690 7418490122018169 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o c30109570989df2a
|
||||
1956 2850 7418490126918153 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o 29827f877e0f863f
|
||||
2009 2888 7418490126948171 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o fe5e1c4d420cc614
|
||||
2062 2937 7418490127608164 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.o b84c636b3731534
|
||||
1831 3020 7418490128598153 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o c1172d97efad37a0
|
||||
2165 3108 7418490129502578 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.o 6e6787aab293f8b9
|
||||
2692 3151 7418490129632576 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o 375873ca296f4a70
|
||||
2282 3203 7418490130422594 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o a8a1220a64433c19
|
||||
2653 3263 7418490130652576 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o 4f0d626f01cf2039
|
||||
2940 3362 7418490132102570 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o e665c896a1fe56b7
|
||||
3206 3545 7418490133912567 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.o 8457a524a415d73f
|
||||
3109 3585 7418490133962569 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o 444ba1ec034144b3
|
||||
3023 3642 7418490134302576 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o d6910147c65633bb
|
||||
3266 3783 7418490136283165 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o 36aa2adbd966fb97
|
||||
2852 3904 7418490137453171 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o 14a6475adabe2986
|
||||
3548 3961 7418490137733181 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o 101ffeb8ad7f4515
|
||||
3153 4000 7418490138093167 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o 511a5eb4f1c96025
|
||||
3587 4079 7418490139253166 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.o fa18d81d9a41b77f
|
||||
3964 4137 7418490139933165 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o a57434e33f0fd9e5
|
||||
3906 4514 7418490142013178 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o bd2462412e4d1226
|
||||
2890 4549 7418490140763186 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o a1ddf7116f9bbc01
|
||||
4516 4708 7418490145613154 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/list.o 21b2fd6a181b9574
|
||||
4081 4745 7418490145653153 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o fafc155bba0cc024
|
||||
4140 4878 7418490146053162 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/event_groups.o ba4cc35cb4ae5c9b
|
||||
3645 4914 7418490146613151 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.o 96416672d88ddbc1
|
||||
4747 5292 7418490147433154 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o 9de7e821f57bcfb9
|
||||
4551 5353 7418490151263148 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o dd962b116d6dbd0
|
||||
3786 5378 7418490151223190 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o 96f789ad97f6f414
|
||||
3365 5412 7418490151593143 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.o 9cb55521fc8d6131
|
||||
5355 5455 7418490152565402 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o d7f2b6861881669
|
||||
4710 5503 7418490153585389 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o 7e4e5e7aef356d15
|
||||
4917 5607 7418490154615376 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/port.o d790742f9f029e4b
|
||||
5294 5812 7418490156615378 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o a64e6659a683deb
|
||||
5457 5819 7418490156645381 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 3189b1d3f2764278
|
||||
5505 5864 7418490157145370 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o ec550a0e325a20ca
|
||||
4880 5939 7418490157925412 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/queue.o d6622a02a379eb34
|
||||
5610 5970 7418490158200342 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o 494f181542c80cd2
|
||||
5414 5993 7418490158420930 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
5380 6053 7418490159030356 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 819d1c4080371a7c
|
||||
4003 6561 7418490164083737 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o e5916d041e7142e3
|
||||
6563 6873 7418490167228851 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
6875 6965 7418490168271262 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
389 969 7418497994728696 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
3 1046 7418497995468742 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 819d1c4080371a7c
|
||||
1048 1377 7418497998900323 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1379 1474 7418497999985816 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 809 7418499967244764 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
810 1155 7418499970698643 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1156 1257 7418499971843899 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 965 7418505470290826 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o 11e09f87928d81bc
|
||||
583 1028 7418505471050822 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o 494f181542c80cd2
|
||||
378 1065 7418505471060825 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o e31ec8238b99653b
|
||||
410 1068 7418505470860820 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o 621abb33c99797ae
|
||||
475 1124 7418505472044694 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o a68467d7210c39cf
|
||||
508 1203 7418505472834697 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o fe5e1c4d420cc614
|
||||
544 1234 7418505473094712 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 819d1c4080371a7c
|
||||
967 1285 7418505473674732 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 3189b1d3f2764278
|
||||
440 1386 7418505474554732 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o c30109570989df2a
|
||||
1031 1493 7418505475729854 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
1495 1812 7418505478920573 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1814 1910 7418505480042548 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 740 7418508066033014 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
740 1053 7418508069148059 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1055 1156 7418508070297028 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 870 7418509426858951 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
871 1191 7418509430178970 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1193 1310 7418509431483491 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 740 7418510824103172 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
741 1056 7418510827237042 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1059 1153 7418510828328964 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 821 7418511905532404 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
822 1159 7418511908883500 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1161 1257 7418511909990869 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 864 7418514844369833 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
865 1208 7418514847892433 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1210 1311 7418514849053199 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 799 7418517770931144 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
800 1122 7418517774145081 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1124 1224 7418517775296832 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 847 7418548028672586 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o 4be83669c2d0a369
|
||||
848 1164 7418548031848032 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 763487de810a2594
|
||||
1166 1267 7418548033002632 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
1 2174 7433218101427636 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o c8c5cbca57971e0b
|
||||
1781 2227 7433218101578100 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/gpio.o dd84df28781fd3e0
|
||||
1709 2259 7433218101998112 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.o b96f5f1ee0804a34
|
||||
1850 2306 7433218102759225 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o 71b19609b107ce27
|
||||
1682 2339 7433218102769232 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o cef6cdc0a7d01b1b
|
||||
1879 2373 7433218102769232 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o 1203dbac1e819900
|
||||
1743 2418 7433218102939224 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o 319c6e10fbb04bbd
|
||||
2343 2522 7433218104965035 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/RingQueue_10900368326811202236.dir/ring_queue.o b693b187cbebe8ce
|
||||
2375 2574 7433218105465026 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 641d81576415472d
|
||||
1818 2646 7433218105635025 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a429be1e53bcd823
|
||||
2176 2721 7433218106885031 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_msp.o add68300c5b370c9
|
||||
2525 2767 7433218107405028 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o 18d388e77a660f2
|
||||
2260 2819 7433218107868197 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o 6aeadcc2824295f4
|
||||
2647 2857 7433218108319907 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhist.o 1c666f5556206dd0
|
||||
2230 2900 7433218108349910 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o e99e1bafff27618
|
||||
2604 2943 7433218109159905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o b5c9332df5222325
|
||||
2309 3069 7433218110361670 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o feec05c561e2c7f
|
||||
2420 3126 7433218110932938 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/HP203B_1856951872026386537.dir/hp203b.o 320226329f600f64
|
||||
2902 3322 7433218112902945 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o d216fb7982ba00ea
|
||||
2769 3378 7433218113482945 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o 864bf744734043fc
|
||||
2946 3413 7433218113492939 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.o 205b98dfdb6f8569
|
||||
3071 3597 7433218115656420 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o 7bafcd4fc71f6544
|
||||
3128 3677 7433218116456439 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.o e892ba892be51978
|
||||
2724 3724 7433218116536432 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o 8916e0dd8b30b887
|
||||
3324 3821 7433218117882974 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o 8a86663948ee50ae
|
||||
3381 3856 7433218117952968 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o 71d3aadfab54d7a2
|
||||
2820 3921 7433218118910561 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o 726174f5ebfe6e19
|
||||
3416 3975 7433218119101353 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o d1562b1ee2a1e7cd
|
||||
3726 4159 7433218121261349 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o 50775cc6b82c5068
|
||||
2859 4217 7433218121691351 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o 43c4e4e331e0759c
|
||||
3824 4273 7433218122421356 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o 4b594db3ddcbac8d
|
||||
3680 4372 7433218123421343 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.o 1bce1c62464cd13c
|
||||
3924 4416 7433218123491346 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.o 965dd0546f7872a
|
||||
3859 4468 7433218123991342 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o c73f6b456357e977
|
||||
4418 4676 7433218126490351 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/event_groups.o 5461da67d95347a4
|
||||
4162 4730 7433218127010355 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o f50b166d2638e326
|
||||
3977 4983 7433218129530353 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o 3ce66c3c77ef6470
|
||||
4219 5049 7433218130171709 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o d395ea8325fd8ce7
|
||||
4986 5151 7433218131271704 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o 5983f46ad85461c4
|
||||
4679 5208 7433218131797258 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o 9bed2ebbd09bd9eb
|
||||
5211 5430 7433218134054414 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o 2870ea84e3bc5109
|
||||
5154 5679 7433218136489961 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o a546855b0e1563f3
|
||||
5052 5747 7433218136520288 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.o 62cd258143816854
|
||||
5433 5783 7433218137100526 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o 97d4445452c7ac15
|
||||
4471 5835 7433218136590312 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o ee63aaaaef318fa5
|
||||
4275 5873 7433218136830517 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o 691565bd13d82cac
|
||||
4375 5910 7433218136930513 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.o ebb186eb2868b348
|
||||
3600 5967 7433218138459082 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.o 6d3027b424cad32d
|
||||
5749 6302 7433218142706991 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 86e4e2eabfd9b8d
|
||||
5875 6340 7433218142746991 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o 2ba9941b675d4f26
|
||||
5837 6374 7433218142677000 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o 1260071807c5af66
|
||||
6304 6513 7433218144878414 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/port.o 5fdc6a4ab37e8d5a
|
||||
5912 6579 7433218145498417 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/queue.o d4b348337b8aca2a
|
||||
6516 6613 7433218145598416 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 983b34495e4a9f06
|
||||
5785 6616 7433218145488422 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
6376 6625 7433218146010339 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o 699dc8da301c0a76
|
||||
5681 6638 7433218146010339 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o f57e339362031cdd
|
||||
6580 6733 7433218147050339 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/list.o 234858baef3e49b2
|
||||
6343 6771 7433218147460327 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o 8f0570490d582312
|
||||
5969 6848 7433218148210329 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o 81855ad0692f4544
|
||||
4733 6981 7433218149420628 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o 34ca038845ca2e3b
|
||||
6983 8881 7433218168392156 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
8883 9100 7433218170792208 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 879 7435105120103453 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a429be1e53bcd823
|
||||
409 892 7435105120223136 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 86e4e2eabfd9b8d
|
||||
375 922 7435105120442325 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o cef6cdc0a7d01b1b
|
||||
443 1109 7435105122331544 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
344 1178 7435105122989337 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o f57e339362031cdd
|
||||
1180 2228 7435105133613149 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
2231 2343 7435105134897608 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 929 7435111798573013 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
929 1307 7435111802450627 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
1309 1421 7435111803725178 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
44 1013 7439266289039930 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o cef6cdc0a7d01b1b
|
||||
413 1150 7439266290289927 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
388 1293 7439266291713152 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o f57e339362031cdd
|
||||
1295 3491 7439266313821963 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
3493 3825 7439266317277863 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 510 7439269798636627 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
511 720 7439269800836868 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
721 738 7439269801139364 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 367 7439277462590724 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a429be1e53bcd823
|
||||
30 502 7439277463950272 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
504 710 7439277466020857 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
712 728 7439277466310846 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
4 1178 7441120920486801 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a429be1e53bcd823
|
||||
399 1248 7441120921209160 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o feec05c561e2c7f
|
||||
698 1385 7441120922559159 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o a9b8d3bd67a023b6
|
||||
668 1492 7441120923637254 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o f57e339362031cdd
|
||||
1495 3083 7441120939643234 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
3085 3290 7441120941839031 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 881 7441121856874424 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o f57e339362031cdd
|
||||
882 1542 7441121863456126 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 9a9087db997bb053
|
||||
1544 1671 7441121864882378 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -1,93 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\anemometer_dev.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\anemometer_dev.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter\filter.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\inflash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\fdacoefs.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\anemometer_dev.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\anemometer_dev.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\anemometer_dev.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,61 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\collect_data.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\collect_data.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\collect_data.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\collect_data.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\collect_data.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\collect_data.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\com.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\com.c
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\com.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\com.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\com.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,94 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\frt_protocol.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\frt_protocol.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\frt_protocol.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\timer.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\inflash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x\sht30.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\frt_protocol.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\frt_protocol.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\frt_protocol.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,60 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\inflash.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\inflash.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\inflash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\inflash.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\inflash.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\inflash.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,80 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\jxct_protocol.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\jxct_protocol.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\jxct_protocol.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\timer.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\inflash.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\jxct_protocol.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\jxct_protocol.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\jxct_protocol.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,87 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\timer.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\timer.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\timer.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\timer.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\timer.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\timer.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,61 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\uart_dev.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\uart_dev.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdarg.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\timer.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src\uart_dev.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\uart_dev.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\App\Src\uart_dev.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\adc.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\adc.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\adc.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\adc.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\adc.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,50 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\dac.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\dac.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dac.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\dma.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\dma.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\dma.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\dma.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\dma.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,93 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\freertos.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\freertos.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\frt_protocol.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\timer.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\freertos.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\freertos.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\freertos.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\gpio.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\gpio.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\gpio.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\gpio.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\gpio.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\i2c.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\i2c.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\i2c.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\i2c.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\i2c.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,87 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\main.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x\sht30.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\xcorr.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\main.c
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\main.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\main.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\main.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,48 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\spi.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\spi.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\spi.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\spi.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\spi.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,47 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_msp.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_hal_msp.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_hal_msp.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_msp.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_msp.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,46 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_timebase_tim.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_hal_timebase_tim.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_hal_timebase_tim.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_timebase_tim.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_hal_timebase_tim.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,60 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_it.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_it.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_it.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\assertions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\pdebug.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\uart_dev.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\stm32l4xx_it.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_it.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\stm32l4xx_it.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,85 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\tim.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\tim.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\gpio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdio.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product_string.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\math.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_float_setup.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools\arr_tool.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\intrinsics.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\float.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\limits.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\tim.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\tim.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\tim.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
Binary file not shown.
|
@ -1,50 +0,0 @@
|
|||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\usart.pbi: \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\usart.c \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\usart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\main.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stdint.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ycheck.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\yvals.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Defaults.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Config_Normal.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\DLib_Product.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\stddef.h \
|
||||
C:\Program\ Files\IAR\ Systems\Embedded\ Workbench\ 9.1\arm\inc\c\ysizet.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc\comm_types.h \
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue\ring_queue.h
|
|
@ -1,499 +0,0 @@
|
|||
"C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src\usart.c"
|
||||
-std=c11
|
||||
-ferror-limit=0
|
||||
-fbracket-depth=512
|
||||
-funsigned-char
|
||||
-MD
|
||||
-MF
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\usart.pbi.dep
|
||||
-o
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\micro_climate\BrowseInfo\Application\User\Core\usart.pbi
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Core/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Drivers/CMSIS/Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/Third_Party/FreeRTOS/Source/portable/IAR/ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM/../Middlewares/ST/ARM/DSP/Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\EWARM\..\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\DSP\Include\
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\aarch32
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Core\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Device\ST\STM32L4xx\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\CMSIS\Include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Src
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Device
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Filter
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\RingQueue
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Shell
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Drivers\Sht3x
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\include
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\Middlewares\ST\ARM\DSP\Inc
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\tools
|
||||
-I
|
||||
C:\Users\huabuduo\OneDrive\Design\PCB\SelfDesign\micro_climate\trunk\hardware\V18\soft\App\Inc
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\CMSIS\Core\Include
|
||||
-I
|
||||
C:\Program Files\IAR Systems\Embedded Workbench 9.1\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__=9030001
|
||||
-D__BUILD_NUMBER__=335
|
||||
-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__=0xa0b01
|
||||
-D__IAR_COMPILERBASE_STR__=10.11.1.1407
|
||||
-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__=602
|
||||
-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
|
||||
-DSTM32L496xx=1
|
||||
-DARM_MATH_CM4=1
|
||||
-DARM_MATH_LOOPUNROLL=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm\inc\c\DLib_Config_Normal.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="C:\\Program Files\\IAR Systems\\Embedded Workbench 9.1\\arm\\inc\\c\\DLib_Config_Normal.h"
|
||||
-D__VERSION__="IAR ANSI C/C++ Compiler V9.30.1.335/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
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
Binary file not shown.
|
@ -90,4 +90,6 @@ E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Core_13247989168731456611.
|
|||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\pdebug.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\uart_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\frt_protocol.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\timer.h
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\timer.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\inflash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B\hp203b.h
|
||||
|
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Core_13247989168731456611.dir\gpio.pbi: \
|
||||
E:\Y\IAR\micro_climate\Core\Src\gpio.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
E:\Y\IAR\micro_climate\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_Normal.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\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\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Core_13247989168731456611.dir\i2c.pbi: \
|
||||
E:\Y\IAR\micro_climate\Core\Src\i2c.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
E:\Y\IAR\micro_climate\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_Normal.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\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\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
|
@ -47,6 +47,8 @@ E:\Y\IAR\micro_climate\EWARM\..\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\
|
||||
|
@ -93,6 +95,8 @@ E:\Y\IAR\micro_climate\tools
|
|||
-I
|
||||
E:\Y\IAR\micro_climate\App\Inc
|
||||
-I
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\Core\Include
|
||||
-I
|
||||
D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue