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: libmDot-mbed5 ISL29011
Revision 40:3cb0ed329c6e, committed 2020-05-18
- Comitter:
- Jason Reiss
- Date:
- Mon May 18 09:57:44 2020 -0500
- Parent:
- 39:76f8a75ed3ec
- Child:
- 41:67feacfab49c
- Commit message:
- Update type of snr argument for PacketRx handler for libmDot/libxDot 3.3.x release
Changed in this revision
| examples/inc/RadioEvent.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/examples/inc/RadioEvent.h Thu Dec 19 09:33:42 2019 -0600
+++ b/examples/inc/RadioEvent.h Mon May 18 09:57:44 2020 -0500
@@ -13,7 +13,7 @@
virtual ~RadioEvent() {}
- virtual void PacketRx(uint8_t port, uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr, lora::DownlinkControl ctrl, uint8_t slot, uint8_t retries, uint32_t address, bool dupRx) {
+ virtual void PacketRx(uint8_t port, uint8_t *payload, uint16_t size, int16_t rssi, int16_t snr, lora::DownlinkControl ctrl, uint8_t slot, uint8_t retries, uint32_t address, bool dupRx) {
mDotEvent::PacketRx(port, payload, size, rssi, snr, ctrl, slot, retries, address, dupRx);
#if ACTIVE_EXAMPLE == FOTA_EXAMPLE