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.
Fork of SX1272PingPong by
Revision 15:9c3805baa6c1, committed 2017-01-25
- Comitter:
- jerem28
- Date:
- Wed Jan 25 12:18:50 2017 +0000
- Parent:
- 14:3c9348ac486c
- Commit message:
- SX1272 Receiver/Transmitter program based on SX1272PingPong program
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 3c9348ac486c -r 9c3805baa6c1 main.cpp --- a/main.cpp Wed Jan 25 12:16:30 2017 +0000 +++ b/main.cpp Wed Jan 25 12:18:50 2017 +0000 @@ -111,7 +111,6 @@ int16_t RssiValue = 0; int8_t SnrValue = 0; -int8_t TemperatureValue = 0; ModemType Modem; @@ -221,8 +220,8 @@ // TODO ADD tmst | number | Internal timestamp of "RX finished" event (32b unsigned) - pc.printf(">INFO RX modem=%d size=%d rssi=%d temp=%d snr=%d freq=%d bw=%d sf=%d cr=%d buffer=", - Modem, BufferSize, RssiValue, TemperatureValue, SnrValue, RF_FREQUENCY, LORA_BANDWIDTH, LORA_SPREADING_FACTOR, LORA_CODINGRATE ); + pc.printf(">INFO RX modem=%d size=%d rssi=%d snr=%d freq=%d bw=%d sf=%d cr=%d buffer=", + Modem, BufferSize, RssiValue, SnrValue, RF_FREQUENCY, LORA_BANDWIDTH, LORA_SPREADING_FACTOR, LORA_CODINGRATE ); hexprintf(&pc, Buffer, BufferSize); pc.printf("\r\n");