I have two small projects I have been playing with on the particle electron, and suddenly this afternoon both refuse to compile (though unchanged from the last successful compilation) with errors like:
web-connected_led.ino:5:0: undefined reference to “cellular_credentials_set”
for the statements:
#include "cellular_hal.h"
STARTUP(cellular_credentials_set(“hologram”, “”, “”, NULL));
and
1_gps_features.ino:34:14: ‘class CloudClass’ has no member named ‘keepAlive’
for the statements:
Particle.keepAlive(60); inside the setup() function
both programs were being recompiled, but the only change was to make the keep alive timer 60 instead of 120 in the 1_gps_features.ino – the project web-connected_led.ino was unchanged (I just recompiled it when the gps project failed to see it still compiled)
Did something happen in the development environment?