/** Copyright (c) 2007 Freescale Semiconductor Freescale Confidential Proprietary \file CipherIF.c \brief VKSP Memory Interface File \author Freescale Semiconductor \author \author Guadalajara Applications Laboratory RTAC Americas \version 1.0 \date 3/Nov/2006 \warning * History: */ /*****************************************************************************/ /* Include Files */ #include "vksp_tx_cfg.h" #include "Flash.h" /*******************************************************************************/ /** * \brief vfnVkspTx_NvWrite - Interface Function for programming in the flash driver. * \author RV after IM * \param VkspTx_AddressType Source : Address where data is programmed. * \param VkspTx_DataType Data : Data to be programmed. * \return void * \todo */ void vfnVkspTx_NvWrite(VkspTx_AddressType Source, VkspTx_DataType Data){ Flash_Program(Source, Data); } /*******************************************************************************/ /** * \brief vfnVkspTx_NvErase - Interface Function for erasing in the flash driver. * \author RV after IM * \param VkspTx_AddressType Source : Address of sector to be erased * \return void * \todo */ void vfnVkspTx_NvErase(VkspTx_AddressType Source){ Flash_Erase(Source); }