47 lines
2.5 KiB
C
47 lines
2.5 KiB
C
|
|
/***********************************************************************************************************************
|
||
|
|
* FILE DESCRIPTION
|
||
|
|
* ------------------------------------------------------------------------------------------------------------------*/
|
||
|
|
/** \file
|
||
|
|
* \brief MemIf ASR4 stub for flash bootloader
|
||
|
|
*
|
||
|
|
* --------------------------------------------------------------------------------------------------------------------
|
||
|
|
* COPYRIGHT
|
||
|
|
* --------------------------------------------------------------------------------------------------------------------
|
||
|
|
* \par Copyright
|
||
|
|
* \verbatim
|
||
|
|
* Copyright (c) 2024 by Vector Informatik GmbH. All rights reserved.
|
||
|
|
*
|
||
|
|
* This software is copyright protected and proprietary to Vector Informatik GmbH.
|
||
|
|
* Vector Informatik GmbH grants to you only those rights as set out in the license conditions.
|
||
|
|
* All other rights remain with Vector Informatik GmbH.
|
||
|
|
* \endverbatim
|
||
|
|
*/
|
||
|
|
/**********************************************************************************************************************/
|
||
|
|
|
||
|
|
/**********************************************************************************************************************
|
||
|
|
* REVISION HISTORY
|
||
|
|
* -------------------------------------------------------------------------------------------------------------------
|
||
|
|
* Refer to the module's header file.
|
||
|
|
**********************************************************************************************************************/
|
||
|
|
|
||
|
|
#ifndef MEMIF_H
|
||
|
|
#define MEMIF_H
|
||
|
|
|
||
|
|
/***********************************************************************************************************************
|
||
|
|
* INCLUDES
|
||
|
|
**********************************************************************************************************************/
|
||
|
|
#include "MemIf_Types.h"
|
||
|
|
|
||
|
|
/**********************************************************************************************************************
|
||
|
|
* VERSION
|
||
|
|
*********************************************************************************************************************/
|
||
|
|
|
||
|
|
#define MEMIF_AR_RELEASE_MAJOR_VERSION 4u
|
||
|
|
#define MEMIF_AR_RELEASE_MINOR_VERSION 0u
|
||
|
|
|
||
|
|
#endif /* MEMIF_H */
|
||
|
|
|
||
|
|
/***********************************************************************************************************************
|
||
|
|
* END OF FILE: MEMIF.H
|
||
|
|
**********************************************************************************************************************/
|