tasks: ble: warning--

This commit is contained in:
2026-03-09 10:09:52 +01:00
parent f650cfa644
commit c9518498f2

View File

@@ -89,7 +89,7 @@ struct SerialService {
async fn client_prediction_task(mut src: DynSubscriber<'static, Prediction>, sink: Publisher<'static, NoopRawMutex, Prediction, 5, 1, 1>) {
debug!("Started BLE client prediction stream");
loop {
sink.publish(src.next_message_pure().await).await;
let _ = sink.try_publish(src.next_message_pure().await);
}
}