Image Writer
/
00_eeprom_emulation_f746
EEPROM emulation for Nucleo F746ZG
Revision 3:1002a12961c5, committed 2018-12-04
- Comitter:
- ImageWriter
- Date:
- Tue Dec 04 12:34:09 2018 +0000
- Parent:
- 2:c6895dd2d958
- Commit message:
- today new
Changed in this revision
eeprom/eeprom.h | Show annotated file Show diff for this revision Revisions of this file |
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r c6895dd2d958 -r 1002a12961c5 eeprom/eeprom.h --- a/eeprom/eeprom.h Mon Nov 26 11:42:11 2018 +0000 +++ b/eeprom/eeprom.h Tue Dec 04 12:34:09 2018 +0000 @@ -121,7 +121,7 @@ #define PAGE_FULL ((uint8_t)0x80) /* Variables' number */ -#define NB_OF_VAR ((uint8_t)0x03) +#define NB_OF_VAR ((uint8_t)0x04) /* Exported types ------------------------------------------------------------*/ /* Exported macro ------------------------------------------------------------*/
diff -r c6895dd2d958 -r 1002a12961c5 main.cpp --- a/main.cpp Mon Nov 26 11:42:11 2018 +0000 +++ b/main.cpp Tue Dec 04 12:34:09 2018 +0000 @@ -7,8 +7,8 @@ uint16_t n = 0; /* Virtual address defined by the user: 0xFFFF value is prohibited */ -uint16_t VirtAddVarTab[NB_OF_VAR] = {0x5555, 0x6666, 0x7777}; -uint16_t VarDataTab[] = {0, 0, 0}; +uint16_t VirtAddVarTab[NB_OF_VAR] = {0x5555, 0x6666, 0x7777, 0x8888}; +uint16_t VarDataTab[] = {0, 0, 0, 0}; @@ -23,7 +23,7 @@ printf("EEPROM emulation test\n"); printf("\n\rType one of the following commands and press space or enter"); - printf("\n\r READ - read all variables\n\r WRITE1 <n> - write first variable\n\r WRITE2 <n> - write second variable\n\r WRITE3 <n> - write third variable"); + printf("\n\r READ - read all variables\n\r WRITE1 <n> - write first variable\n\r WRITE2 <n> - write second variable\n\r WRITE3 <n> - write third variable\n\r WRITE4 <n> - write 4th variable"); printf("\n\rwhere <n> is uint16_t value (0-65535)"); printf("\n\r"); @@ -43,10 +43,10 @@ if (strcmp("READ", command)==0) { - for (i=0; i<3; i++) { + for (i=0; i<4; i++) { EE_ReadVariable(VirtAddVarTab[i], &VarDataTab[i]); }; - printf("\nvar1=%6u, var2=%6u, var3=%6u",VarDataTab[0],VarDataTab[1],VarDataTab[2]); + printf("\nvar1=%6u, var2=%6u, var3=%6u var3=%6u",VarDataTab[0],VarDataTab[1],VarDataTab[2],VarDataTab[3]); } /////////////////////////////////////////////////////////////////////////////////////////////////////// else if (strcmp("WRITE1", command)==0) { @@ -70,31 +70,51 @@ EE_WriteVariable(VirtAddVarTab[2], n); } //////////////////////////////////////////////////////////////////////////////////// + else if (strcmp("WRITE4", command)==0) { + scanf("%s", arg); + printf("\nok"); + n=atoi(arg); + EE_WriteVariable(VirtAddVarTab[3], n); + } +//////////////////////////////////////////////////////////////////////////////////// else if (strcmp("T1", command)==0) { // multiple write test. After test var1 = 1000 printf("\nok"); - for (n=0;n<1001;n++) - { - EE_WriteVariable(VirtAddVarTab[0], n); - }; + for (n=0;n<1001;n++){ + EE_WriteVariable(VirtAddVarTab[0], n); + printf("*"); + } + printf("\nComplete.\n"); } //////////////////////////////////////////////////////////////////////////////////// else if (strcmp("T2", command)==0) { // multiple write test. After test var2 = 1001 printf("\nok"); - for (n=0;n<1002;n++) - { - EE_WriteVariable(VirtAddVarTab[1], n); - }; + for (n=0;n<1002;n++){ + EE_WriteVariable(VirtAddVarTab[1], n); + printf("*"); + } + printf("\nComplete.\n"); } //////////////////////////////////////////////////////////////////////////////////// else if (strcmp("T3", command)==0) { // multiple write test. After test var3 = 1002 printf("\nok"); - for (n=0;n<1003;n++) - { - EE_WriteVariable(VirtAddVarTab[2], n); - }; + for (n=0;n<1003;n++){ + EE_WriteVariable(VirtAddVarTab[2], n); + printf("*"); + } + printf("\nComplete."); + } +//////////////////////////////////////////////////////////////////////////////////// + else if (strcmp("T4", command)==0) { + // multiple write test. After test var3 = 1002 + printf("\nok"); + for (n=0;n<1004;n++){ + EE_WriteVariable(VirtAddVarTab[3], n); + printf("*"); + } + printf("\nComplete."); } ////////////////////////////////////////////////////////////////////////////////////