/*
* Gatul 2023
*/

#include <SoftwareSerial.h>
const byte PIN_TX = 8;
const byte PIN_RX = 9;
SoftwareSerial gpsInput(PIN_RX, PIN_TX);

void setup() {
  Serial.begin(115200);
  gpsInput.begin(19200);
}

void loop() {
  while (gpsInput.available()) {
    Serial.write(gpsInput.read());
  }
}
GPS-EmulatorBreakout