1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

pkg/uwb-dw1000: enable frame filtering by default

This commit is contained in:
Francisco Molina 2021-09-06 15:06:42 +02:00
parent d0e8d3aa24
commit 1704c7e686

View File

@ -199,10 +199,11 @@ extern "C" {
#endif
/**
* @brief Default MAC FrameFilter (0x0000 = no filter)
* @brief Default MAC FrameFilter (0x00ff = frame filtering enabled, all frames
* matching PANID and destination address accepted)
*/
#ifndef DW1000_FRAME_FILTER_DEFAULT
#define DW1000_FRAME_FILTER_DEFAULT 0x0000
#define DW1000_FRAME_FILTER_DEFAULT 0x00ff
#endif
/**