增加蓝牙透传模块驱动
This commit is contained in:
parent
a8eef9a825
commit
f48ea0221c
|
|
@ -0,0 +1,644 @@
|
|||
#include "BLE.h"
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
|
||||
#define BLE_DBG_EN 0 // 1=开启调试输出,0=关闭
|
||||
|
||||
#if (BLE_DBG_EN)
|
||||
#define DEBUG(format, ...) printf("[BLE] " format, ##__VA_ARGS__)
|
||||
#else
|
||||
#define DEBUG(format, ...) // 关闭时,宏替换为空,不产生任何代码
|
||||
#endif
|
||||
|
||||
|
||||
char ble_rx_buffer[256];
|
||||
BLE_STATE curr_state;
|
||||
static size_t current_cmd_index = 0;
|
||||
static uint32_t cmd_start_time;
|
||||
static uint8_t current_try_count = 0;
|
||||
static CmdExecutor_t init_executor;
|
||||
static CmdExecutor_t first_connect_executor;
|
||||
static CmdExecutor_t connect_executor;
|
||||
static CmdExecutor_t set_executor;
|
||||
|
||||
|
||||
const char* ble_state_names[] = {
|
||||
"BLE_INIT",
|
||||
"BLE_FIRST_CONECT",
|
||||
"BLE_CONNECTED",
|
||||
"BLE_READY",
|
||||
"BLE_ERROR",
|
||||
"BLE_SET",
|
||||
"BLE_WAITTING"
|
||||
};
|
||||
|
||||
const char* ble_sub_state_names[] = {
|
||||
"BLE_SUB_STATE_IDLE",
|
||||
"BLE_SUB_STATE_SEND_WAIT",
|
||||
"BLE_SUB_STATE_PROCESS_RESP"
|
||||
};
|
||||
|
||||
|
||||
void BLE_Init(void)
|
||||
{
|
||||
curr_state = BLE_INIT;
|
||||
ble_cmd_rec_done = 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
BLE_STATE BLE_GetState(void)
|
||||
{
|
||||
|
||||
return curr_state;
|
||||
|
||||
}
|
||||
|
||||
|
||||
void BLE_StateMachine_Handler(void)
|
||||
{
|
||||
|
||||
switch(curr_state)
|
||||
{
|
||||
case BLE_INIT :
|
||||
{
|
||||
if(init_executor.sequence == NULL)
|
||||
{
|
||||
init_executor.sequence = ble_init_sequence;
|
||||
init_executor.cmd_index = 0;
|
||||
init_executor.retry_cnt = 0;
|
||||
init_executor.state = EXEC_STATE_IDLE;
|
||||
}
|
||||
ExecutorResult_t res = CmdExecutor_Process(&init_executor);
|
||||
if(res == EXECUTOR_DONE)
|
||||
{
|
||||
/*
|
||||
尝试读取保存在本地的数据,如果没有则进入first connect
|
||||
如果有则进入connected
|
||||
|
||||
|
||||
*/
|
||||
memset(&init_executor, 0, sizeof(init_executor));
|
||||
|
||||
}
|
||||
else if(res == EXECUTOR_ERROR)
|
||||
{
|
||||
g_ble_error.cmd_index = init_executor.cmd_index;
|
||||
g_ble_error.error_code =init_executor.error_code;
|
||||
g_ble_error.main_state = curr_state;
|
||||
g_ble_error.timestamp = HAL_GetTick();
|
||||
g_ble_error.origin_state = BLE_INIT;
|
||||
|
||||
curr_state = BLE_ERROR;
|
||||
memset(&init_executor, 0, sizeof(init_executor));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case BLE_FIRST_CONECT :
|
||||
{
|
||||
ExecutorResult_t res = CmdExecutor_Process(&first_connect_executor);
|
||||
if(res == EXECUTOR_DONE)
|
||||
{
|
||||
/*
|
||||
保存参数到本地
|
||||
*/
|
||||
curr_state = BLE_CONNECTED;
|
||||
|
||||
}
|
||||
else if(res == EXECUTOR_ERROR)
|
||||
{
|
||||
g_ble_error.cmd_index = init_executor.cmd_index;
|
||||
g_ble_error.error_code =init_executor.error_code;
|
||||
g_ble_error.main_state = curr_state;
|
||||
g_ble_error.timestamp = HAL_GetTick();
|
||||
g_ble_error.origin_state = BLE_FIRST_CONECT;
|
||||
|
||||
curr_state = BLE_ERROR;
|
||||
memset(&init_executor, 0, sizeof(first_connect_executor));
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case BLE_CONNECTED :
|
||||
{
|
||||
ExecutorResult_t res = CmdExecutor_Process(&connect_executor);
|
||||
if(res == EXECUTOR_DONE)
|
||||
{
|
||||
/*
|
||||
保存参数到本地
|
||||
*/
|
||||
curr_state = BLE_READY;
|
||||
|
||||
}
|
||||
else if(res == EXECUTOR_ERROR)
|
||||
{
|
||||
g_ble_error.cmd_index = init_executor.cmd_index;
|
||||
g_ble_error.error_code =init_executor.error_code;
|
||||
g_ble_error.main_state = curr_state;
|
||||
g_ble_error.timestamp = HAL_GetTick();
|
||||
g_ble_error.origin_state = BLE_CONNECTED;
|
||||
|
||||
curr_state = BLE_ERROR;
|
||||
memset(&init_executor, 0, sizeof(connect_executor));
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case BLE_READY :
|
||||
{
|
||||
/*
|
||||
在已经开启透传的情况下周期性发送消息,一般情况不进行跳转其他状态
|
||||
如果超时则返回连接状态,多次出问题则进error
|
||||
|
||||
*/
|
||||
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case BLE_ERROR :
|
||||
|
||||
switch(g_ble_error.type)
|
||||
{
|
||||
case ERR_TYPE_NONE:
|
||||
break;
|
||||
|
||||
case ERR_TYPE_PREPARE_FAILED:
|
||||
{
|
||||
DEBUG("error message ,main state:%s, sub state:%s, cmd_index:%d, timestamp:%d",
|
||||
ble_state_names[g_ble_error.main_state], ble_sub_state_names[g_ble_error.sub_state], g_ble_error.cmd_index, g_ble_error.timestamp);
|
||||
curr_state = BLE_WAITTING;
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case ERR_TYPE_TIMEOUT_EXCEEDED:
|
||||
{
|
||||
DEBUG("error message ,main state:%s, sub state:%s, cmd_index:%d, timestamp:%d",
|
||||
ble_state_names[g_ble_error.main_state], ble_sub_state_names[g_ble_error.sub_state], g_ble_error.cmd_index, g_ble_error.timestamp);
|
||||
curr_state = BLE_SET;
|
||||
//重新配置串口信息
|
||||
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
|
||||
case ERR_TYPE_PARSE_FAILED:
|
||||
{
|
||||
DEBUG("error message ,main state:%s, sub state:%s, cmd_index:%d, timestamp:%d",
|
||||
ble_state_names[g_ble_error.main_state], ble_sub_state_names[g_ble_error.sub_state], g_ble_error.cmd_index, g_ble_error.timestamp);
|
||||
curr_state = BLE_SET;
|
||||
//重新配置串口信息
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
|
||||
case ERR_TYPE_MODULE_ERROR:
|
||||
{
|
||||
for(uint8_t i = 0; i < 4; i++)
|
||||
{
|
||||
if(g_ble_error.error_code == g_ble_error_table[i].code)
|
||||
{
|
||||
g_ble_error.
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
break;
|
||||
|
||||
|
||||
case BLE_SET :
|
||||
{
|
||||
if() //重新配置串口信息
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
else if() //重新启动设备
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
|
||||
case BLE_WAITTING:
|
||||
{
|
||||
static uint32_t last_time = 0;
|
||||
uint32_t time = HAL_GetTick();
|
||||
uint32_t rest = time - last_time;
|
||||
if(rest >= 500)
|
||||
{
|
||||
//输出警报
|
||||
last_time = time;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
ExecutorResult_t CmdExecutor_Process(CmdExecutor_t* ex)
|
||||
{
|
||||
switch(ex->state)
|
||||
{
|
||||
|
||||
case EXEC_STATE_IDLE:
|
||||
{
|
||||
ble_cmd_rec_done= 0;
|
||||
if(ex->sequence[ex->cmd_index].cmd == NULL)
|
||||
{
|
||||
DEBUG("init success");
|
||||
return EXECUTOR_DONE;
|
||||
|
||||
}
|
||||
const BleAtCmd_t *current_cmd = &ex->sequence[ex->cmd_index];
|
||||
char final_cmd[64];
|
||||
int prepare_ok = 0; // 标记准备是否成功
|
||||
|
||||
if(current_cmd->prepare_cmd != NULL)
|
||||
{
|
||||
int prepare_result = current_cmd->prepare_cmd(current_cmd->cmd, final_cmd, sizeof(final_cmd));
|
||||
if(prepare_result != 0)
|
||||
{
|
||||
DEBUG("命令准备失败,错误码: %d,跳过此命令", prepare_result);
|
||||
ex->error_type = ERR_TYPE_PREPARE_FAILED;
|
||||
ex->error_code = prepare_result;
|
||||
ex->error_cmd_index = ex->cmd_index;
|
||||
ex->state = EXEC_STATE_ERROR;
|
||||
return EXECUTOR_ERROR;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
prepare_ok = 1;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
strncpy(final_cmd, current_cmd->cmd, sizeof(final_cmd));
|
||||
final_cmd[sizeof(final_cmd) - 1] = '\0';
|
||||
prepare_ok = 1;
|
||||
|
||||
}
|
||||
if(prepare_ok == 1)
|
||||
{
|
||||
//发送命令 待添加实际代码
|
||||
|
||||
ex->start_tick = HAL_GetTick();
|
||||
ex->state = EXEC_STATE_SEND_WAIT;
|
||||
ble_cmd_rec_done = 0;
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case EXEC_STATE_SEND_WAIT:
|
||||
{
|
||||
const BleAtCmd_t *current_cmd = &ex->sequence[ex->cmd_index];
|
||||
uint16_t out_time = current_cmd->timeout_ms;
|
||||
uint8_t try_max = current_cmd->retry_max;
|
||||
if(ble_cmd_rec_done == 1)
|
||||
{
|
||||
|
||||
ex->retry_cnt = 0;
|
||||
ex->state = EXEC_STATE_PROCESS_RESP;
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
|
||||
}
|
||||
|
||||
uint32_t time = HAL_GetTick();
|
||||
if((time - ex->start_tick) > out_time)
|
||||
{
|
||||
ex->retry_cnt++;
|
||||
if(ex->retry_cnt <= try_max)
|
||||
{
|
||||
ex->state = EXEC_STATE_IDLE;
|
||||
ble_cmd_rec_done = 0; // 建议清零,避免旧数据影响下一次
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
ex->error_type = ERR_TYPE_TIMEOUT_EXCEEDED;
|
||||
ex->error_code = 0;
|
||||
ex->error_cmd_index = ex->cmd_index;
|
||||
ex->state = EXEC_STATE_ERROR;
|
||||
return EXECUTOR_ERROR;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
|
||||
case EXEC_STATE_PROCESS_RESP:
|
||||
{
|
||||
//接受串口回传具体信息
|
||||
//char process_data[] = 缓存区数据
|
||||
const BleAtCmd_t *current_cmd = &ex->sequence[ex->cmd_index];
|
||||
int result;
|
||||
if ((current_cmd->parse_resp) != NULL)
|
||||
{
|
||||
result = current_cmd->parse_resp(ble_rx_buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = parse_general_resp(ble_rx_buffer);
|
||||
|
||||
|
||||
}
|
||||
if(result == 0) //解析正确
|
||||
{
|
||||
ex->cmd_index++;
|
||||
ex->retry_cnt = 0;
|
||||
ex->state = EXEC_STATE_IDLE;
|
||||
ble_cmd_rec_done = 0;
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
else if(result > 0) //模块返回错误码
|
||||
{
|
||||
ex->retry_cnt++;
|
||||
if(ex->retry_cnt <= current_cmd->retry_max)
|
||||
{
|
||||
ex->state = EXEC_STATE_IDLE;
|
||||
ble_cmd_rec_done = 0;
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
ex->error_type = ERR_TYPE_MODULE_ERROR;
|
||||
ex->error_code = result;
|
||||
ex->error_cmd_index = ex->cmd_index;
|
||||
ex->state = EXEC_STATE_ERROR;
|
||||
return EXECUTOR_ERROR;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
else //result<0
|
||||
{
|
||||
//解析失败的其他情况
|
||||
ex->retry_cnt++;
|
||||
if(ex->retry_cnt <= current_cmd->retry_max)
|
||||
{
|
||||
ex->state = EXEC_STATE_IDLE;
|
||||
ble_cmd_rec_done = 0;
|
||||
return EXECUTOR_BUSY;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
ex->error_type = ERR_TYPE_PARSE_FAILED;
|
||||
ex->error_code = result;
|
||||
ex->error_cmd_index = ex->cmd_index;
|
||||
ex->state = EXEC_STATE_ERROR;
|
||||
return EXECUTOR_ERROR;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
uint8_t BLE_UART_RxCallback(void)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
int parse_general_resp(const char* resp)
|
||||
{
|
||||
if(resp == NULL)
|
||||
{
|
||||
return -1;
|
||||
|
||||
}
|
||||
|
||||
const char *ok_result = strstr(resp, "OK");
|
||||
if(ok_result != NULL)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int err_code = 0;
|
||||
int auth = sscanf(resp, "ERROR=<%d>", &err_code);
|
||||
if(auth == 1)
|
||||
{
|
||||
uint8_t table_size = sizeof(g_ble_error_table)/sizeof(g_ble_error_table[0]);
|
||||
|
||||
for(uint8_t i = 0; i<table_size; i++)
|
||||
{
|
||||
|
||||
if(err_code == g_ble_error_table[i].code)
|
||||
{
|
||||
DEBUG("%s", g_ble_error_table[i].desc);
|
||||
return err_code;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
DEBUG("未知错误码:%d", err_code);
|
||||
return err_code;
|
||||
|
||||
}
|
||||
DEBUG("无法识别的响应: %s", resp);
|
||||
return -1; // 添加默认返回值
|
||||
|
||||
|
||||
}
|
||||
|
||||
int prepare_diradv_cmd(const char* cmd_template, char* cmd_buf, int buf_size)
|
||||
{
|
||||
if(cmd_buf == NULL || buf_size <= 0)
|
||||
{
|
||||
return -1;
|
||||
|
||||
}
|
||||
|
||||
uint8_t para = g_ble_config.adv_param; //取出序号
|
||||
uint8_t type = g_ble_config.addr_type; //取出地址类型
|
||||
char* mac = g_ble_config.target_mac; //取出mac地址
|
||||
|
||||
int needed_len = snprintf(cmd_buf, buf_size, cmd_template, para, type, mac);
|
||||
if(needed_len < 0)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
else if(needed_len >= buf_size)
|
||||
{
|
||||
return -2;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
return -3;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
int parse_diradv_cmd(const char* cmd_template, char* cmd_buf, int buf_size)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,240 @@
|
|||
#ifndef BLE_H
|
||||
#define BLE_H
|
||||
#include "stm32f1xx_hal.h"
|
||||
|
||||
|
||||
typedef enum{
|
||||
BLE_INIT = 0,
|
||||
BLE_FIRST_CONECT,
|
||||
BLE_CONNECTED,
|
||||
BLE_READY,
|
||||
BLE_ERROR,
|
||||
BLE_SET,
|
||||
BLE_WAITTING
|
||||
|
||||
}BLE_STATE;
|
||||
|
||||
extern const char* ble_state_names[];
|
||||
|
||||
typedef enum {
|
||||
EXEC_STATE_IDLE = 0,
|
||||
EXEC_STATE_SEND_WAIT,
|
||||
EXEC_STATE_PROCESS_RESP,
|
||||
EXEC_STATE_ERROR
|
||||
} ExecState_t;
|
||||
|
||||
extern const char* ble_sub_state_names[];
|
||||
|
||||
typedef enum {
|
||||
EXECUTOR_BUSY, // 执行中,尚未完成
|
||||
EXECUTOR_DONE, // 整个序列执行成功
|
||||
EXECUTOR_ERROR // 发生不可恢复错误,错误信息已保存在执行器中
|
||||
} ExecutorResult_t;
|
||||
|
||||
typedef enum {
|
||||
RECOVERY_TARGET_NONE = 0,
|
||||
RECOVERY_TARGET_RESTART_SEQ, // 重启当前序列(不在 BLE_SET 中执行,直接重置执行器)
|
||||
RECOVERY_TARGET_SW_RESET_MODULE, // 软件复位模块
|
||||
RECOVERY_TARGET_FACTORY_RESET, // 恢复出厂设置
|
||||
RECOVERY_TARGET_RECONFIG_UART, // 重新配置串口(直接操作硬件,不经过 BLE_SET)
|
||||
RECOVERY_TARGET_HARD_RESET_MODULE,// 硬件复位模块(直接操作引脚)
|
||||
RECOVERY_TARGET_SOFT_RESET_MCU, // 软件复位 MCU
|
||||
RECOVERY_TARGET_PANIC // 不可恢复
|
||||
} RecoveryTarget_t;
|
||||
|
||||
typedef struct {
|
||||
const char* cmd;
|
||||
const char* expected_resp;
|
||||
uint16_t timeout_ms;
|
||||
uint8_t retry_max;
|
||||
// 关键升级:一个用于生成动态命令参数的回调函数
|
||||
int (*prepare_cmd)(const char* cmd_template, char* cmd_buf, int buf_size);
|
||||
// 可选升级:一个用于解析自定义响应的回调函数
|
||||
int (*parse_resp)(const char* resp);
|
||||
} BleAtCmd_t;
|
||||
|
||||
const BleAtCmd_t ble_init_sequence[] = {
|
||||
{"AT\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+TRANSPORT\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+TRANSPORT<%d>\\r\\n", "OK", 100, 3, set_trans_cmd, parse_trans_resp},
|
||||
{"AT+DISC\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+TYPE\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
// {"AT+TYPE<%x>\\r\\n", "OK", 100, 3, set_type_cmd, parse_type_resp},
|
||||
{"AT+RESET\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+DEFAULT\\r\\n", "OK", 100, 3, NULL, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL} // 结束标记
|
||||
|
||||
|
||||
};
|
||||
|
||||
const BleAtCmd_t ble_first_connect_sequence[] = {
|
||||
{"AT\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+OPASS\\r\\n", "OK", 100, 3, NULL, parse_opass_resp},
|
||||
{"AT+OPASS<%d>\\r\\n", "OK", 100, 3, set_opass_cmd, NULL},
|
||||
{"AT+APASS\\r\\n", "OK", 100, 3, NULL, parse_apass_resp},
|
||||
{"AT+APASS<%d>\\r\\n", "OK", 100, 3, set_apass_cmd, NULL},
|
||||
{"AT+DIRADV\\r\\n", "OK", 100, 3, NULL, parse_diradv_cmd},
|
||||
{"AT+DIRADV%d,%d,%s\\r\\n", "OK", 100, 3, prepare_diradv_cmd, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL} // 结束标记
|
||||
|
||||
};
|
||||
|
||||
|
||||
const BleAtCmd_t ble_connect_sequence[] = {
|
||||
{"AT\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+OPASS\\r\\n", "OK", 100, 3, NULL, parse_opass_resp},
|
||||
{"AT+OPASS<%d>\\r\\n", "OK", 100, 3, set_opass_cmd, NULL},
|
||||
{"AT+APASS\\r\\n", "OK", 100, 3, NULL, parse_apass_resp},
|
||||
{"AT+APASS<%d>\\r\\n", "OK", 100, 3, set_apass_cmd, NULL},
|
||||
{"AT+DIRADV\\r\\n", "OK", 100, 3, NULL, parse_diradv_cmd},
|
||||
{"AT+DIRADV%d,%d,%s\\r\\n", "OK", 100, 3, prepare_diradv_cmd, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL} // 结束标记
|
||||
|
||||
};
|
||||
|
||||
//software reset
|
||||
const BleAtCmd_t ble_reset_sequence[] = {
|
||||
{"AT+RESET\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
// reset to default
|
||||
const BleAtCmd_t ble_default_sequence[] = {
|
||||
{"AT+DEFAULT\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
// total reset sequence
|
||||
const BleAtCmd_t ble_full_set_sequence[] = {
|
||||
{"AT+DISC\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+RESET\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+DEFAULT\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+WHITELIST\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{"AT+NOTI\r\n", "OK", 100, 3, NULL, NULL},
|
||||
{NULL, NULL, 0, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
|
||||
|
||||
typedef struct {
|
||||
const BleAtCmd_t* sequence; // 当前正在执行的命令序列
|
||||
uint16_t cmd_index; // 当前命令索引
|
||||
uint8_t retry_cnt; // 当前命令已重试次数
|
||||
uint32_t start_tick; // 命令发送时的时间戳
|
||||
ExecState_t state; // 执行器状态:IDLE, SENDING, WAITING, DONE, ERROR
|
||||
uint8_t error_type; // ERR_TYPE_xxx
|
||||
int error_code; // 具体错误码(模块返回码或prepare返回值)
|
||||
uint16_t error_cmd_index; // 发生错误的命令索引
|
||||
} CmdExecutor_t;
|
||||
|
||||
|
||||
typedef struct {
|
||||
// 连接参数
|
||||
char mac_addr[13]; // 蓝牙MAC地址 "A1B2C3D4E5F6"
|
||||
uint8_t addr_type; // 地址类型 (0=public, 1=random)
|
||||
|
||||
// 广播参数 (用于 AT+DIRADV 等)
|
||||
uint8_t adv_param;
|
||||
uint8_t adv_type;
|
||||
char target_mac[13]; // 定向广播的目标MAC
|
||||
|
||||
// 白名单参数 (用于 AT+WHITELIST 等)
|
||||
uint8_t whitelist_count;
|
||||
char whitelist_macs[3][13]; // 假设最多3个白名单设备
|
||||
|
||||
// 通信参数
|
||||
uint32_t baud_rate; // 波特率
|
||||
uint8_t tx_power; // 发射功率
|
||||
|
||||
// 模块工作参数
|
||||
uint8_t work_mode; // 透传模式等
|
||||
char device_name[32]; // 设备名称
|
||||
|
||||
// ... 其他所有可能用到的参数
|
||||
} BleGlobalConfig_t;
|
||||
|
||||
|
||||
BleGlobalConfig_t g_ble_config = {
|
||||
.mac_addr = "A1B2C3D4E5F6",
|
||||
.addr_type = 0,
|
||||
.adv_param = 0x10,
|
||||
.adv_type = 1,
|
||||
.target_mac = "FFFFFFFFFFFF",
|
||||
.baud_rate = 9600,
|
||||
.device_name = "MyBLEModule",
|
||||
|
||||
};
|
||||
|
||||
|
||||
// 错误码信息结构体
|
||||
typedef struct {
|
||||
int code; // 错误码数字,如 101
|
||||
const char* desc; // 错误描述,如 "参数错误"
|
||||
RecoveryTarget_t recovery_target; //store the target
|
||||
} BleErrorCodeInfo_t;
|
||||
|
||||
// 错误码表(根据你的模块手册填充)
|
||||
BleErrorCodeInfo_t g_ble_error_table[] = {
|
||||
{101, "参数长度错误", RECOVERY_TARGET_RESTART_SEQ}, // 参数错,重试没用
|
||||
{102, "参数格式错误", RECOVERY_TARGET_RESTART_SEQ}, // 状态错,需检查流程
|
||||
{103, "参数数据异常", RECOVERY_TARGET_RESTART_SEQ}, // 可重试
|
||||
{104, "指令错误", RECOVERY_TARGET_SW_RESET_MODULE}, // 可重试
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
ERR_TYPE_NONE = 0,
|
||||
ERR_TYPE_PREPARE_FAILED, // prepare_cmd 失败
|
||||
ERR_TYPE_TIMEOUT_EXCEEDED, // 超时且重试耗尽
|
||||
ERR_TYPE_PARSE_FAILED, // 解析返回-1且重试耗尽
|
||||
ERR_TYPE_MODULE_ERROR, // 模块返回错误码且重试耗尽
|
||||
// 可以按需添加
|
||||
} ErrorType_t;
|
||||
|
||||
typedef struct {
|
||||
ErrorType_t type; // 错误类型
|
||||
uint8_t main_state; // 主状态值(例如 BLE_INIT)
|
||||
uint16_t cmd_index; // 发生错误的命令索引(仅当在初始化阶段有意义)
|
||||
int error_code; // 错误码(内部错误码或模块返回码)
|
||||
uint32_t timestamp; // 时间戳
|
||||
uint8_t origin_state; // 原始状态(用于恢复后返回)
|
||||
} BleErrorInfo_t;
|
||||
|
||||
BleErrorInfo_t g_ble_error = {0};
|
||||
|
||||
char ble_rx_buffer[256];
|
||||
|
||||
|
||||
|
||||
volatile uint8_t ble_cmd_rec_done;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -541,6 +541,38 @@
|
|||
</File>
|
||||
</Group>
|
||||
|
||||
<Group>
|
||||
<GroupName>BSP</GroupName>
|
||||
<tvExp>1</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<cbSel>0</cbSel>
|
||||
<RteFlg>0</RteFlg>
|
||||
<File>
|
||||
<GroupNumber>6</GroupNumber>
|
||||
<FileNumber>26</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\BSP\BLE.c</PathWithFileName>
|
||||
<FilenameWithoutPath>BLE.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>6</GroupNumber>
|
||||
<FileNumber>27</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\BSP\BLE.h</PathWithFileName>
|
||||
<FilenameWithoutPath>BLE.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
</Group>
|
||||
|
||||
<Group>
|
||||
<GroupName>::CMSIS</GroupName>
|
||||
<tvExp>0</tvExp>
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@
|
|||
<MiscControls></MiscControls>
|
||||
<Define>USE_HAL_DRIVER,STM32F103xB</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath>../Core/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy;../Drivers/CMSIS/Device/ST/STM32F1xx/Include;../Drivers/CMSIS/Include;..\MiddleWares</IncludePath>
|
||||
<IncludePath>../Core/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy;../Drivers/CMSIS/Device/ST/STM32F1xx/Include;../Drivers/CMSIS/Include;..\MiddleWares;..\BSP</IncludePath>
|
||||
</VariousControls>
|
||||
</Cads>
|
||||
<Aads>
|
||||
|
|
@ -684,6 +684,21 @@
|
|||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
<Group>
|
||||
<GroupName>BSP</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>BLE.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\BSP\BLE.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>BLE.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>..\BSP\BLE.h</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
<Group>
|
||||
<GroupName>::CMSIS</GroupName>
|
||||
</Group>
|
||||
|
|
|
|||
|
|
@ -22,11 +22,97 @@ Dialog DLL: TCM.DLL V1.56.4.0
|
|||
|
||||
<h2>Project:</h2>
|
||||
C:\Users\15435\Desktop\PressureSensorBoard\Software\master\PressureSensorBoardMaster\MDK-ARM\PressureSensorBoardMaster.uvprojx
|
||||
Project File Date: 12/17/2025
|
||||
Project File Date: 02/24/2026
|
||||
|
||||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\app\Keil_v5\ARM\ARMCC\Bin'
|
||||
Build target 'PressureSensorBoardMaster'
|
||||
compiling dma.c...
|
||||
compiling gpio.c...
|
||||
compiling main.c...
|
||||
compiling stm32f1xx_hal_msp.c...
|
||||
compiling stm32f1xx_hal_gpio_ex.c...
|
||||
compiling tim.c...
|
||||
compiling stm32f1xx_it.c...
|
||||
compiling stm32f1xx_hal_rcc_ex.c...
|
||||
compiling stm32f1xx_hal.c...
|
||||
compiling stm32f1xx_hal_cortex.c...
|
||||
compiling stm32f1xx_hal_gpio.c...
|
||||
compiling stm32f1xx_hal_dma.c...
|
||||
compiling usart.c...
|
||||
compiling stm32f1xx_hal_rcc.c...
|
||||
compiling stm32f1xx_hal_tim_ex.c...
|
||||
compiling stm32f1xx_hal_tim.c...
|
||||
compiling BLE.c...
|
||||
..\BSP\BLE.h(59): error: #20: identifier "set_trans_cmd" is undefined
|
||||
{"AT+TRANSPORT<%d>\\r\\n", "OK", 100, 3, set_trans_cmd, parse_trans_resp},
|
||||
..\BSP\BLE.h(59): error: #20: identifier "parse_trans_resp" is undefined
|
||||
{"AT+TRANSPORT<%d>\\r\\n", "OK", 100, 3, set_trans_cmd, parse_trans_resp},
|
||||
..\BSP\BLE.h(72): error: #20: identifier "parse_opass_resp" is undefined
|
||||
{"AT+OPASS\\r\\n", "OK", 100, 3, NULL, parse_opass_resp},
|
||||
..\BSP\BLE.h(73): error: #20: identifier "set_opass_cmd" is undefined
|
||||
{"AT+OPASS<%d>\\r\\n", "OK", 100, 3, set_opass_cmd, NULL},
|
||||
..\BSP\BLE.h(74): error: #20: identifier "parse_apass_resp" is undefined
|
||||
{"AT+APASS\\r\\n", "OK", 100, 3, NULL, parse_apass_resp},
|
||||
..\BSP\BLE.h(75): error: #20: identifier "set_apass_cmd" is undefined
|
||||
{"AT+APASS<%d>\\r\\n", "OK", 100, 3, set_apass_cmd, NULL},
|
||||
..\BSP\BLE.h(76): error: #20: identifier "parse_diradv_cmd" is undefined
|
||||
{"AT+DIRADV\\r\\n", "OK", 100, 3, NULL, parse_diradv_cmd},
|
||||
..\BSP\BLE.h(77): error: #20: identifier "prepare_diradv_cmd" is undefined
|
||||
{"AT+DIRADV%d,%d,%s\\r\\n", "OK", 100, 3, prepare_diradv_cmd, NULL},
|
||||
..\BSP\BLE.h(191): warning: #188-D: enumerated type mixed with another type
|
||||
BleErrorInfo_t g_ble_error = {0};
|
||||
..\BSP\BLE.h(229): warning: #1-D: last line of file ends without a newline
|
||||
#endif
|
||||
..\BSP\BLE.c(74): warning: #223-D: function "CmdExecutor_Process" declared implicitly
|
||||
ExecutorResult_t res = CmdExecutor_Process(&init_executor);
|
||||
..\BSP\BLE.c(74): warning: #188-D: enumerated type mixed with another type
|
||||
ExecutorResult_t res = CmdExecutor_Process(&init_executor);
|
||||
..\BSP\BLE.c(105): warning: #223-D: function "CmdExecutor_Process" declared implicitly
|
||||
ExecutorResult_t res = CmdExecutor_Process(&first_connect_executor);
|
||||
..\BSP\BLE.c(105): warning: #188-D: enumerated type mixed with another type
|
||||
ExecutorResult_t res = CmdExecutor_Process(&first_connect_executor);
|
||||
..\BSP\BLE.c(135): warning: #223-D: function "CmdExecutor_Process" declared implicitly
|
||||
ExecutorResult_t res = CmdExecutor_Process(&connect_executor);
|
||||
..\BSP\BLE.c(135): warning: #188-D: enumerated type mixed with another type
|
||||
ExecutorResult_t res = CmdExecutor_Process(&connect_executor);
|
||||
..\BSP\BLE.c(258): error: #29: expected an expression
|
||||
if() //重新配置串口信息
|
||||
..\BSP\BLE.c(265): error: #29: expected an expression
|
||||
else if() //重新启动设备
|
||||
..\BSP\BLE.c(307): error: #159: declaration is incompatible with previous "CmdExecutor_Process" (declared at line 74)
|
||||
ExecutorResult_t CmdExecutor_Process(CmdExecutor_t* ex)
|
||||
..\BSP\BLE.c(370): warning: #111-D: statement is unreachable
|
||||
break;
|
||||
..\BSP\BLE.c(418): warning: #111-D: statement is unreachable
|
||||
break;
|
||||
..\BSP\BLE.c(432): warning: #223-D: function "parse_general_resp" declared implicitly
|
||||
result = parse_general_resp(ble_rx_buffer);
|
||||
..\BSP\BLE.c(493): warning: #111-D: statement is unreachable
|
||||
break;
|
||||
..\BSP\BLE.c(505): warning: #940-D: missing return statement at end of non-void function "CmdExecutor_Process"
|
||||
}
|
||||
..\BSP\BLE.c(519): warning: #940-D: missing return statement at end of non-void function "BLE_UART_RxCallback"
|
||||
}
|
||||
..\BSP\BLE.c(537): warning: #223-D: function "sscanf" declared implicitly
|
||||
int auth = sscanf(resp, "ERROR=<%d>", &err_code);
|
||||
..\BSP\BLE.c(576): warning: #223-D: function "snprintf" declared implicitly
|
||||
int needed_len = snprintf(cmd_buf, buf_size, cmd_template, para, type, mac);
|
||||
..\BSP\BLE.c(600): warning: #940-D: missing return statement at end of non-void function "parse_diradv_cmd"
|
||||
}
|
||||
..\BSP\BLE.c(17): warning: #177-D: variable "current_cmd_index" was declared but never referenced
|
||||
static size_t current_cmd_index = 0;
|
||||
..\BSP\BLE.c(18): warning: #177-D: variable "cmd_start_time" was declared but never referenced
|
||||
static uint32_t cmd_start_time;
|
||||
..\BSP\BLE.c(19): warning: #177-D: variable "current_try_count" was declared but never referenced
|
||||
static uint8_t current_try_count = 0;
|
||||
..\BSP\BLE.c(23): warning: #177-D: variable "set_executor" was declared but never referenced
|
||||
static CmdExecutor_t set_executor;
|
||||
..\BSP\BLE.c: 21 warnings, 11 errors
|
||||
compiling stm32f1xx_hal_pwr.c...
|
||||
compiling stm32f1xx_hal_flash.c...
|
||||
compiling stm32f1xx_hal_exti.c...
|
||||
compiling stm32f1xx_hal_flash_ex.c...
|
||||
compiling modbus.c...
|
||||
..\MiddleWares\modbus.h(55): warning: #1-D: last line of file ends without a newline
|
||||
#endif
|
||||
|
|
@ -34,13 +120,10 @@ compiling modbus.c...
|
|||
if(index < 0 || index >= MAX_NODES || node_used[index] == 0)
|
||||
..\MiddleWares\modbus.c(116): warning: #186-D: pointless comparison of unsigned integer with zero
|
||||
if(index < 0 || index >= MAX_callback_NODES )
|
||||
..\MiddleWares\modbus.c(14): warning: #550-D: variable "callback_list_head" was set but never used
|
||||
static CallbackNode* callback_list_head = NULL;
|
||||
..\MiddleWares\modbus.c: 4 warnings, 0 errors
|
||||
linking...
|
||||
Program Size: Code=6420 RO-data=312 RW-data=16 ZI-data=1992
|
||||
FromELF: creating hex file...
|
||||
"PressureSensorBoardMaster\PressureSensorBoardMaster.axf" - 0 Error(s), 4 Warning(s).
|
||||
..\MiddleWares\modbus.c: 3 warnings, 0 errors
|
||||
compiling system_stm32f1xx.c...
|
||||
compiling stm32f1xx_hal_uart.c...
|
||||
"PressureSensorBoardMaster\PressureSensorBoardMaster.axf" - 11 Error(s), 24 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
|
|
@ -64,7 +147,8 @@ Package Vendor: Keil
|
|||
|
||||
* Component: ARM::CMSIS:CORE@6.1.0
|
||||
Include file: CMSIS/Core/Include/tz_context.h
|
||||
Build Time Elapsed: 00:00:01
|
||||
Target not created.
|
||||
Build Time Elapsed: 00:00:03
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
Dependencies for Project 'PressureSensorBoardMaster', Target 'PressureSensorBoardMaster': (DO NOT MODIFY !)
|
||||
CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC
|
||||
F (startup_stm32f103xb.s)(0x69420903)(--cpu Cortex-M3 -g --apcs=interwork
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
--pd "__UVISION_VERSION SETA 541" --pd "STM32F10X_MD SETA 1" --pd "_RTE_ SETA 1"
--list startup_stm32f103xb.lst --xref -o pressuresensorboardmaster\startup_stm32f103xb.o --depend pressuresensorboardmaster\startup_stm32f103xb.d)
|
||||
F (../Core/Src/main.c)(0x6944FE48)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\main.o --omf_browse pressuresensorboardmaster\main.crf --depend pressuresensorboardmaster\main.d)
|
||||
F (../Core/Src/main.c)(0x6944FE48)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\main.o --omf_browse pressuresensorboardmaster\main.crf --depend pressuresensorboardmaster\main.d)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
|
|
@ -35,7 +35,7 @@ I (../Core/Inc/tim.h)(0x6930E838)
|
|||
I (../Core/Inc/usart.h)(0x6912E845)
|
||||
I (../Core/Inc/gpio.h)(0x68FECD58)
|
||||
I (C:\app\Keil_v5\ARM\ARMCC\include\string.h)(0x6025237E)
|
||||
F (../Core/Src/gpio.c)(0x69142865)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\gpio.o --omf_browse pressuresensorboardmaster\gpio.crf --depend pressuresensorboardmaster\gpio.d)
|
||||
F (../Core/Src/gpio.c)(0x69142865)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\gpio.o --omf_browse pressuresensorboardmaster\gpio.crf --depend pressuresensorboardmaster\gpio.d)
|
||||
I (../Core/Inc/gpio.h)(0x68FECD58)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
|
|
@ -65,7 +65,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Core/Src/dma.c)(0x693621E4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\dma.o --omf_browse pressuresensorboardmaster\dma.crf --depend pressuresensorboardmaster\dma.d)
|
||||
F (../Core/Src/dma.c)(0x693621E4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\dma.o --omf_browse pressuresensorboardmaster\dma.crf --depend pressuresensorboardmaster\dma.d)
|
||||
I (../Core/Inc/dma.h)(0x6912E845)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
|
|
@ -95,7 +95,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Core/Src/tim.c)(0x69420901)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\tim.o --omf_browse pressuresensorboardmaster\tim.crf --depend pressuresensorboardmaster\tim.d)
|
||||
F (../Core/Src/tim.c)(0x69420901)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\tim.o --omf_browse pressuresensorboardmaster\tim.crf --depend pressuresensorboardmaster\tim.d)
|
||||
I (../Core/Inc/tim.h)(0x6930E838)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
|
|
@ -125,7 +125,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Core/Src/usart.c)(0x693621E4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\usart.o --omf_browse pressuresensorboardmaster\usart.crf --depend pressuresensorboardmaster\usart.d)
|
||||
F (../Core/Src/usart.c)(0x693621E4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\usart.o --omf_browse pressuresensorboardmaster\usart.crf --depend pressuresensorboardmaster\usart.d)
|
||||
I (../Core/Inc/usart.h)(0x6912E845)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
|
|
@ -155,7 +155,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Core/Src/stm32f1xx_it.c)(0x69420902)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_it.o --omf_browse pressuresensorboardmaster\stm32f1xx_it.crf --depend pressuresensorboardmaster\stm32f1xx_it.d)
|
||||
F (../Core/Src/stm32f1xx_it.c)(0x69420902)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_it.o --omf_browse pressuresensorboardmaster\stm32f1xx_it.crf --depend pressuresensorboardmaster\stm32f1xx_it.d)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
|
|
@ -185,7 +185,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_it.h)(0x69420902)
|
||||
F (../Core/Src/stm32f1xx_hal_msp.c)(0x68FECD59)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_msp.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_msp.crf --depend pressuresensorboardmaster\stm32f1xx_hal_msp.d)
|
||||
F (../Core/Src/stm32f1xx_hal_msp.c)(0x68FECD59)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_msp.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_msp.crf --depend pressuresensorboardmaster\stm32f1xx_hal_msp.d)
|
||||
I (../Core/Inc/main.h)(0x68FECD59)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
|
|
@ -214,7 +214,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -242,7 +242,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_tim.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_tim.crf --depend pressuresensorboardmaster\stm32f1xx_hal_tim.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_tim.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_tim.crf --depend pressuresensorboardmaster\stm32f1xx_hal_tim.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -270,7 +270,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_tim_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_tim_ex.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_tim_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_tim_ex.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -298,7 +298,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal.crf --depend pressuresensorboardmaster\stm32f1xx_hal.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal.crf --depend pressuresensorboardmaster\stm32f1xx_hal.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -326,7 +326,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_rcc.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_rcc.crf --depend pressuresensorboardmaster\stm32f1xx_hal_rcc.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_rcc.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_rcc.crf --depend pressuresensorboardmaster\stm32f1xx_hal_rcc.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -354,7 +354,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -382,7 +382,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_gpio.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_gpio.crf --depend pressuresensorboardmaster\stm32f1xx_hal_gpio.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_gpio.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_gpio.crf --depend pressuresensorboardmaster\stm32f1xx_hal_gpio.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -410,7 +410,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_dma.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_dma.crf --depend pressuresensorboardmaster\stm32f1xx_hal_dma.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_dma.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_dma.crf --depend pressuresensorboardmaster\stm32f1xx_hal_dma.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -438,7 +438,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_cortex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_cortex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_cortex.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_cortex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_cortex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_cortex.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -466,7 +466,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_pwr.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_pwr.crf --depend pressuresensorboardmaster\stm32f1xx_hal_pwr.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_pwr.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_pwr.crf --depend pressuresensorboardmaster\stm32f1xx_hal_pwr.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -494,7 +494,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_flash.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_flash.crf --depend pressuresensorboardmaster\stm32f1xx_hal_flash.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_flash.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_flash.crf --depend pressuresensorboardmaster\stm32f1xx_hal_flash.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -522,7 +522,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_flash_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_flash_ex.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_flash_ex.crf --depend pressuresensorboardmaster\stm32f1xx_hal_flash_ex.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -550,7 +550,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_exti.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_exti.crf --depend pressuresensorboardmaster\stm32f1xx_hal_exti.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_exti.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_exti.crf --depend pressuresensorboardmaster\stm32f1xx_hal_exti.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -578,7 +578,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_uart.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_uart.crf --depend pressuresensorboardmaster\stm32f1xx_hal_uart.d)
|
||||
F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c)(0x68E72B55)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\stm32f1xx_hal_uart.o --omf_browse pressuresensorboardmaster\stm32f1xx_hal_uart.crf --depend pressuresensorboardmaster\stm32f1xx_hal_uart.d)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
|
|
@ -606,7 +606,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (../Core/Src/system_stm32f1xx.c)(0x68FDC5F4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\system_stm32f1xx.o --omf_browse pressuresensorboardmaster\system_stm32f1xx.crf --depend pressuresensorboardmaster\system_stm32f1xx.d)
|
||||
F (../Core/Src/system_stm32f1xx.c)(0x68FDC5F4)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\system_stm32f1xx.o --omf_browse pressuresensorboardmaster\system_stm32f1xx.crf --depend pressuresensorboardmaster\system_stm32f1xx.d)
|
||||
I (../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h)(0x68E72B55)
|
||||
I (../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h)(0x68E72B55)
|
||||
I (../Drivers/CMSIS/Include/core_cm3.h)(0x68E72B29)
|
||||
|
|
@ -634,7 +634,7 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
|||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
F (..\MiddleWares\modbus.c)(0x69450564)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\modbus.o --omf_browse pressuresensorboardmaster\modbus.crf --depend pressuresensorboardmaster\modbus.d)
|
||||
F (..\MiddleWares\modbus.c)(0x69450D31)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\modbus.o --omf_browse pressuresensorboardmaster\modbus.crf --depend pressuresensorboardmaster\modbus.d)
|
||||
I (..\MiddleWares\modbus.h)(0x6944F6AD)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
|
|
@ -666,3 +666,34 @@ I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
|||
I (C:\app\Keil_v5\ARM\ARMCC\include\stdlib.h)(0x60252374)
|
||||
I (C:\app\Keil_v5\ARM\ARMCC\include\string.h)(0x6025237E)
|
||||
F (..\MiddleWares\modbus.h)(0x6944F6AD)()
|
||||
F (..\BSP\BLE.c)(0x699C6E5C)(--c99 -c --cpu Cortex-M3 -g -O3 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ..\MiddleWares -I ..\BSP
-I.\RTE\_PressureSensorBoardMaster
-IC:\app\Keil_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include
-IC:\app\Keil_v5\ARM\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include
-D__UVISION_VERSION="541" -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB
-o pressuresensorboardmaster\ble.o --omf_browse pressuresensorboardmaster\ble.crf --depend pressuresensorboardmaster\ble.d)
|
||||
I (..\BSP\BLE.h)(0x699C0EA1)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h)(0x68E72B55)
|
||||
I (../Core/Inc/stm32f1xx_hal_conf.h)(0x69420902)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h)(0x68E72B55)
|
||||
I (../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h)(0x68E72B55)
|
||||
I (../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h)(0x68E72B55)
|
||||
I (../Drivers/CMSIS/Include/core_cm3.h)(0x68E72B29)
|
||||
I (C:\app\Keil_v5\ARM\ARMCC\include\stdint.h)(0x6025237E)
|
||||
I (../Drivers/CMSIS/Include/cmsis_version.h)(0x68E72B29)
|
||||
I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x68E72B29)
|
||||
I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x68E72B29)
|
||||
I (../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h)(0x68E72B55)
|
||||
I (C:\app\Keil_v5\ARM\ARMCC\include\stddef.h)(0x6025237E)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h)(0x68E72B55)
|
||||
I (../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h)(0x68E72B55)
|
||||
I (C:\app\Keil_v5\ARM\ARMCC\include\string.h)(0x6025237E)
|
||||
F (..\BSP\BLE.h)(0x699C0EA1)()
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -0,0 +1,31 @@
|
|||
pressuresensorboardmaster\ble.o: ..\BSP\BLE.c
|
||||
pressuresensorboardmaster\ble.o: ..\BSP\BLE.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
|
||||
pressuresensorboardmaster\ble.o: ../Core/Inc/stm32f1xx_hal_conf.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Include/core_cm3.h
|
||||
pressuresensorboardmaster\ble.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
|
||||
pressuresensorboardmaster\ble.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
|
||||
pressuresensorboardmaster\ble.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
|
||||
pressuresensorboardmaster\ble.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue