Challenges

From IoT with AME
Revision as of 14:58, 3 July 2017 by Ctreber (talk | contribs) (Created page with "Home =Challenges - Overcoming Hardware and Software Limitations= The Arduino hardware is pretty limited - you get 32kB of unmodifiable (at run-time) flash m...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Home

Challenges - Overcoming Hardware and Software Limitations

The Arduino hardware is pretty limited - you get 32kB of unmodifiable (at run-time) flash memory for the program, and 2kB of modifiable SRAM memory for variables. That's it.

This is a challenge to your software you have to address at compile time. During operations you may want to change the configuration of the device. If you want do to that with re-programming the chip, you need to use an interface of some kind (wireless, SPI/ I2C, or SD card).

  • Updating device configuration (ie, MQTT/ WLAN)
  • Updating device code

Home