Skip to content

Commit

Permalink
Added empty function for test procedure trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Mika Leppänen committed Jun 24, 2021
1 parent 14439b4 commit 81ecdc2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/6LoWPAN/ws/ws_empty_functions.c
Expand Up @@ -26,6 +26,7 @@

#include "ws_management_api.h"
#include "ns_time_api.h"
#include "net_ws_test_ext.h"

#ifndef HAVE_WS
int ws_management_node_init(
Expand Down Expand Up @@ -488,5 +489,13 @@ int8_t ws_test_drop_edfe_data_frames(int8_t interface_id, uint8_t number_of_dro
return -1;
}

int ws_test_procedure_trigger(int8_t interface_id, ws_test_proc_t procedure, void *parameters)
{
(void) interface_id;
(void) procedure;
(void) parameters;
return -1;
}


#endif // no HAVE_WS

0 comments on commit 81ecdc2

Please sign in to comment.