Hello,
I am just trying out the new IDE ver 2 Beta 11 with a Black Pill STM32F411CE and a few examples.
Now i just loaded in the Multiple Serial test example code below and it compiles just fine.
Problem is I don't know how the Arduino Port/Pin mapping works hence no idea off which pins are: Serial TX, Serial RX, Serial1 TX, Serial1 RX..
How do i find this out please?
Many thanks imk
/*
Multiple Serial test
Receives from the main serial port, sends to the others.
Receives from serial port 1, sends to the main serial (Serial 0).
This example works only with boards with more than one serial like Arduino Mega, Due, Zero etc.
The circuit:
-
any serial device attached to Serial port 1
-
Serial Monitor open on Serial port 0
created 30 Dec 2008
modified 20 May 2012
by Tom Igoe & Jed Roach
modified 27 Nov 2015
by Arturo Guadalupi
This example code is in the public domain.
https://www.arduino.cc/en/Tutorial/BuiltInExamples/MultiSerialMega
*/
void setup() {
// initialize both serial ports:
Serial.begin(9600);
Serial1.begin(9600);
}
void loop() {
// read from port 1, send to port 0:
if (Serial1.available()) {
int inByte = Serial1.read();
Serial.write(inByte);
}
// read from port 0, send to port 1:
if (Serial.available()) {
int inByte = Serial.read();
Serial1.write(inByte);
}
}