1.3.5.6.55 BMNG_FUP_GetVersionRequest Function
C
void BMNG_FUP_GetVersionRequest(uint8_t cmd, uint8_t *eui48);
Summary
Requests to get the firmware version.
Description
This routine requests to get the firmware version.
Precondition
None.
Parameters
Param | Description |
---|---|
cmd | Command to acknowledge |
eui48 | Pointer to the address of the node to be asked |
Returns
None.
Example
uint8_t eui48[6];
memset(eui48, 0x12, 6);
BMNG_FUP_GetVersionRequest(FUP_GET_VERSION_REQUEST, eui48);
Remarks
If the MAC address is FF:FF:FF:FF:FF:FF, the version information is asked to all registered nodes.
The command is acknowledged with the FUP ACK callback.
The result of the request is returned in the FUP version indication callback.