Hello, I need to migrate my project to ESP32 due to memory limitations in the Mega 2560 only to be greeted by new error messages.
The project is too large to share and unlike a similar thread [Atmega328p -- > esp32 program migration], I'm having "warning: iteration 69 invokes undefined behavior [-Waggressive-loop-optimizations]" and before addressing such warnings, my question is, are there any considerations I need to note before modifying the code or is it a lost cause? You see, I do understand hardware differences including interrupts, but if I get a warning for a simple loop like this, it gets me worried.
for(int bisse=1; bisse<71; bisse++)
{
weynstring[bisse]=EEPROM.read(bisse);
} `Preformatted text`