Select one of the symbols to view example projects that use it.
 
Outline
#include "stm32f429i_discovery_eeprom.h"
EEPROMAddress
EEPROMTimeout
EEPROMDataRead
EEPROMDataWrite
BSP_EEPROM_Init()
BSP_EEPROM_ReadBuffer(uint8_t *, uint16_t, uint16_t *)
BSP_EEPROM_WritePage(uint8_t *, uint16_t, uint8_t *)
BSP_EEPROM_WriteBuffer(uint8_t *, uint16_t, uint16_t)
BSP_EEPROM_WaitEepromStandbyState()
HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *)
HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *)
BSP_EEPROM_TIMEOUT_UserCallback()
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTM32F429I-Discoverystm32f429i_discovery_eeprom.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file stm32f429i_discovery_eeprom.c * @author MCD Application Team * @brief This file provides a set of functions needed to manage an I2C M24LR64 * EEPROM memory. * To be able to use this driver, the switch EE_M24LR64 must be defined * in your toolchain compiler preprocessor * * =================================================================== * Notes: * - This driver is intended for STM32F4xx families devices only. * - The I2C EEPROM memory (M24LR64) is available on separate daughter * board ANT7-M24LR-A, which is not provided with the STM32F429I * DISCOVERY board. * To use this driver you have to connect the ANT7-M24LR-A to CN3 * connector of STM32F429I DISCOVERY board. * =================================================================== * * It implements a high level communication layer for read and write * from/to this memory. The needed STM32F4xx hardware resources (I2C and * GPIO) are defined in stm32f429i_discovery.h file, and the initialization is * performed in EEPROM_IO_Init() function declared in stm32f429i_discovery.c * file. * You can easily tailor this driver to any other development board, * by just adapting the defines for hardware resources and * EEPROM_IO_Init() function. * * @note In this driver, basic read and write functions (BSP_EEPROM_ReadBuffer() * and BSP_EEPROM_WritePage()) use DMA mode to perform the data * transfer to/from EEPROM memory. * * @note Regarding BSP_EEPROM_WritePage(), it is a optimized function to perform * small write (less than 1 page) BUT The number of bytes (combined to write start address) must not * cross the EEPROM page boundary. This function can only write into * the boundaries of an EEPROM page. * This function doesn't check on boundaries condition (in this driver * the function BSP_EEPROM_WriteBuffer() which calls BSP_EEPROM_WritePage() is * responsible of checking on Page boundaries). * * * +-----------------------------------------------------------------+ * | Pin assignment for M24LR64 EEPROM | * +---------------------------------------+-----------+-------------+ * | STM32F4xx I2C Pins | EEPROM | Pin | * +---------------------------------------+-----------+-------------+ * | . | E0(GND) | 1 (0V) | * | . | AC0 | 2 | * | . | AC1 | 3 | * | . | VSS | 4 (0V) | * | SDA | SDA | 5 | * | SCL | SCL | 6 | * | . | E1(GND) | 7 (0V) | * | . | VDD | 8 (3.3V) | * +---------------------------------------+-----------+-------------+ * ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "stm32f429i_discovery_eeprom.h" #ifdef EE_M24LR64 /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup STM32F429I_DISCOVERY * @{ *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM STM32F429I DISCOVERY EEPROM * @brief This file includes the I2C EEPROM driver of STM32F429I Discovery Kit. * @{ *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Types STM32F429I DISCOVERY EEPROM Private Types * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Defines STM32F429I DISCOVERY EEPROM Private Defines * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Macros STM32F429I DISCOVERY EEPROM Private Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Variables STM32F429I DISCOVERY EEPROM Private Variables * @{ *//* ... */ __IO uint16_t EEPROMAddress = 0; __IO uint32_t EEPROMTimeout = EEPROM_READ_TIMEOUT; __IO uint16_t EEPROMDataRead; __IO uint8_t EEPROMDataWrite; /** * @} *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Function_Prototypes STM32F429I DISCOVERY EEPROM Private Function Prototypes * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup STM32F429I_DISCOVERY_EEPROM_Private_Functions STM32F429I DISCOVERY EEPROM Private Functions * @{ *//* ... */ /** * @brief Initializes peripherals used by the I2C EEPROM driver. * @note There are 2 different versions of M24LR64 (A01 & A02). * Then try to connect on 1st one (EEPROM_I2C_ADDRESS_A01) * and if problem, check the 2nd one (EEPROM_I2C_ADDRESS_A02) * @retval EEPROM_OK (0) if operation is correctly performed, else return value * different from EEPROM_OK (0) *//* ... */ uint32_t BSP_EEPROM_Init(void) { /* I2C Initialization */ EEPROM_IO_Init(); /*Select the EEPROM address for A01 and check if OK*/ EEPROMAddress = EEPROM_I2C_ADDRESS_A01; if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { /*Select the EEPROM address for A02 and check if OK*/ EEPROMAddress = EEPROM_I2C_ADDRESS_A02; if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { return EEPROM_FAIL; }if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { ... } }if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { ... } return EEPROM_OK; }{ ... } /** * @brief Reads a block of data from the EEPROM. * @param pBuffer : pointer to the buffer that receives the data read from * the EEPROM. * @param ReadAddr : EEPROM's internal address to start reading from. * @param NumByteToRead : pointer to the variable holding number of bytes to * be read from the EEPROM. * * @note The variable pointed by NumByteToRead is reset to 0 when all the * data are read from the EEPROM. Application should monitor this * variable in order know when the transfer is complete. * * @retval EEPROM_OK (0) if operation is correctly performed, else return value * different from EEPROM_OK (0) or the timeout user callback. *//* ... */ uint32_t BSP_EEPROM_ReadBuffer(uint8_t *pBuffer, uint16_t ReadAddr, uint16_t *NumByteToRead) { uint32_t buffersize = *NumByteToRead; /* Set the pointer to the Number of data to be read. This pointer will be used by the DMA Transfer Completer interrupt Handler in order to reset the variable to 0. User should check on this variable in order to know if the DMA transfer has been complete or not. *//* ... */ EEPROMDataRead = *NumByteToRead; if (EEPROM_IO_ReadData(EEPROMAddress, ReadAddr, pBuffer, buffersize) != HAL_OK) { return EEPROM_FAIL; }if (EEPROM_IO_ReadData(EEPROMAddress, ReadAddr, pBuffer, buffersize) != HAL_OK) { ... } /* Wait transfer through DMA to be complete */ EEPROMTimeout = HAL_GetTick() + EEPROM_READ_TIMEOUT; while (EEPROMDataRead > 0) { if (HAL_GetTick() > EEPROMTimeout) { BSP_EEPROM_TIMEOUT_UserCallback(); return EEPROM_TIMEOUT; }if (HAL_GetTick() > EEPROMTimeout) { ... } }while (EEPROMDataRead > 0) { ... } /* If all operations OK, return EEPROM_OK (0) */ return EEPROM_OK; }{ ... } /** * @brief Writes more than one byte to the EEPROM with a single WRITE cycle. * * @note The number of bytes (combined to write start address) must not * cross the EEPROM page boundary. This function can only write into * the boundaries of an EEPROM page. * This function doesn't check on boundaries condition (in this driver * the function BSP_EEPROM_WriteBuffer() which calls BSP_EEPROM_WritePage() is * responsible of checking on Page boundaries). * * @param pBuffer : pointer to the buffer containing the data to be written to * the EEPROM. * @param WriteAddr : EEPROM's internal address to write to. * @param NumByteToWrite : pointer to the variable holding number of bytes to * be written into the EEPROM. * * @note The variable pointed by NumByteToWrite is reset to 0 when all the * data are written to the EEPROM. Application should monitor this * variable in order know when the transfer is complete. * * @note This function just configure the communication and enable the DMA * channel to transfer data. Meanwhile, the user application may perform * other tasks in parallel. * * @retval EEPROM_OK (0) if operation is correctly performed, else return value * different from EEPROM_OK (0) or the timeout user callback. *//* ... */ uint32_t BSP_EEPROM_WritePage(uint8_t *pBuffer, uint16_t WriteAddr, uint8_t *NumByteToWrite) { uint32_t buffersize = *NumByteToWrite; uint32_t status = EEPROM_OK; /* Set the pointer to the Number of data to be written. This pointer will be used by the DMA Transfer Completer interrupt Handler in order to reset the variable to 0. User should check on this variable in order to know if the DMA transfer has been complete or not. *//* ... */ EEPROMDataWrite = *NumByteToWrite; if (EEPROM_IO_WriteData(EEPROMAddress, WriteAddr, pBuffer, buffersize) != HAL_OK) { status = EEPROM_FAIL; }if (EEPROM_IO_WriteData(EEPROMAddress, WriteAddr, pBuffer, buffersize) != HAL_OK) { ... } /* Wait transfer through DMA to be complete */ EEPROMTimeout = HAL_GetTick() + EEPROM_WRITE_TIMEOUT; while (EEPROMDataWrite > 0) { if (HAL_GetTick() > EEPROMTimeout) { BSP_EEPROM_TIMEOUT_UserCallback(); return EEPROM_TIMEOUT; }if (HAL_GetTick() > EEPROMTimeout) { ... } }while (EEPROMDataWrite > 0) { ... } if (BSP_EEPROM_WaitEepromStandbyState() != EEPROM_OK) { return EEPROM_FAIL; }if (BSP_EEPROM_WaitEepromStandbyState() != EEPROM_OK) { ... } /* If all operations OK, return EEPROM_OK (0) */ return status; }{ ... } /** * @brief Writes buffer of data to the I2C EEPROM. * @param pBuffer : pointer to the buffer containing the data to be written * to the EEPROM. * @param WriteAddr : EEPROM's internal address to write to. * @param NumByteToWrite : number of bytes to write to the EEPROM. * @retval EEPROM_OK (0) if operation is correctly performed, else return value * different from EEPROM_OK (0) or the timeout user callback. *//* ... */ uint32_t BSP_EEPROM_WriteBuffer(uint8_t *pBuffer, uint16_t WriteAddr, uint16_t NumByteToWrite) { uint16_t numofpage = 0, numofsingle = 0, count = 0; uint16_t addr = 0; uint8_t dataindex = 0; uint32_t status = EEPROM_OK; addr = WriteAddr % EEPROM_PAGESIZE; count = EEPROM_PAGESIZE - addr; numofpage = NumByteToWrite / EEPROM_PAGESIZE; numofsingle = NumByteToWrite % EEPROM_PAGESIZE; /* If WriteAddr is EEPROM_PAGESIZE aligned */ if (addr == 0) { /* If NumByteToWrite < EEPROM_PAGESIZE */ if (numofpage == 0) { /* Store the number of data to be written */ dataindex = numofsingle; /* Start writing data */ status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } }if (numofpage == 0) { ... } /* If NumByteToWrite > EEPROM_PAGESIZE */ else { while (numofpage--) { /* Store the number of data to be written */ dataindex = EEPROM_PAGESIZE; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } WriteAddr += EEPROM_PAGESIZE; pBuffer += EEPROM_PAGESIZE; }while (numofpage--) { ... } if (numofsingle != 0) { /* Store the number of data to be written */ dataindex = numofsingle; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } }if (numofsingle != 0) { ... } }else { ... } }if (addr == 0) { ... } /* If WriteAddr is not EEPROM_PAGESIZE aligned */ else { /* If NumByteToWrite < EEPROM_PAGESIZE */ if (numofpage == 0) { /* If the number of data to be written is more than the remaining space in the current page: *//* ... */ if (NumByteToWrite > count) { /* Store the number of data to be written */ dataindex = count; /* Write the data contained in same page */ status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } /* Store the number of data to be written */ dataindex = (NumByteToWrite - count); /* Write the remaining data in the following page */ status = BSP_EEPROM_WritePage((uint8_t *)(pBuffer + count), (WriteAddr + count), (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } }if (NumByteToWrite > count) { ... } else { /* Store the number of data to be written */ dataindex = numofsingle; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } }else { ... } }if (numofpage == 0) { ... } /* If NumByteToWrite > EEPROM_PAGESIZE */ else { NumByteToWrite -= count; numofpage = NumByteToWrite / EEPROM_PAGESIZE; numofsingle = NumByteToWrite % EEPROM_PAGESIZE; if (count != 0) { /* Store the number of data to be written */ dataindex = count; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } WriteAddr += count; pBuffer += count; }if (count != 0) { ... } while (numofpage--) { /* Store the number of data to be written */ dataindex = EEPROM_PAGESIZE; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } WriteAddr += EEPROM_PAGESIZE; pBuffer += EEPROM_PAGESIZE; }while (numofpage--) { ... } if (numofsingle != 0) { /* Store the number of data to be written */ dataindex = numofsingle; status = BSP_EEPROM_WritePage(pBuffer, WriteAddr, (uint8_t *)(&dataindex)); if (status != EEPROM_OK) { return status; }if (status != EEPROM_OK) { ... } }if (numofsingle != 0) { ... } }else { ... } }else { ... } /* If all operations OK, return EEPROM_OK (0) */ return EEPROM_OK; }{ ... } /** * @brief Wait for EEPROM Standby state. * * @note This function allows to wait and check that EEPROM has finished the * last operation. It is mostly used after Write operation: after receiving * the buffer to be written, the EEPROM may need additional time to actually * perform the write operation. During this time, it doesn't answer to * I2C packets addressed to it. Once the write operation is complete * the EEPROM responds to its address. * * @retval EEPROM_OK (0) if operation is correctly performed, else return value * different from EEPROM_OK (0) or the timeout user callback. *//* ... */ uint32_t BSP_EEPROM_WaitEepromStandbyState(void) { /* Check if the maximum allowed number of trials has bee reached */ if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { /* If the maximum number of trials has been reached, exit the function */ BSP_EEPROM_TIMEOUT_UserCallback(); return EEPROM_TIMEOUT; }if (EEPROM_IO_IsDeviceReady(EEPROMAddress, EEPROM_MAX_TRIALS) != HAL_OK) { ... } return EEPROM_OK; }{ ... } /** * @brief Memory Tx Transfer completed callbacks. * @param hi2c: I2C handle *//* ... */ void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c) { EEPROMDataWrite = 0; }{ ... } /** * @brief Memory Rx Transfer completed callbacks. * @param hi2c: I2C handle *//* ... */ void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c) { EEPROMDataRead = 0; }{ ... } /** * @brief Basic management of the timeout situation. *//* ... */ __weak void BSP_EEPROM_TIMEOUT_UserCallback(void) { }{ ... } /* ... */#endif /* EE_M24LR64 */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */