1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #9556 from bergzand/pr/pkg/emb6/set_netdev_events

emb6: explicitly configure RX complete interrupt
This commit is contained in:
Peter Kietzmann 2018-07-13 13:58:44 +02:00 committed by GitHub
commit 0aa5d8139b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,6 +108,16 @@ static void _emb6_netdev_callback(c_event_t c_event, p_data_t p_data)
}
}
static void _configure_netdev(void)
{
/* Enable RX-complete interrupts */
static const netopt_enable_t enable = NETOPT_ENABLE;
int res = _dev->driver->set(_dev, NETOPT_RX_END_IRQ, &enable, sizeof(enable));
if (res < 0) {
DEBUG("emb6: enable NETOPT_RX_END_IRQ failed: %d\n", res);
}
}
int emb6_netdev_setup(netdev_t *dev)
{
if (_dev == NULL) {
@ -127,6 +137,7 @@ static int8_t _netdev_init(s_ns_t *p_ns)
sizeof(mac_phy_config.mac_address));
_dev->driver->get(_dev, NETOPT_NID, &mac_phy_config.pan_id,
sizeof(mac_phy_config.pan_id));
_configure_netdev();
linkaddr_set_node_addr((linkaddr_t *)&uip_lladdr);
_lowmac = p_ns->lmac;
evproc_regCallback(EVENT_TYPE_PCK_LL, _emb6_netdev_callback);