kopia lustrzana https://github.com/Hamlib/Hamlib
Remove debug from serial.c
rodzic
4150f12f36
commit
7fb932b894
41
src/serial.c
41
src/serial.c
|
@ -592,32 +592,31 @@ int HAMLIB_API serial_flush(hamlib_port_t *p)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_VERBOSE, "%s MDB called\n", __func__);
|
rig_debug(RIG_DEBUG_VERBOSE, "%s MDB called\n", __func__);
|
||||||
|
|
||||||
// if (p->fd == uh_ptt_fd || p->fd == uh_radio_fd)
|
if (p->fd == uh_ptt_fd || p->fd == uh_radio_fd)
|
||||||
// {
|
|
||||||
unsigned char buf[32];
|
|
||||||
/*
|
|
||||||
* Catch microHam case:
|
|
||||||
* if fd corresponds to a microHam device drain the line
|
|
||||||
* (which is a socket) by reading until it is empty.
|
|
||||||
*/
|
|
||||||
int n;
|
|
||||||
|
|
||||||
rig_debug(RIG_DEBUG_TRACE, "%s: flushing: ", __func__);
|
|
||||||
|
|
||||||
while ((n = read(p->fd, buf, 32)) > 0)
|
|
||||||
{
|
{
|
||||||
int i;
|
unsigned char buf[32];
|
||||||
|
/*
|
||||||
|
* Catch microHam case:
|
||||||
|
* if fd corresponds to a microHam device drain the line
|
||||||
|
* (which is a socket) by reading until it is empty.
|
||||||
|
*/
|
||||||
|
int n;
|
||||||
|
|
||||||
for (i = 0; i < n; ++i) { printf("0x%02x(%c) ", buf[i], isprint(buf[i]) ? buf[i] : '~'); }
|
rig_debug(RIG_DEBUG_TRACE, "%s: flushing: ", __func__);
|
||||||
|
|
||||||
/* do nothing */
|
while ((n = read(p->fd, buf, 32)) > 0)
|
||||||
|
{
|
||||||
|
//int i;
|
||||||
|
|
||||||
|
//for (i = 0; i < n; ++i) { printf("0x%02x(%c) ", buf[i], isprint(buf[i]) ? buf[i] : '~'); }
|
||||||
|
|
||||||
|
/* do nothing */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return RIG_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("DONE\n");
|
|
||||||
|
|
||||||
return RIG_OK;
|
|
||||||
// }
|
|
||||||
|
|
||||||
rig_debug(RIG_DEBUG_VERBOSE, "%s: tcflush\n", __func__);
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: tcflush\n", __func__);
|
||||||
tcflush(p->fd, TCIFLUSH);
|
tcflush(p->fd, TCIFLUSH);
|
||||||
return RIG_OK;
|
return RIG_OK;
|
||||||
|
|
Ładowanie…
Reference in New Issue