![]() |
RA Flexible Software Package Documentation
Release v5.9.0
|
|
Functions | |
fsp_err_t | RM_MESH_LIGHT_XYL_SRV_Open (rm_ble_mesh_model_server_ctrl_t *const p_ctrl, rm_ble_mesh_model_server_cfg_t const *const p_cfg) |
fsp_err_t | RM_MESH_LIGHT_XYL_SRV_Close (rm_ble_mesh_model_server_ctrl_t *const p_ctrl) |
fsp_err_t | RM_MESH_LIGHT_XYL_SRV_StateUpdate (rm_ble_mesh_model_server_ctrl_t *const p_ctrl, rm_ble_mesh_access_server_state_t const *const p_state) |
The BLE Mesh Network Light Xyl Server module supports the following devices.
Configuration | Options | Default | Description |
---|
Configuration | Options | Default | Description |
---|---|---|---|
Interrupts | |||
Callback Provided when Timeout Occurs | Name Must Be a Valid C Symbol | NULL | Callback provided when mesh light XYL server ISR occurs |
Callback Provided when an Timeout ISR Occurs | Name Must Be a Valid C Symbol | NULL | Callback provided when mesh light XYL server timeout ISR occurs |
Name | Name Must Be a Valid C Symbol | g_rm_mesh_light_xyl_srv0 | Module name. |
Data Structures | |
struct | rm_mesh_light_xyl_srv_info_t |
struct | rm_mesh_light_xyl_srv_target_info_t |
struct | rm_mesh_light_xyl_srv_default_info_t |
struct | rm_mesh_light_xyl_srv_range_info_t |
struct | rm_mesh_light_xyl_srv_instance_ctrl_t |
struct rm_mesh_light_xyl_srv_info_t |
Light xyL state is a composite state that includes the xyL Lightness, the Light xyL x and the Light xyL y states
struct rm_mesh_light_xyl_srv_target_info_t |
Light xyL target state is a composite state that includes the xyL Lightness, the Light xyL x and the Light xyL y states
struct rm_mesh_light_xyl_srv_default_info_t |
Light xyL default state is a composite state that includes the xyL Lightness, the Light xyL x and the Light xyL y states
struct rm_mesh_light_xyl_srv_range_info_t |
Light xyL Range state determines the minimum and maximum values of the Light xyL x and syL y state of an element
struct rm_mesh_light_xyl_srv_instance_ctrl_t |
BLE mesh light xyl instance control block. DO NOT INITIALIZE. Initialization occurs when RM_MESH_LIGHT_XYL_SRV_Open() is called.
fsp_err_t RM_MESH_LIGHT_XYL_SRV_Open | ( | rm_ble_mesh_model_server_ctrl_t *const | p_ctrl, |
rm_ble_mesh_model_server_cfg_t const *const | p_cfg | ||
) |
API to initialize Light_Xyl Server model. This is to initialize Light_Xyl Server model and to register with Access layer.
Implements rm_ble_mesh_model_server_api_t::open.
Example:
FSP_SUCCESS | Model opened successfully. |
FSP_ERR_ASSERTION | Pointer to control block or configuration structure is NULL. |
FSP_ERR_ALREADY_OPEN | Model is already open. |
FSP_ERR_NOT_FOUND | The number of models has exceeded the limit. |
FSP_ERR_ABORTED | Model initialization is failed. |
fsp_err_t RM_MESH_LIGHT_XYL_SRV_Close | ( | rm_ble_mesh_model_server_ctrl_t *const | p_ctrl | ) |
API to terminate Light_Xyl Server model. This is to terminate Light_Xyl Server model and to register with Access layer.
Implements rm_ble_mesh_model_server_api_t::close.
Example:
FSP_SUCCESS | Model successfully closed. |
FSP_ERR_ASSERTION | The parameter p_ctrl is NULL. |
FSP_ERR_NOT_OPEN | Model is not open. |
fsp_err_t RM_MESH_LIGHT_XYL_SRV_StateUpdate | ( | rm_ble_mesh_model_server_ctrl_t *const | p_ctrl, |
rm_ble_mesh_access_server_state_t const *const | p_state | ||
) |
API to send reply or to update state change. This is to send reply for a request or to inform change in state.
Implements rm_ble_mesh_model_server_api_t::stateUpdate.
Example:
FSP_SUCCESS | Updated server status successfully. |
FSP_ERR_ASSERTION | The parameter p_ctrl is NULL. |
FSP_ERR_INVALID_POINTER | The parameter p_state is NULL. |
FSP_ERR_NOT_OPEN | Model is not open. |
FSP_ERR_INVALID_ARGUMENT | Input parameter is invalid. |
FSP_ERR_APPROXIMATION | Lower layer is invalid state. |
FSP_ERR_NOT_FOUND | Input parameter is not found. |
FSP_ERR_INVALID_ADDRESS | Invalid source address. |
FSP_ERR_OUT_OF_MEMORY | Memory allocation is failed. |
FSP_ERR_OVERFLOW | TX queue is full. |
FSP_ERR_UNDERFLOW | TX queue is empty. |
FSP_ERR_ABORTED | Operation is failed. |