mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 12:10:34 +00:00
Fix serial port speed to 115200 bauds for the AN printer
This commit is contained in:
parent
2ccac04003
commit
387d9ad1b1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user