1.1.4.4.6 DRV_RF215_Close Function

C

void DRV_RF215_Close( const DRV_HANDLE drvHandle );

Summary

Closes an opened-instance of the RF215 driver.

Description

This routine closes an opened-instance of the RF215 driver, invalidating the handle. A new handle must be obtained by calling DRV_RF215_Open before the caller may use the driver again.

Precondition

DRV_RF215_Open must have been called to obtain a valid opened driver handle.

Parameters

ParamDescription
drvHandleA valid open-instance handle, returned from the driver's open routine.

Returns

None.

Example

// 'drvHandle', returned from DRV_RF215_Open

DRV_RF215_Close(drvHandle);

Remarks

None.