Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pierre NARVOR
seatrac_driver
Commits
2ff0d99f
Commit
2ff0d99f
authored
Aug 31, 2021
by
Pierre NARVOR
Browse files
[driver] Changed stop_bits from 2 to 1 for serial communication parameters
parent
d5cce209
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/SeatracSerial.cpp
View file @
2ff0d99f
...
...
@@ -63,7 +63,7 @@ void SeatracSerial::reset_serial()
SerialPort
::
character_size
cSize
(
8
);
SerialPort
::
parity
parity
(
SerialPort
::
parity
::
none
);
SerialPort
::
flow_control
flowControl
(
SerialPort
::
flow_control
::
none
);
SerialPort
::
stop_bits
stopBits
(
SerialPort
::
stop_bits
::
two
);
SerialPort
::
stop_bits
stopBits
(
SerialPort
::
stop_bits
::
one
);
serial_
.
set_option
(
baudRate
);
serial_
.
set_option
(
cSize
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment