Exported Functions
- group Mesh_Common_Exported_Functions
-
Functions
-
void device_info_cb_reg(device_info_cb_pf cb)
reg the callback to indicate the information of neighbor mesh devices
- Parameters:
cb – [in] callback
- Returns:
none
-
void mesh_init(void)
init the mesh stack
- Returns:
none
-
void mesh_start(uint8_t event_mesh, uint8_t event_app, void *event_queue, void *app_queue)
start the mesh stack
- Parameters:
event_mesh – [in] the event type of the mesh inner msg
event_app – [in] the event type sent to app by the mesh stack
event_queue – [in] the event queue to send event
app_queue – [in] the app queue to send message
- Returns:
none
-
void mesh_deinit(void)
deinit the mesh stack
release all the resources and reset the global variables
- Returns:
none
-
void mesh_reboot(mesh_reboot_reason_t reason, uint32_t delay_ms)
reboot with delay
- Parameters:
reason – [in] reboot reason
delay_ms – [in] if it is 0, reboot right now
- Returns:
none
-
bool mesh_inner_msg_send(mesh_inner_msg_t *pmsg)
send the mesh inner msg
- Parameters:
pmsg – [in] message
- Returns:
operation result
-
void mesh_inner_msg_handle(uint8_t event)
handle the mesh inner message
- Parameters:
event – [in] mesh event
- Returns:
none
-
void mesh_tick_timer_start(uint32_t tick_ms, tick_timeout_cb tick_cb)
start the tick timer
The mesh stack provides a gerneral tick timer
- Parameters:
tick_ms – [in] tick
tick_cb – [in] timeout callback
- Returns:
none
-
void mesh_tick_timer_stop(void)
stop the tick timer
- Returns:
none
-
bool mesh_tick_timer_is_running(void)
get the tick timer state
- Return values:
true – running
false – not running
- Returns:
tick timer state
-
void mesh_model_delay_execution_init(model_delay_execution_timeout_cb delay_cb)
initialize model delay execution
- Parameters:
delay_cb – [in] delay execution timeout callback function
- Returns:
none
-
int mesh_version_check(const char *sdk_ver, uint32_t gcid)
check the compatibility between the sdk and lib
- Parameters:
sdk_ver – [in] the sdk version
gcid – [in] the git commit id
- Return values:
0 – compatible
>0 – incompatible due to the lib is old
<0 – incompatible due to the sdk is old
- Returns:
the compatibility
-
void device_info_cb_reg(device_info_cb_pf cb)