1.5.3.4 PAL_RF_Deinitialize Function
C
void PAL_RF_Deinitialize(SYS_MODULE_OBJ object);
Summary
De-initializes the specified instance of the RF PAL module.
Description
This function de-initializes the specified instance of the RF PAL module, disabling its operation and invalidates all of the internal data.
Precondition
Function PAL_RF_Initialize must have been called before calling this routine and a valid SYS_MODULE_OBJ must have been returned.
Parameters
Param | Description |
---|---|
object | RF PAL module object handle, returned by PAL_RF_Initialize. |
Returns
None.
Example
// This code example shows how the RF PAL can be deinitialized. // It is assumed the RF PAL module was already initialized. SYS_MODULE_OBJ palRfobj; PAL_RF_Deinitialize(palRfobj);
Remarks
Once PAL_RF_Initialize has been called, PAL_RF_Deinitialize must be called before PAL_RF_Initialize can be called again.