Change debug in serial.c to hex

pull/361/head
Michael Black W9MDB 2020-08-10 22:36:55 -05:00
rodzic 4e83c351e7
commit 675a3673a9
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -345,10 +345,10 @@ int HAMLIB_API serial_setup(hamlib_port_t *rp)
}
/* TODO */
rig_debug(RIG_DEBUG_TRACE, "%s: cfsetispeed=%d,%d\n", __func__,
rig_debug(RIG_DEBUG_TRACE, "%s: cfsetispeed=%d,0x%04x\n", __func__,
rp->parm.serial.rate, speed);
cfsetispeed(&options, speed);
rig_debug(RIG_DEBUG_TRACE, "%s: cfsetospeed=%d,%d\n", __func__,
rig_debug(RIG_DEBUG_TRACE, "%s: cfsetospeed=%d,0x%04x\n", __func__,
rp->parm.serial.rate, speed);
cfsetospeed(&options, speed);