1.3.5.6.58 BMNG_PPROF_SetRequest Function
C
void BMNG_PPROF_SetRequest(uint8_t cmd, uint8_t *eui48, uint16_t dataLen,
uint8_t *data);
Summary
Requests to set a PIB attribute in a node using the PRIME Profile.
Description
This routine requests to set a PIB attribute in a node using the PRIME Profile.
Precondition
None.
Parameters
Param | Description |
---|---|
cmd | Command to acknowledge |
eui48 | Pointer to the address of the node to be asked |
dataLen | Data length |
data | Pointer to the data |
Returns
None.
Example
uint8_t data[3] = {0x00, 0x1A, 25};
uint8_t eui48[6];
memset(eui48, 0x12, 6);
BMNG_PPROF_SetRequest(PPROF_SET_REQUEST, eui48, sizeof(data), &data);
Remarks
The command is acknowledged with the PPROF ACK callback.