I am new to this environment.
I am trying to do my first "read" "write" on the eeprom of the Portea H7 Lite.
Below my "full" code.
#include "api/HardwareSerial.h"
#include <Arduino.h>
#define TXD1 33 // *
#define RXD1 34 // *
#define BAUD_UART 115200
#define BAUD_USB 115200
void setup() {
delay(100); // wait for serial port to connect. Needed for native USB port only
digitalWrite(LED_BUILTIN, HIGH);
Serial1.begin(BAUD_UART, SERIAL_8N1, RXD1, TXD1);
Serial1.begin(BAUD_USB);
delay(500);
digitalWrite(LED_BUILTIN, LOW);
}
There is an error while compiling " Serial1.begin(BAUD_UART, SERIAL_8N1, RXD1, TXD1);"
Coud you help me with my first "read" and "write"
