1
0
mirror of https://github.com/taigrr/arduinolibs synced 2025-01-18 04:33:12 -08:00

Remove EEPROM address argument from RNG.begin()

Always store the seed at the very end of EEPROM memory.
This commit is contained in:
Rhys Weatherley
2017-11-04 10:18:05 +10:00
parent 506af269b7
commit d452bea037
9 changed files with 32 additions and 39 deletions

View File

@@ -57,7 +57,7 @@ RNGClass::~RNGClass()
clean(stream);
}
void RNGClass::begin(const char *tag, int eepromAddress)
void RNGClass::begin(const char *tag)
{
}