1.4.3.37 PAL_CheckMinimumQuality Function

C

bool PAL_CheckMinimumQuality(uint16_t pch, uint8_t reference, uint8_t modulation);

Summary

Check minimum quality for modulation scheme

Description

This routine is used to check if the modulation is good enough for a low FER (Frame Error rate) for the given scheme.

Precondition

The PAL_Initialize function should have been called before calling this function.

Parameters

ParamDescription
pchPhysical channel
schemeModulation scheme of message
lessRobustModeLess robust modulation

Returns

true - If successful

false - If unsuccessful

Example

 
    uint16_t pch = 16;
    PAL_SCHEME scheme = PAL_PLC_DBPSK_R;
    uint8_t lessRobustMode = PAL_PLC_DQPSK;
    bool result=true;

    result = PAL_HasMinimumQuality(pch, scheme, lessRobustMode);

Remarks

Not available for PHY Serial.