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

tests/driver_at86rf2xx: don't set NETOPT_RX_END_IRQ

This commit is contained in:
Benjamin Valentin 2022-05-11 13:59:36 +02:00
parent 03a0f38cef
commit a5a411e99b

View File

@ -91,7 +91,6 @@ int main(void)
unsigned dev_success = 0;
for (unsigned i = 0; i < AT86RF2XX_NUM; i++) {
netopt_enable_t en = NETOPT_ENABLE;
const at86rf2xx_params_t *p = &at86rf2xx_params[i];
netdev_t *dev = &devs[i].netdev.netdev;
@ -101,7 +100,6 @@ int main(void)
if (dev->driver->init(dev) < 0) {
continue;
}
dev->driver->set(dev, NETOPT_RX_END_IRQ, &en, sizeof(en));
dev_success++;
}