KT25-0812_82A-UART/apps/soundbox/smartbox/cmd_data_deal/cmd_respone.c
2025-08-12 18:09:23 +08:00

17 lines
396 B
C

#include "smartbox/config.h"
#include "smartbox/event.h"
#include "smartbox_update.h"
///>>>>>>>>>>>>>>>设备接收到上报给APP端命令的回复
void cmd_respone(void *priv, u8 OpCode, u8 status, u8 *data, u16 len)
{
printf("cmd_respone:%x\n", OpCode);
#if RCSP_UPDATE_EN
if (0 == JL_rcsp_update_cmd_receive_resp(priv, OpCode, status, data, len)) {
return;
}
#endif
}