123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- #ifndef EEP_IPW_H
- #define EEP_IPW_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "Eep_InternalTypes.h"
- #include "Ftfc_Eep_Ip.h"
- #define EEP_IPW_VENDOR_ID_H 43
- #define EEP_IPW_AR_RELEASE_MAJOR_VERSION_H 4
- #define EEP_IPW_AR_RELEASE_MINOR_VERSION_H 4
- #define EEP_IPW_AR_RELEASE_REVISION_VERSION_H 0
- #define EEP_IPW_SW_MAJOR_VERSION_H 1
- #define EEP_IPW_SW_MINOR_VERSION_H 0
- #define EEP_IPW_SW_PATCH_VERSION_H 0
- #if (EEP_IPW_VENDOR_ID_H != EEP_INTERNALTYPES_VENDOR_ID)
- #error "Eep_IPW.h and Eep_InternalTypes.h have different vendor ids"
- #endif
- #if ((EEP_IPW_AR_RELEASE_MAJOR_VERSION_H != EEP_INTERNALTYPES_AR_RELEASE_MAJOR_VERSION) || \
- (EEP_IPW_AR_RELEASE_MINOR_VERSION_H != EEP_INTERNALTYPES_AR_RELEASE_MINOR_VERSION) || \
- (EEP_IPW_AR_RELEASE_REVISION_VERSION_H != EEP_INTERNALTYPES_AR_RELEASE_REVISION_VERSION) \
- )
- #error "AutoSar Version Numbers of Eep_IPW.h and Eep_InternalTypes.h are different"
- #endif
- #if ((EEP_IPW_SW_MAJOR_VERSION_H != EEP_INTERNALTYPES_SW_MAJOR_VERSION) || \
- (EEP_IPW_SW_MINOR_VERSION_H != EEP_INTERNALTYPES_SW_MINOR_VERSION) || \
- (EEP_IPW_SW_PATCH_VERSION_H != EEP_INTERNALTYPES_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of Eep_IPW.h and Eep_InternalTypes.h are different"
- #endif
- #if (EEP_IPW_VENDOR_ID_H != FTFC_EEP_IP_VENDOR_ID_H)
- #error "Eep_IPW.h and Ftfc_Eep_Ip.h have different vendor IDs!"
- #endif
- #if ((EEP_IPW_AR_RELEASE_MAJOR_VERSION_H != FTFC_EEP_IP_AR_RELEASE_MAJOR_VERSION_H) || \
- (EEP_IPW_AR_RELEASE_MINOR_VERSION_H != FTFC_EEP_IP_AR_RELEASE_MINOR_VERSION_H) || \
- (EEP_IPW_AR_RELEASE_REVISION_VERSION_H != FTFC_EEP_IP_AR_RELEASE_REVISION_VERSION_H) \
- )
- #error "Eep_IPW.h and Ftfc_Eep_Ip.h are for different AUTOSAR versions!"
- #endif
- #if ((EEP_IPW_SW_MAJOR_VERSION_H != FTFC_EEP_IP_SW_MAJOR_VERSION_H) || \
- (EEP_IPW_SW_MINOR_VERSION_H != FTFC_EEP_IP_SW_MINOR_VERSION_H) || \
- (EEP_IPW_SW_PATCH_VERSION_H != FTFC_EEP_IP_SW_PATCH_VERSION_H) \
- )
- #error "Eep_IPW.h and Ftfc_Eep_Ip.h have different SW versions!"
- #endif
- #define EEP_START_SEC_CODE
- #include "Eep_MemMap.h"
- Eep_ReturnType Eep_Ipw_Init (Eep_ConfigType const * pxEepConfig);
- Std_ReturnType Eep_Ipw_CheckReadParams (Eep_AddressType SrcAddress,
- uint8 const * pu8DestAddress,
- Eep_LengthType Length
- );
- Eep_ReturnType Eep_Ipw_Read (Eep_AddressType SrcAddress,
- uint8 * pu8DestAddress,
- Eep_LengthType Length
- );
- #if (EEP_COMPARE_API == STD_ON)
- Std_ReturnType Eep_Ipw_CheckCompareParams (Eep_AddressType SrcAddress,
- uint8 const * pu8DestAddress,
- Eep_LengthType Length
- );
- Eep_ReturnType Eep_Ipw_CompareSync (Eep_AddressType SrcAddress,
- uint8 const * pu8DestAddress,
- Eep_LengthType Length
- );
- #endif
- Std_ReturnType Eep_Ipw_CheckEraseParams (Eep_AddressType Address,
- Eep_LengthType Length
- );
- Eep_ReturnType Eep_Ipw_Erase (Eep_AddressType Address,
- Eep_LengthType Length
- );
- Std_ReturnType Eep_Ipw_CheckWriteParams (Eep_AddressType DestAddress,
- uint8 const * pu8SrcAddress,
- Eep_LengthType Length
- );
- Eep_ReturnType Eep_Ipw_Write (Eep_AddressType DestAddress,
- uint8 const * pu8SrcAddress,
- Eep_LengthType Length
- );
- #if (EEP_QUICK_WRITES_API == STD_ON)
- Std_ReturnType Eep_Ipw_CheckQuickWriteParams (Eep_AddressType DestAddress,
- uint8 const * pu8SrcAddress,
- Eep_LengthType Length,
- Eep_LengthType QuickWritesLength
- );
- Eep_ReturnType Eep_Ipw_QuickWrite (Eep_AddressType DestAddress,
- uint8 const * pu8SrcAddress,
- Eep_LengthType Length
- );
- #endif
- #if (EEP_CANCEL_API == STD_ON)
- Eep_ReturnType Eep_Ipw_Cancel (void);
- #endif
- #define EEP_STOP_SEC_CODE
- #include "Eep_MemMap.h"
- #ifdef __cplusplus
- }
- #endif
- #endif
|