SCU722驱动替换更新

This commit is contained in:
lmx
2025-10-31 16:58:39 +08:00
parent a96264ec36
commit 830b4637dd
27 changed files with 171037 additions and 170624 deletions

View File

@ -1664,11 +1664,11 @@ void send_data_to_ble_client(const u8* data, u16 length)
// 发送数据
int ret = app_send_user_data(ATT_CHARACTERISTIC_ae02_01_VALUE_HANDLE, data, length, ATT_OP_NOTIFY);
if (ret == 0) { // 假设 0 表示成功
printf("Data sent successfully: Length %d\n", length);
// printf("Data sent successfully: Length %d\n", length);
} else {
printf("Failed to send data: Length %d, Error code: %d\n", length, ret);
// printf("Failed to send data: Length %d, Error code: %d\n", length, ret);
}
} else {
printf("Insufficient buffer space to send data: Length %d\n", length);
// printf("Insufficient buffer space to send data: Length %d\n", length);
}
}