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

sys/net/gnrc: Flag esp_now as 6LN

In gnrc_netif_init_6ln() the flag GNRC_NETIF_FLAGS_6LN is accidentally not set
for esp_now devices. This commit fixes this.
This commit is contained in:
Benjamin Valentin 2020-03-05 15:18:43 +01:00
parent 1a30b8f40f
commit 4f7d5b105b

View File

@ -104,6 +104,9 @@ void gnrc_netif_init_6ln(gnrc_netif_t *netif)
case NETDEV_TYPE_BLE:
#ifdef MODULE_CC110X
case NETDEV_TYPE_CC110X:
#endif
#ifdef MODULE_ESP_NOW
case NETDEV_TYPE_ESP_NOW:
#endif
case NETDEV_TYPE_NRFMIN:
#if GNRC_IPV6_NIB_CONF_6LN