123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- #ifndef GPT_ENVCFG_H
- #define GPT_ENVCFG_H
- #ifdef __cplusplus
- extern "C"{
- #endif
- #define GPT_ENVCFG_VENDOR_ID 43
- #define GPT_ENVCFG_AR_RELEASE_MAJOR_VERSION 4
- #define GPT_ENVCFG_AR_RELEASE_MINOR_VERSION 4
- #define GPT_ENVCFG_AR_RELEASE_REVISION_VERSION 0
- #define GPT_ENVCFG_SW_MAJOR_VERSION 1
- #define GPT_ENVCFG_SW_MINOR_VERSION 0
- #define GPT_ENVCFG_SW_PATCH_VERSION 0
- #define GPT_VALIDATE_GLOBAL_CALL (GPT_DEV_ERROR_DETECT)
- #define GPT_VALIDATE_CHANNEL_CALL (GPT_DEV_ERROR_DETECT)
-
- #define GPT_VALIDATE_STATE (GPT_DEV_ERROR_DETECT)
- #define GPT_VALIDATE_PARAM (GPT_DEV_ERROR_DETECT)
- #ifdef __cplusplus
- }
- #endif
- #endif
|