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