After uploading a simple compiled programme:
#define LED LED_BUILTIN
#define DELAY 500
#define SERIAL Serial
void setup()
{
pinMode(LED, OUTPUT);
SERIAL.begin(115200);
}
void loop()
{
digitalWrite(LED, HIGH);
delay(DELAY);
digitalWrite(LED, LOW);
delay(DELAY);
SERIAL.println("TEST");
}
there is no activity on the PA9 (Serial1 TX) pins of the processor.
After changing the port to Serial2 or Serial3, transmission appears on the PA2 or PB10 pins, respectively.
After uploading a simple compiled programme:
there is no activity on the PA9 (Serial1 TX) pins of the processor.
After changing the port to Serial2 or Serial3, transmission appears on the PA2 or PB10 pins, respectively.