kopia lustrzana https://github.com/Hamlib/Hamlib
Fix kenwood_get_rit to utilize the +/- sign
https://github.com/Hamlib/Hamlib/issues/342pull/345/head
rodzic
f986be28a8
commit
17112c308e
|
@ -1678,9 +1678,9 @@ int kenwood_get_rit(RIG *rig, vfo_t vfo, shortfreq_t *rit)
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(buf, &priv->info[18], 5);
|
memcpy(buf, &priv->info[17], 6);
|
||||||
|
|
||||||
buf[5] = '\0';
|
buf[6] = '\0';
|
||||||
*rit = atoi(buf);
|
*rit = atoi(buf);
|
||||||
|
|
||||||
return RIG_OK;
|
return RIG_OK;
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "token.h"
|
#include "token.h"
|
||||||
|
|
||||||
#define BACKEND_VER "20200712"
|
#define BACKEND_VER "20200714"
|
||||||
|
|
||||||
#define EOM_KEN ';'
|
#define EOM_KEN ';'
|
||||||
#define EOM_TH '\r'
|
#define EOM_TH '\r'
|
||||||
|
|
Ładowanie…
Reference in New Issue