1.3.5.1.10 MAC_RF_ResetRequest Function

C

void MAC_RF_ResetRequest
(
    MAC_RESET_REQUEST_PARAMS *rstParams
);

Summary

The MAC_RF_ResetRequest primitive resets the MAC RF module.

Description

Reset operation initializes MAC RF State Machine and PIB to their default values. Result is provided in the corresponding Confirm callback.

Precondition

MAC_RF_Init routine must have been called before.

Parameters

ParamDescription
rstParamsPointer to structure containing required parameters for request. See MAC_RESET_REQUEST_PARAMS

Returns

None.

Example

MAC_RESET_REQUEST_PARAMS params = {
    .setDefaultPib = true
};

MAC_RF_ResetRequest(&params);

// Wait for Reset Confirm

Remarks

None.