File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -120,5 +120,11 @@ extern int8_t DEVICE_MIN_SENS;
120
120
#define WS_BLACKLIST_PURGE_NBR 3
121
121
#define WS_BLACKLIST_PURGE_TIMER_TIMEOUT 60
122
122
123
+ /*
124
+ * MAC frame counter NVM storing configuration
125
+ */
126
+ #define FRAME_COUNTER_STORE_INTERVAL 60 // Time interval (on seconds) between frame counter store operations
127
+ #define FRAME_COUNTER_INCREMENT 1000 // How much frame counter is incremented on start up
128
+ #define FRAME_COUNTER_STORE_THRESHOLD 800 // How much frame counter must increment before it is stored
123
129
124
130
#endif /* WS_CONFIG_H_ */
Original file line number Diff line number Diff line change 39
39
40
40
#define TRACE_GROUP "wspc"
41
41
42
- // Time interval (on seconds) between frame counter store operations
43
- #define FRAME_COUNTER_STORE_INTERVAL 60
44
- // How much frame counter is incremented on start up
45
- #define FRAME_COUNTER_INCREMENT 1000
46
- // How much frame counter must increment before it is stored
47
- #define FRAME_COUNTER_STORE_THRESHOLD 800
48
-
49
42
typedef int8_t ws_pae_delete (protocol_interface_info_entry_t * interface_ptr );
50
43
typedef void ws_pae_timer (uint16_t ticks );
51
44
typedef int8_t ws_pae_br_addr_write (protocol_interface_info_entry_t * interface_ptr , const uint8_t * eui_64 );
You can’t perform that action at this time.
0 commit comments