LPCOpen Platform  v1.03
LPCOpen Platform for NXP LPC Microcontrollers
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
eeprom_17xx_40xx.h
Go to the documentation of this file.
1 /*
2  * @brief LPC17xx/40xx EEPROM driver
3  *
4  * @note
5  * Copyright(C) NXP Semiconductors, 2012
6  * All rights reserved.
7  *
8  * @par
9  * Software that is described herein is for illustrative purposes only
10  * which provides customers with programming information regarding the
11  * LPC products. This software is supplied "AS IS" without any warranties of
12  * any kind, and NXP Semiconductors and its licensor disclaim any and
13  * all warranties, express or implied, including all implied warranties of
14  * merchantability, fitness for a particular purpose and non-infringement of
15  * intellectual property rights. NXP Semiconductors assumes no responsibility
16  * or liability for the use of the software, conveys no license or rights under any
17  * patent, copyright, mask work right, or any other intellectual property rights in
18  * or to any products. NXP Semiconductors reserves the right to make changes
19  * in the software without notification. NXP Semiconductors also makes no
20  * representation or warranty that such application will be suitable for the
21  * specified use without further testing or modification.
22  *
23  * @par
24  * Permission to use, copy, modify, and distribute this software and its
25  * documentation is hereby granted, under NXP Semiconductors' and its
26  * licensor's relevant copyrights in the software, without fee, provided that it
27  * is used in conjunction with NXP Semiconductors microcontrollers. This
28  * copyright, permission, and disclaimer notice must appear in all copies of
29  * this code.
30  */
31 
32 #ifndef EEPROM_17XX_40XX_H_
33 #define EEPROM_17XX_40XX_H_
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
44 /* EEPROM read write size type */
46 
52 void Chip_EEPROM_Init(LPC_EEPROM_T *pEEPROM);
53 
60 {
61  IP_EEPROM_DeInit(pEEPROM);
62 }
63 
71 {
72  IP_EEPROM_SetWaitState(pEEPROM, ws);
73 }
74 
90 STATIC INLINE Status Chip_EEPROM_Write(LPC_EEPROM_T *pEEPROM, uint16_t pageOffset,
91  uint16_t pageAddress,
92  void *pData,
93  EEPROM_RWSIZE_T wsize,
94  uint32_t byteNum)
95 {
96  return IP_EEPROM_Write(pEEPROM, pageOffset, pageAddress, pData, wsize, byteNum);
97 }
98 
112 STATIC INLINE void Chip_EEPROM_Read(LPC_EEPROM_T *pEEPROM, uint16_t pageOffset,
113  uint16_t pageAddress,
114  void *pData,
115  EEPROM_RWSIZE_T rsize,
116  uint32_t byteNum)
117 {
118  IP_EEPROM_Read(pEEPROM, pageOffset, pageAddress, pData, rsize, byteNum);
119 }
120 
127 STATIC INLINE void Chip_EEPROM_Erase(LPC_EEPROM_T *pEEPROM, uint16_t address)
128 {
129  IP_EEPROM_Erase(pEEPROM, address);
130 }
131 
138 {
139  IP_EEPROM_EnablePowerDown(pEEPROM);
140 }
141 
148 {
150 }
151 
159 {
160  IP_EEPROM_EnableInt(pEEPROM, mask);
161 }
162 
170 {
171  IP_EEPROM_DisableInt(pEEPROM, mask);
172 }
173 
180 {
181  return IP_EEPROM_GetIntEnable(pEEPROM);
182 }
183 
190 {
191  return IP_EEPROM_GetIntStatus(pEEPROM);
192 }
193 
201 {
202  IP_EEPROM_SetIntStatus(pEEPROM, mask);
203 }
204 
212 {
213  IP_EEPROM_ClearIntStatus(pEEPROM, mask);
214 }
215 
220  #ifdef __cplusplus
221 }
222 #endif
223 
224 #endif /* EEPROM_17XX_40XX_H_ */