You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another thing to note is that if the user uploads ConfigurableFirmata with all of the includes uncommented it will occupy nearly all of the flash and ram on an Arduino Uno so StandardFirmataEthernet is currently the better choice for anyone using and Arduino Uno or other ATmega328 or ATmega32u4-based board. Commenting out unused includes in Configurable is another approach to reducing ram and flash usage.
The text was updated successfully, but these errors were encountered:
Another thing to note is that if the user uploads ConfigurableFirmata with all of the includes uncommented it will occupy nearly all of the flash and ram on an Arduino Uno
I actually forgot that I had to comment out these parts—thanks for the reminder.
Regarding the setup instructions for StandardFirmataEthernet, the user now needs to uncomment a couple of includes for their particular ethernet hardware. See this section: https://github.com/firmata/arduino/blob/ethernet/examples/StandardFirmataEthernet/StandardFirmataEthernet.ino#L67-L106
Also, the second part of step 11 should read:
Another thing to note is that if the user uploads ConfigurableFirmata with all of the includes uncommented it will occupy nearly all of the flash and ram on an Arduino Uno so StandardFirmataEthernet is currently the better choice for anyone using and Arduino Uno or other ATmega328 or ATmega32u4-based board. Commenting out unused includes in Configurable is another approach to reducing ram and flash usage.
The text was updated successfully, but these errors were encountered: