Skip to content

Commit a8888fd

Browse files
committed
fix NinaParam type for send_data and avail_data_tcp
1 parent cc4c417 commit a8888fd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cross/receive_data_tcp/src/main.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,12 @@ fn main() -> ! {
180180
defmt::info!("Receiving Response");
181181

182182
match tcp_client.receive_data() {
183-
Ok(response) => { defmt::info!("Response: {:?}", response); }
184-
Err(e) => { defmt::info!("Error receiving data: {:?}", e); }
183+
Ok(response) => {
184+
defmt::info!("Response: {:?}", response);
185+
}
186+
Err(e) => {
187+
defmt::info!("Error receiving data: {:?}", e);
188+
}
185189
}
186190
}
187191
Err(e) => {

0 commit comments

Comments
 (0)