Hey all I am wondering if it's possible to modify the WString.cpp file to only include the commands that I need for my project since that file is so large.
I am using a Digispark arduino that is Attiny85 which only has about 6k flash memory after bootloader.
Needless to say I am almost out of flash memory and I still need to do a few things.
I am reading from a serial port (in this case, using DigiCDC for a virtual serial port).
How can I overwrite the default Strings class that looks like its built in to the IDE with my own modified String class so I can get a smaller footprint?
Thanks!