I am porting applications to the ESP32. Lots of undefined/conflicting types to work through. The process is
Code: Select all
make flash
Code: Select all
make flash
Often the build system will not return to a file that still has syntax errors and instead carries on with the rest of the build and even programs the device.
If I
Code: Select all
make clean
Code: Select all
make flash
Code: Select all
make clean
Why is the build ignoring a files with sytax errors?
Is there a command just to clean the user area?
This is a PC build.