I'm using the Arduboy to learn more about computer science as a whole, and I'm curious about the memory.
As flash memory, I believe there are only a finite number of write cycles that are possible? When developing a game, it's necessary to write to the Arduboy many times - how long is it going to be before the memory fails?
pert
November 7, 2017, 12:44pm
2
First check the Arduboy specifications to see what microcontroller it uses:
8-Bit Microcontroller, ATmega 32u4
Then get the datasheet for the ATmega32U4:
http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-7766-8-bit-AVR-ATmega16U4-32U4_Datasheet.pdf
You don't even need to dig, it's right on the front page of the datasheet:
Write/Erase Cycles: 10,000 Flash/100,000 EEPROM
So you can upload 10,000 sketches to your Arduboy before you've exceeded the rating of the flash memory.
pert:
First check the Arduboy specifications to see what microcontroller it uses:
https://arduboy.com/Then get the datasheet for the ATmega32U4:
http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-7766-8-bit-AVR-ATmega16U4-32U4_Datasheet.pdf
You don't even need to dig, it's right on the front page of the datasheet:So you can upload 10,000 sketches to your Arduboy before you've exceeded the rating of the flash memory.
Ahh I see, thanks for the info! I'll have to be careful about how much I'm writing to the device.