1.2.5.5 ADP_Status Function

C

ADP_STATUS ADP_Status (
    void
);

Summary

The ADP_Status primitive retrieves the Status of G3 ADP layer.

Description

This primitive is intended to be called before using G3 ADP layer to ensure it is ready to be used.

Parameters

None.

Returns

Status of G3 ADP layer as a ADP_STATUS code. See ADP_STATUS.

Example

ADP_STATUS status;
status = ADP_Status();
if (status == ADP_STATUS_READY)
{
    // ADP is ready to be used
}

Remarks

None.