12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef SYSTEM_IP_CFG_H_
- #define SYSTEM_IP_CFG_H_
- #include "System_Ip_CfgDefines.h"
- #define PLATFORM_SYSTEM_IP_CFG_TYPES_VENDOR_ID 43
- #define PLATFORM_SYSTEM_IP_CFG_SW_MAJOR_VERSION 1
- #define PLATFORM_SYSTEM_IP_CFG_SW_MINOR_VERSION 0
- #define PLATFORM_SYSTEM_IP_CFG_SW_PATCH_VERSION 0
- #if (PLATFORM_SYSTEM_IP_CFG_TYPES_VENDOR_ID != PLATFORM_SYSTEM_IP_CFG_DEFINES_TYPES_VENDOR_ID)
- #error "System_Ip_Cfg.h and System_Ip_TypesDef.h have different vendor ids"
- #endif
- #if ((PLATFORM_SYSTEM_IP_CFG_SW_MAJOR_VERSION != PLATFORM_SYSTEM_IP_CFG_DEFINES_SW_MAJOR_VERSION) || \
- (PLATFORM_SYSTEM_IP_CFG_SW_MINOR_VERSION != PLATFORM_SYSTEM_IP_CFG_DEFINES_SW_MINOR_VERSION) || \
- (PLATFORM_SYSTEM_IP_CFG_SW_PATCH_VERSION != PLATFORM_SYSTEM_IP_CFG_DEFINES_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of System_Ip_Cfg.h and System_Ip_TypesDef.h are different"
- #endif
- #define SYSTEM_IP_DEV_ERROR_DETECT (STD_OFF)
- #define SYSTEM_IP_ENABLE_USER_MODE_SUPPORT (STD_OFF)
- #endif
|