We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbd8bc commit a209440Copy full SHA for a209440
hardware/arduino/avr/libraries/EEPROM/src/EEPROM.h
@@ -128,7 +128,10 @@ struct EEPROMClass{
128
EEPtr begin() { return 0x00; }
129
EEPtr end() { return length(); } //Standards requires this to be the item after the last valid entry. The returned pointer is invalid.
130
uint16_t length() { return E2END + 1; }
131
-
+
132
+ //A helper function for the builtin eeprom_is_ready macro.
133
+ bool ready() { return eeprom_is_ready(); }
134
135
//Functionality to 'get' and 'put' objects to and from EEPROM.
136
template< typename T > T &get( EEPtr ptr, T &t ){
137
uint8_t *dest = (uint8_t*) &t;
0 commit comments