/**
*****************************************************************************
* @file pmem.c
* @author Ingrid
* @version V1.0.0
* @date 03-June-2013
* @brief PMEM module driver interface
*****************************************************************************
* @attention
*
* This module support clk driver, all the other module need to consider how to
* use these function
*
*
© COPYRIGHT 2013 MVSilicon
*/
#ifndef __PMEM_H__
#define __PMEM_H__
#ifdef __cplusplus
extern "C" {
#endif//__cplusplus
/**0 is current val in reg
*/
uint32_t PmemDataPathSel(uint8_t Mode);
/**
* @brief close the path for each master r/w pmem
* @param Mode master read/write pmem path sel
* @return NONE
*/
void PmemDataPathClose(uint8_t Mode);
#ifdef __cplusplus
}
#endif//__cplusplus
#endif