We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4fecfb commit b13b4fcCopy full SHA for b13b4fc
libraries/EEPROM/src/EEPROM.h
@@ -66,6 +66,11 @@
66
Error : EEPROM start address must be divisble by 8192
67
#endif
68
69
+ //The size of the EEPROM may be (ptionally) user-configured using the EEPROM.setLength()
70
+ //method. Valid values are in the range [0, AP3_EEPROM_MAX_LENGTH]. Reducing the size of
71
+ //EEPROM will cause data stored in the higher addresses to be lost. The default size is
72
+ //set below. See Example2_AllFunctions for a usage example.
73
+
74
//Operations on psuedo-EEPROM require a read-write-modify cycle on the entire
75
//configured memory area because flash pages cannot be partially erased. The
76
//larger the memory area the longer this operation will take. Here are some
0 commit comments