50 lines
2.7 KiB
C
50 lines
2.7 KiB
C
/***********************************************************************************************************************
|
|
* FILE DESCRIPTION
|
|
* ------------------------------------------------------------------------------------------------------------------*/
|
|
/** \file
|
|
* \brief RAM driver functions
|
|
*
|
|
* --------------------------------------------------------------------------------------------------------------------
|
|
* COPYRIGHT
|
|
* --------------------------------------------------------------------------------------------------------------------
|
|
* \par Copyright
|
|
* \verbatim
|
|
* Copyright (c) 2022 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
|
|
* --------------------------------------------------------------------------------------------------------------------
|
|
* Version Date Author Change Id Description
|
|
* --------------------------------------------------------------------------------------------------------------------
|
|
* 01.00.00 2013-10-23 visjhg - Initial release
|
|
* 01.01.00 2015-11-27 visase ESCAN00086297 No changes
|
|
* 01.02.00 2016-06-17 visci ESCAN00090364 No changes
|
|
* 01.02.01 2018-03-22 visdkl ESCAN00098872 No changes
|
|
* 01.02.02 2021-03-08 vishor ESCAN00108134 No changes
|
|
* 01.03.00 2022-03-17 visstn FBL-4366 Perform MISRA 2012 migration
|
|
**********************************************************************************************************************/
|
|
|
|
#ifndef FBL_RAMIO_INC_H
|
|
#define FBL_RAMIO_INC_H
|
|
|
|
/***********************************************************************************************************************
|
|
* INCLUDES
|
|
**********************************************************************************************************************/
|
|
|
|
#include "iotypes.h"
|
|
#include "fbl_ramio_cfg.h"
|
|
#include "fbl_ramio.h"
|
|
|
|
#endif /* FBL_RAMIO_INC_H */
|
|
|
|
/***********************************************************************************************************************
|
|
* END OF FILE: FBL_RAMIO_INC.H
|
|
**********************************************************************************************************************/
|