publish

Dependencies:   ISL29011

Revision:
37:f1053cb17d4f
Parent:
35:f6486829a451
Child:
39:2c027824e046
diff -r f6486829a451 -r f1053cb17d4f examples/inc/RadioEvent.h
--- a/examples/inc/RadioEvent.h	Thu May 02 09:29:05 2019 -0500
+++ b/examples/inc/RadioEvent.h	Thu May 02 13:18:08 2019 -0500
@@ -74,9 +74,13 @@
 
             logDebug("Rx %d bytes", info->RxBufferSize);
             if (info->RxBufferSize > 0) {
+#if ACTIVE_EXAMPLE == FOTA_EXAMPLE
+                printf("Rx data: [%s]\r\n", mts::Text::bin2hexString(info->RxBuffer, info->RxBufferSize).c_str());
+#else
                 // print RX data as string and hexadecimal
                 std::string rx((const char*)info->RxBuffer, info->RxBufferSize);
                 printf("Rx data: %s [%s]\r\n", rx.c_str(), mts::Text::bin2hexString(info->RxBuffer, info->RxBufferSize).c_str());
+#endif
             }
         }
     }