1.1.1.5.3 DRV_AK4953_VersionGet Function

uint32_t DRV_AK4953_VersionGet( void )

Summary

This function returns the version of AK4953 driver.

Description

The version number returned from the DRV_AK4953_VersionGet function is an unsigned integer in the following decimal format. * 10000 + * 100 + Where the numbers are represented in decimal and the meaning is the same as above. Note that there is no numerical representation of release type.

Preconditions

None.

Returns

Returns the version of AK4953 driver.

Remarks

None.

Example 1

For version "0.03a", return: 0 * 10000 + 3 * 100 + 0 
For version "1.00", return: 1 * 100000 + 0 * 100 + 0

Example 2

uint32_t AK4953version; AK4953version = DRV_AK4953_VersionGet();

C

uint32_t DRV_AK4953_VersionGet();