You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the any of the serial methods from Arduino is used the error in the title prevents me from
building. Because of that I can't use any of the Serial methods when debugging.
The following will pass:
#include <Arduino.h>
#include "avr8-stub.h"
void setup()
{
debug_init();
}
void loop()
{
int a = 5;
}
But any of the following will not:
#include <Arduino.h>
#include "avr8-stub.h"
void setup()
{
debug_init();
Serial.begin(9600);
Serial.print("Because of that is the coolect2.exe: error: Id returned 1 exit status");
}
void loop()
{
int a = 5;
}
or
#include <Arduino.h>
#include "avr8-stub.h"
void setup()
{
debug_init();
Serial.begin(9600);
}
void loop()
{
int a = 5;
Serial.println("Because of that is the coolect2.exe: error: Id returned 1 exit status");
}
The text was updated successfully, but these errors were encountered:
When the any of the serial methods from Arduino is used the error in the title prevents me from
building. Because of that I can't use any of the Serial methods when debugging.
The following will pass:
But any of the following will not:
or
The text was updated successfully, but these errors were encountered: