Skip to content

Commit

Permalink
missed commit
Browse files Browse the repository at this point in the history
  • Loading branch information
john30 committed Jan 21, 2024
1 parent 3a91fe8 commit 64b2b2e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/ebus/transport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ result_t SerialTransport::openInternal() {
cfsetspeed(&newSettings, m_speed ? (m_speed > 1 ? B115200 : B9600) : B2400);
#else
cfsetispeed(&newSettings, m_speed ? (m_speed > 1 ? B115200 : B9600) : B2400);
cfsetospeed(&newSettings, m_enhancedLevel ? (m_enhancedLevel >= el_speed ? B115200 : B9600) : B2400);
#endif
newSettings.c_cflag |= (CS8 | CLOCAL | CREAD);
newSettings.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); // non-canonical mode
Expand Down

0 comments on commit 64b2b2e

Please sign in to comment.