Commit dceef7b4 authored by maniacbug's avatar maniacbug

Added more information about whether the write was successful.

parent cc7e0a2f
...@@ -144,7 +144,12 @@ void loop(void) ...@@ -144,7 +144,12 @@ void loop(void)
// Take the time, and send it. This will block until complete // Take the time, and send it. This will block until complete
unsigned long time = millis(); unsigned long time = millis();
printf("Now sending %lu...",time); printf("Now sending %lu...",time);
radio.write( &time, sizeof(unsigned long) ); bool ok = radio.write( &time, sizeof(unsigned long) );
if (ok)
printf("ok...");
else
printf("failed.\n\r");
// Now, continue listening // Now, continue listening
radio.startListening(); radio.startListening();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment