Skip to content

Commit

Permalink
fix NinaParam type for send_data and avail_data_tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
calebbourg committed Feb 23, 2023
1 parent cc4c417 commit a8888fd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cross/receive_data_tcp/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,12 @@ fn main() -> ! {
defmt::info!("Receiving Response");

match tcp_client.receive_data() {
Ok(response) => { defmt::info!("Response: {:?}", response); }
Err(e) => { defmt::info!("Error receiving data: {:?}", e); }
Ok(response) => {
defmt::info!("Response: {:?}", response);
}
Err(e) => {
defmt::info!("Error receiving data: {:?}", e);
}
}
}
Err(e) => {
Expand Down

0 comments on commit a8888fd

Please sign in to comment.