1.1.1.5.4 DRV_AK4953_VersionStrGet Function

int8_t* DRV_AK4953_VersionStrGet(void)

Summary

This function returns the version of AK4953 driver in string format.

Description

The DRV_AK4953_VersionStrGet function returns a string in the format: "." Where: is the AK4953 driver's version number. is the AK4953 driver's version number. is an optional "patch" or "dot" release number (which is not included in the string if it equals "00"). is an optional release type ("a" for alpha, "b" for beta ? not the entire word spelled out) that is not included if the release is a production version (I.e. Not an alpha or beta).

The String does not contain any spaces.

Preconditions

None.

Returns

Returns a string containing the version of AK4953 driver.

Remarks

None.

Example 1

"0.03a" "1.00"

Example 2

int8_t *AK4953string; AK4953string = DRV_AK4953_VersionStrGet();

C

int8_t* DRV_AK4953_VersionStrGet();