1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cc2538_netdev: disable netdev if radio hal is present

This commit is contained in:
Jose Alamos 2020-06-24 11:47:11 +02:00
parent 2917879407
commit 2d7c316226

View File

@ -31,6 +31,8 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#if !IS_USED(MODULE_IEEE802154_RADIO_HAL)
/* Reference pointer for the IRQ handler */
static netdev_t *_dev;
@ -420,3 +422,6 @@ const netdev_driver_t cc2538_rf_driver = {
.isr = _isr,
.init = _init,
};
#else
int dont_be_pedantic;
#endif /* MODULE_IEEE802154_RADIO_HAL */