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

ParamDescription
cmdCommand to acknowledge
eui48Pointer to the address of the node to be asked
dataLenData length
dataPointer 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.