QuickSander / ArduinoHttpServer

Server side minimalistic HTTP protocol implementation for the Arduino platform.
GNU General Public License v3.0
23 stars 11 forks source link

Save some RAM by putting strings only to program memory. #13

Closed BlueAndi closed 5 years ago

BlueAndi commented 5 years ago

Store strings only in the program memory, instead of keeping them additional in the RAM. This helps much using the library on small Arduino devices, especially for the Atmel controllers.

QuickSander commented 5 years ago

Thanks, will merge it soon (I have an updated version in my local branch which I still need to push).