pkg/semtech-loramac: handle rx started event in mac event callback

This is only used for debugging purpose when ENABLE_DEBUG is set and avoid having a message about an unexpected event received
This commit is contained in:
Alexandre Abadie 2019-07-04 19:33:48 +02:00
parent 3f141e9184
commit 01195a073f
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -543,6 +543,10 @@ static void _semtech_loramac_event_cb(netdev_t *dev, netdev_event_t event)
}
break;
case NETDEV_EVENT_RX_STARTED:
DEBUG("[semtech-loramac] RX started\n");
break;
case NETDEV_EVENT_RX_COMPLETE:
{
size_t len;