123456789101112131415161718192021222324252627282930313233343536 |
- /**
- *******************************************************************************
- * @file lib_version.h
- * @author Application Team
- * @version V4.5.0
- * @date 2019-05-14
- * @brief Version library.
- *******************************************************************************/
- #ifndef __LIB_VERSION_H
- #define __LIB_VERSION_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "target.h"
-
- #define DRIVER_VERSION(major,minor) (((major) << 8) | (minor))
- /* Exported Functions ------------------------------------------------------- */
-
- /**
- * @brief Read receive data register.
- * @param None
- * @retval Version value
- */
- uint16_t Target_GetDriveVersion(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __LIB_VERSION_H */
- /*********************************** END OF FILE ******************************/
|