kopia lustrzana https://github.com/Hamlib/Hamlib
use rig_debug instead of printf
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1958 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.2.4
rodzic
9fae198566
commit
53defa86aa
|
@ -2,7 +2,7 @@
|
||||||
* Hamlib TenTenc backend - TT-565 description
|
* Hamlib TenTenc backend - TT-565 description
|
||||||
* Copyright (c) 2004-2005 by Stephane Fillod
|
* Copyright (c) 2004-2005 by Stephane Fillod
|
||||||
*
|
*
|
||||||
* $Id: orion.c,v 1.7 2005-04-01 19:32:18 aa6e Exp $
|
* $Id: orion.c,v 1.8 2005-04-03 15:54:01 fillods Exp $
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or modify
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* it under the terms of the GNU Library General Public License as
|
||||||
|
@ -189,9 +189,9 @@ int tt565_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *d
|
||||||
#ifdef TT565_TIME
|
#ifdef TT565_TIME
|
||||||
ft2 = tt565_timenow();
|
ft2 = tt565_timenow();
|
||||||
if (*data_len == -RIG_ETIMEOUT)
|
if (*data_len == -RIG_ETIMEOUT)
|
||||||
printf("Timeout %d: Elapsed = %f secs.\n", itry, ft2-ft1);
|
rig_debug(RIG_DEBUG_ERR,"Timeout %d: Elapsed = %f secs.\n", itry, ft2-ft1);
|
||||||
else
|
else
|
||||||
printf("Other Error #%d, itry=%d: Elapsed = %f secs.\n",
|
rig_debug(RIG_DEBUG_ERR,"Other Error #%d, itry=%d: Elapsed = %f secs.\n",
|
||||||
*data_len, itry, ft2-ft1);
|
*data_len, itry, ft2-ft1);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue