1.3.3.1 PAL_Init Function

C

void PAL_Init (
        PAL_INIT *init
    )

Summary

Initializes the PAL module.

Description

This routine initializes the PAL module, making it ready for users to use it. The initialization data is specified by the init parameter.

Parameters

Param Description

init

Pointer to the initialization data structure containing the data necessary to initialize the module. See PAL_INIT Struct.

Returns

None.

Example

    PAL_INIT palInitData;

    palInitData.palHandlers.palDataIndication = _plcDataIndication;
    palInitData.palHandlers.palTxConfirm = _plcTxConfirm;
    palInitData.palHandlers.palRxParamsIndication = _plcRxParamsIndication;

    PAL_Init(&palInitData);

Remarks

None.