We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Storing a large multidimensional array of booleans for the grids was quick and easy but
multiplied out to 3,456 bits which is more than the 2048 (2KiB) of RAM available on the ATMega328.
Thankfully there are 1024 8-bit bytes of EEPROM and the grids needs to be stored anyway, but that will also slow things down. Fix all these at once.
The text was updated successfully, but these errors were encountered:
#7 Grid now operates as 1 EEPROM byte per step
41fe922
...though now the module is acting as though it has died!
#7 excellent progress on weights
16546d9
reading and writing are working again. Apparently, don't use uint8_t on for loop iterators! Now cleaning up some data corruption.
#7 Weights work!
d1c1927
0f5a500
No branches or pull requests
Storing a large multidimensional array of booleans for the grids was quick and easy but
multiplied out to 3,456 bits which is more than the 2048 (2KiB) of RAM available on the ATMega328.
Thankfully there are 1024 8-bit bytes of EEPROM and the grids needs to be stored anyway, but that will also slow things down. Fix all these at once.
The text was updated successfully, but these errors were encountered: