Hoping that someone could shed some light on my problem. I'm currently teaching a Grade 9 arduino course using Chromebooks and arduino-compatible UNOs. Things have been going very well for the past two months and students have really gotten into building circuits and writing code on Arduino Create's online IDE. However from Thursday last week, students have not been able to get their code verified using the Arduino Create online IDE. I had students try using code which worked previously but they continue to get the same error message despite the code being free of errors.
Here is the following error message that I get when trying to verify code:
I don't use Chromebooks nor the online IDE but this error usually means that you’ve one or more binary build results (.o files) which are incompatible with other .o which you’re trying to link them together and the linker barks at you.
This happens if you built your project with an older compiler version, then updated to a new compiler version (which they might have done behind your back on the web) and re-compiled part of your project as not all files have been modified.
something to explore could be to "make clean" - ie go back to a project where no .o exists and re-generate purely from source code the new build.
pert:
This is an Arduino Web Editor specific problem so the workaround is to use the regular Arduino IDE, which you can download for free from: http://www.arduino.cc/en/Main/Software
challenge I guess is that they are using Chromebooks not real computers. cheap... but not the most versatile product for a school or offering a great experience to students.. does the job for computerized testing but with the rest YMMV..
Ah yes, I just did a copy/paste reply. But supposedly it's fairly easy to run the Arduino IDE on ChromeOS: https://forum.arduino.cc/index.php?topic=554826.0
Perhaps not something that a school would want to mess with, I don't know. It would save them the monthly fee for using the Arduino Create Chrome app but I seem to remember hearing that the educational plan is actually quite reasonably priced.