Not sure if this is a getting started issue (I’m just doing something stupid and should rtfm) or troubleshooting.
I have this super simple program:
#include "application.h"
int i;
void setup()
{
i=0;
Serial.begin(9600);
}
void loop()
{
Serial.println( i++ );
delay(500);
}
I compiled it and flashed to my core successfully.
I then tried Spark–>Show serial monitor and clicked on “connect” and got this error:
I then tried putty – using the same port (com3) – and it worked just fine (connected to the core and started receiving numbers).
Is there something I need to do to make the serial monitor work correctly in spark dev?