adamvr / arduino-base64

A base64 library for the arduino platform, written in C
MIT License
184 stars 102 forks source link

Moved the Base64 alphabet into PROGMEM to save RAM #8

Closed karl-petter closed 9 years ago

karl-petter commented 9 years ago

Storing the whole alphabet in RAM is not needed since it does not change. The string is quite long and thus uses up a lot of valuable RAM.

adamvr commented 9 years ago

Good point. Not sure why I didn't do that before.