Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_IKS01A2 driver_mbed_TH02 mbed LoRaWAN-lib-v1_0_1 SX1272Lib
Fork of Training-Aug2018-SX1272-X-NUCLEO-IKS01A2 by
Diff: app/SerialDisplay.cpp
- Revision:
- 2:19dd7bfcacf7
- Parent:
- 0:6cc76d70e2a1
- Child:
- 10:bba416e2c3e1
--- a/app/SerialDisplay.cpp Sat Apr 29 07:41:12 2017 +0000 +++ b/app/SerialDisplay.cpp Sat Nov 04 20:05:46 2017 +0000 @@ -91,7 +91,7 @@ newline = 0; } - printf( "%02X ", pData[i] ); + printf( "%02X", pData[i] ); if( ( ( i + 1 ) % 16 ) == 0 ) { @@ -143,7 +143,7 @@ uint8_t *pData = ( uint8_t* )&DevAddr; for( int32_t i = 3; i >= 0; i-- ) { - printf( "%02X ", pData[i] ); + printf( "%02X", pData[i] ); } printf( "\r\n" );