Fix kenwood RFPOWER...more to come to make it know the max power possible

https://github.com/Hamlib/Hamlib/issues/389
pull/412/head
Michael Black W9MDB 2020-10-02 15:46:06 -07:00
rodzic 293a844c41
commit ba943ae4b9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2566,7 +2566,7 @@ int kenwood_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
* an answer "PC100" means 100 Watt
*/
ret = get_kenwood_level(rig, "PC", NULL, &val->i);
val->f = val->f / 100.0;
val->f = val->i / 100.0;
return ret;
case RIG_LEVEL_AF: