1.3.5.6.63 BMNG_WHITELIST_AddRequest Function
C
void BMNG_WHITELIST_AddRequest(uint8_t cmd, uint8_t *eui48);
Summary
Requests to add a node to the Whitelist.
Description
This routine requests to add a node to the Whitelist.
Precondition
None.
Parameters
Param | Description |
---|---|
cmd | Command to acknowledge |
eui48 | Pointer to the address of the node to be added |
Returns
None.
Example
uint8_t eui48[6];
memset(eui48, 0x12, 6);
BMNG_WHITELIST_AddRequest(WHITELIST_ADD_REQUEST, eui48);
Remarks
The command is acknowledged with the Whitelist ACK callback.