Commit 035afd54 authored by 时昊's avatar 时昊

feat:连接蓝牙后,发送小时和分钟数据

parent ceda24f4
...@@ -318,15 +318,12 @@ void Uart_Send_Id10_Pro(void )//esp32发送启动完成给底板 ...@@ -318,15 +318,12 @@ void Uart_Send_Id10_Pro(void )//esp32发送启动完成给底板
void Uart_Send_Id12_Pro(void )//收到底板回复的0x20后,发送蓝牙类型 ID12[0]是判断蓝牙是否连接 不等于0是连接 void Uart_Send_Id12_Pro(void )//收到底板回复的0x20后,发送蓝牙类型 ID12[0]是判断蓝牙是否连接 不等于0是连接
{ {
uint8_t ID12[15] = {0}; uint8_t ID12[3] = {0};
ID12[0] |= (uint8_t)(BT_User.BT_Sts << 4);//经典 ID12[0] |= (uint8_t)(BT_User.BT_Sts << 4);//经典
ID12[0] |= Ble_User.Ble_Sts;//ble ID12[0] |= Ble_User.Ble_Sts;//ble
unsigned int i = 0; ID12[1] = 22; //小时
for(i = 0;i < 14;i++) ID12[2] = 22; //分钟
{ Protocol_Send(0x12, ID12, 3);
ID12[ i + 1 ] = BT_Device_Name[ i ];
}
Protocol_Send(0x12, ID12, 15);
} }
void Uart_Send_Id01_Pro(void) void Uart_Send_Id01_Pro(void)
......
...@@ -79,5 +79,5 @@ extern uint8_t BT_Device_Name[14]; ...@@ -79,5 +79,5 @@ extern uint8_t BT_Device_Name[14];
void Get_Mac_Init(void ); void Get_Mac_Init(void );
extern int bsp_Uart_Send_Data(uint8_t * data , unsigned int len); extern int bsp_Uart_Send_Data(uint8_t * data , unsigned int len);
extern uint8_t BT_Device_Name[14];
#endif #endif
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment