STACK_EventRegister

C

void STACK_EventRegister(STACK_EventCb_T eventCb);

Description

Registers a callback function for STACK events.

Note

This function allows application to register a callback that will be invoked when a STACK event occurred. The application-provided callback function must conform to the See STACK_EventCb_T. function signature.

Parameters

ParameterDescription
[in] eventCbThe callback function provided by the application that will be called upon a STACK event. This function should handle the event appropriately. See STACK_EventCb_T.