This commit is contained in:
zhangsheng 2026-02-02 12:25:25 +08:00
parent ea80e15cbc
commit c32db761d8

View File

@ -588,9 +588,9 @@ int Uart::TaskResp(ScheduleTask scheduleTask){
z = 0; z = 0;
} }
zlog_info(zct,"wave x = %d,y = %d,z = %d\n",x,y,z); zlog_info(zct,"wave x = %d,y = %d,z = %d\n",x,y,z);
send_data[17] = (x^1) & 0xFF; send_data[17] = x;
send_data[18] = (y^1) & 0xFF; send_data[18] = y;
send_data[19] = (z^1) & 0xFF; send_data[19] = z;
} }
unsigned char tmp = 0x00; unsigned char tmp = 0x00;