1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef OS_VERSION_H
- #define OS_VERSION_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define OS_VENDOR_ID 43
- #define OS_MODULE_ID 0x01
- #define OS_AR_RELEASE_MAJOR_VERSION 4
- #define OS_AR_RELEASE_MINOR_VERSION 4
- #define OS_AR_RELEASE_REVISION_VERSION 0
- #define OS_SW_MAJOR_VERSION 1
- #define OS_SW_MINOR_VERSION 0
- #define OS_SW_PATCH_VERSION 0
- #ifdef __cplusplus
- }
- #endif
- #endif
|