mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
examples/lorawan: avoid explicit cast to netdev
This commit is contained in:
parent
bfbbec3de3
commit
e04d62a969
@ -129,13 +129,13 @@ int main(void)
|
||||
/* Initialize the radio driver */
|
||||
#if IS_USED(MODULE_SX127X)
|
||||
sx127x_setup(&sx127x, &sx127x_params[0], 0);
|
||||
loramac.netdev = (netdev_t *)&sx127x;
|
||||
loramac.netdev = &sx127x.netdev;
|
||||
loramac.netdev->driver = &sx127x_driver;
|
||||
#endif
|
||||
|
||||
#if IS_USED(MODULE_SX126X)
|
||||
sx126x_setup(&sx126x, &sx126x_params[0], 0);
|
||||
loramac.netdev = (netdev_t *)&sx126x;
|
||||
loramac.netdev = &sx126x.netdev;
|
||||
loramac.netdev->driver = &sx126x_driver;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user