1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 04:00:34 +00:00

Fix serial port speed to 115200 bauds for the AN printer

This commit is contained in:
Carles Fernandez 2021-09-30 11:08:13 +02:00
parent 2ccac04003
commit 387d9ad1b1
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -262,7 +262,7 @@ int An_Packet_Printer::init_serial(const std::string& serial_device)
// clang-format off
struct termios options{};
// clang-format on
const int64_t BAUD = B9600; // BAUD = B38400;
const int64_t BAUD = B115200;
const int64_t DATABITS = CS8;
const int64_t STOPBITS = 0;
const int64_t PARITYON = 0;