kopia lustrzana https://github.com/Hamlib/Hamlib
Fix show_DCB in termios.c
rodzic
3a569fcde1
commit
1063540765
|
@ -2257,17 +2257,20 @@ static void show_DCB(DCB myDCB)
|
|||
report("fOutxDsrFlow\n");
|
||||
}
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_HANDSHAKE);
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_HANDSHAKE)
|
||||
{
|
||||
report("DTR_CONTROL_HANDSHAKE\n");
|
||||
}
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_ENABLE);
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_ENABLE)
|
||||
{
|
||||
report("DTR_CONTROL_ENABLE\n");
|
||||
}
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_DISABLE);
|
||||
|
||||
if (myDCB.fDtrControl & DTR_CONTROL_DISABLE)
|
||||
{
|
||||
report("DTR_CONTROL_DISABLE\n");
|
||||
}
|
||||
|
||||
if (myDCB.fDsrSensitivity)
|
||||
{
|
||||
|
|
Ładowanie…
Reference in New Issue