-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Component: GPIO/InterruptsRegarding the GPIO or interrupts componentRegarding the GPIO or interrupts componentComponent: SerialRegarding UART / Serial componentRegarding UART / Serial componentbugSomething isn't workingSomething isn't working
Description
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.
Metadata
Metadata
Assignees
Labels
Component: GPIO/InterruptsRegarding the GPIO or interrupts componentRegarding the GPIO or interrupts componentComponent: SerialRegarding UART / Serial componentRegarding UART / Serial componentbugSomething isn't workingSomething isn't working