Go to the source code of this file.
Functions | |
CellularError_t | Cellular_ModuleInit (const CellularContext_t *pContext, void **ppModuleContext) |
Cellular module init function. | |
CellularError_t | Cellular_ModuleCleanUp (const CellularContext_t *pContext) |
Cellular module cleanup function. | |
CellularError_t | Cellular_ModuleEnableUE (CellularContext_t *pContext) |
Cellular module user equipment setup function. | |
CellularError_t | Cellular_ModuleEnableUrc (CellularContext_t *pContext) |
Cellular module URC enable function. | |
CellularError_t Cellular_ModuleInit | ( | const CellularContext_t * | pContext, |
void ** | ppModuleContext | ||
) |
Cellular module init function.
This function is called in Cellular_CommonInit to setup cellular module context.
[in,out] | pContext | FreeRTOS Cellular Library context created in Cellular_Init. |
[in] | ppModuleContext | Cellular module context can be obtained with _Cellular_GetModuleContext. |
CellularError_t Cellular_ModuleCleanUp | ( | const CellularContext_t * | pContext | ) |
Cellular module cleanup function.
This function cleans up the module context.
[in,out] | pContext | FreeRTOS Cellular Library context created in Cellular_Init. |
CellularError_t Cellular_ModuleEnableUE | ( | CellularContext_t * | pContext | ) |
Cellular module user equipment setup function.
This function setups the user equipment of the cellular module.
[in,out] | pContext | FreeRTOS Cellular Library context created in Cellular_Init. |
CellularError_t Cellular_ModuleEnableUrc | ( | CellularContext_t * | pContext | ) |
Cellular module URC enable function.
This function enable the unsolicited result code of the cellular module.
[in,out] | pContext | FreeRTOS Cellular Library context created in Cellular_Init. |