We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4c417 commit a8888fdCopy full SHA for a8888fd
cross/receive_data_tcp/src/main.rs
@@ -180,8 +180,12 @@ fn main() -> ! {
180
defmt::info!("Receiving Response");
181
182
match tcp_client.receive_data() {
183
- Ok(response) => { defmt::info!("Response: {:?}", response); }
184
- Err(e) => { defmt::info!("Error receiving data: {:?}", e); }
+ Ok(response) => {
+ defmt::info!("Response: {:?}", response);
185
+ }
186
+ Err(e) => {
187
+ defmt::info!("Error receiving data: {:?}", e);
188
189
}
190
191
Err(e) => {
0 commit comments