1.1.2.7.3 DRV_AK4954_VersionStrGet Function
int8_t* DRV_AK4954_VersionStrGet(void)
Summary
This function returns the version of AK4954 driver in string format.
Description
The DRV_AK4954_VersionStrGet function returns a string in the format: "." Where: is the AK4954 driver's version number. is the AK4954 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 AK4954 driver.
Remarks
None.
Example 1
"0.03a" "1.00"
Example 2
int8_t *AK4954string; AK4954string = DRV_AK4954_VersionStrGet();
C
int8_t* DRV_AK4954_VersionStrGet();