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

ParamDescription
objectRF 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);