1.1.17.3 WDRV_WINC_FIRMWARE_VERSION_INFO Struct
C
typedef struct
{
bool isValid;
/* Version number structure. */
struct
{
uint16_t major;
uint16_t minor;
uint16_t patch;
} version;
/* Build date/time structure. */
struct
{
uint8_t hash[WINC_CFG_PARAM_SZ_CFG_BUILD_HASH];
uint32_t timeUTC;
} build;
} WDRV_WINC_FIRMWARE_VERSION_INFO;Description
This data type defines the version information of the firmware running on the WINC.
Members
| Members | Description |
|---|---|
| isValid | Flag indicating if this information is valid. |
| version.major | Major version number. |
| version.minor | Major minor number. |
| version.patch | Major patch number. |
| build.hash | Build hash. |
| build.timeUTC | Build time. |
Remarks
None.
