mirror of https://github.com/rusefi/openblt.git
- Disabled echo that Linux responds to the MCU (SerialBoot).
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@125 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
f2be8d132e
commit
590809ca28
|
@ -124,8 +124,8 @@ sb_uint8 XcpTransportInit(sb_char *device, sb_uint32 baudrate)
|
|||
options.c_cflag |= CS8;
|
||||
/* disable hardware flow control */
|
||||
options.c_cflag &= ~CRTSCTS;
|
||||
/* configure raw input */
|
||||
options.c_lflag &= ~(ICANON | ISIG);
|
||||
/* configure raw input */
|
||||
options.c_lflag &= ~(ICANON | ISIG | ECHO | ECHOE);
|
||||
/* configure raw output */
|
||||
options.c_oflag &= ~OPOST;
|
||||
/* configure timeouts */
|
||||
|
|
Loading…
Reference in New Issue