Fix parsing squelch.
This commit is contained in:
parent
28d7415f72
commit
920b426d72
25
md380.c
25
md380.c
@ -1419,18 +1419,18 @@ static void md380_parse_parameter(radio_device_t *radio, char *param, char *valu
|
||||
static int parse_digital_channel(radio_device_t *radio, int first_row, char *line)
|
||||
{
|
||||
char num_str[256], name_str[256], rxfreq_str[256], offset_str[256];
|
||||
char power_str[256], scanlist_str[256], autoscan_str[256], squelch_str[256];
|
||||
char power_str[256], scanlist_str[256], autoscan_str[256];
|
||||
char tot_str[256], rxonly_str[256], admit_str[256], colorcode_str[256];
|
||||
char slot_str[256], incall_str[256], grouplist_str[256], contact_str[256];
|
||||
int num, power, scanlist, autoscan, squelch, tot, rxonly, admit;
|
||||
int num, power, scanlist, autoscan, tot, rxonly, admit;
|
||||
int colorcode, timeslot, incall, grouplist, contact;
|
||||
double rx_mhz, tx_mhz;
|
||||
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
num_str, name_str, rxfreq_str, offset_str,
|
||||
power_str, scanlist_str, autoscan_str, squelch_str,
|
||||
power_str, scanlist_str, autoscan_str,
|
||||
tot_str, rxonly_str, admit_str, colorcode_str,
|
||||
slot_str, incall_str, grouplist_str, contact_str) != 16)
|
||||
slot_str, incall_str, grouplist_str, contact_str) != 15)
|
||||
return 0;
|
||||
|
||||
num = atoi(num_str);
|
||||
@ -1481,15 +1481,6 @@ badtx: fprintf(stderr, "Bad transmit frequency.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (strcasecmp ("Normal", squelch_str) == 0) {
|
||||
squelch = SQ_NORMAL;
|
||||
} else if (strcasecmp ("Tight", squelch_str) == 0) {
|
||||
squelch = SQ_TIGHT;
|
||||
} else {
|
||||
fprintf (stderr, "Bad squelch level.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
tot = atoi(tot_str);
|
||||
if (tot > 555 || tot % 15 != 0) {
|
||||
fprintf(stderr, "Bad timeout timer.\n");
|
||||
@ -1566,7 +1557,7 @@ badtx: fprintf(stderr, "Bad transmit frequency.\n");
|
||||
}
|
||||
|
||||
setup_channel(num-1, MODE_DIGITAL, name_str, rx_mhz, tx_mhz,
|
||||
power, scanlist, autoscan, squelch, tot, rxonly, admit,
|
||||
power, scanlist, autoscan, SQ_NORMAL, tot, rxonly, admit,
|
||||
colorcode, timeslot, incall, grouplist, contact, 0xffff, 0xffff, BW_12_5_KHZ);
|
||||
|
||||
radio->channel_count++;
|
||||
@ -1590,8 +1581,8 @@ static int parse_analog_channel(radio_device_t *radio, int first_row, char *line
|
||||
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
num_str, name_str, rxfreq_str, offset_str,
|
||||
power_str, scanlist_str, autoscan_str, squelch_str,
|
||||
tot_str, rxonly_str, admit_str,
|
||||
power_str, scanlist_str, autoscan_str,
|
||||
tot_str, rxonly_str, admit_str, squelch_str,
|
||||
rxtone_str, txtone_str, width_str) != 14)
|
||||
return 0;
|
||||
|
||||
|
24
uv380.c
24
uv380.c
@ -1506,18 +1506,18 @@ static void uv380_parse_parameter(radio_device_t *radio, char *param, char *valu
|
||||
static int parse_digital_channel(radio_device_t *radio, int first_row, char *line)
|
||||
{
|
||||
char num_str[256], name_str[256], rxfreq_str[256], offset_str[256];
|
||||
char power_str[256], scanlist_str[256], autoscan_str[256], squelch_str[256];
|
||||
char power_str[256], scanlist_str[256], autoscan_str[256];
|
||||
char tot_str[256], rxonly_str[256], admit_str[256], colorcode_str[256];
|
||||
char slot_str[256], incall_str[256], grouplist_str[256], contact_str[256];
|
||||
int num, power, scanlist, autoscan, squelch, tot, rxonly, admit;
|
||||
int num, power, scanlist, autoscan, tot, rxonly, admit;
|
||||
int colorcode, timeslot, incall, grouplist, contact;
|
||||
double rx_mhz, tx_mhz;
|
||||
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
num_str, name_str, rxfreq_str, offset_str,
|
||||
power_str, scanlist_str, autoscan_str, squelch_str,
|
||||
power_str, scanlist_str, autoscan_str,
|
||||
tot_str, rxonly_str, admit_str, colorcode_str,
|
||||
slot_str, incall_str, grouplist_str, contact_str) != 16)
|
||||
slot_str, incall_str, grouplist_str, contact_str) != 15)
|
||||
return 0;
|
||||
|
||||
num = atoi(num_str);
|
||||
@ -1570,12 +1570,6 @@ badtx: fprintf(stderr, "Bad transmit frequency.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
squelch = atoi(squelch_str);
|
||||
if (squelch > 9) {
|
||||
fprintf(stderr, "Bad squelch level.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
tot = atoi(tot_str);
|
||||
if (tot > 555 || tot % 15 != 0) {
|
||||
fprintf(stderr, "Bad timeout timer.\n");
|
||||
@ -1654,8 +1648,8 @@ badtx: fprintf(stderr, "Bad transmit frequency.\n");
|
||||
}
|
||||
|
||||
setup_channel(num-1, MODE_DIGITAL, name_str, rx_mhz, tx_mhz,
|
||||
power, scanlist, autoscan, squelch, tot, rxonly, admit,
|
||||
colorcode, timeslot, incall, grouplist, contact, 0xffff, 0xffff, BW_12_5_KHZ);
|
||||
power, scanlist, autoscan, 1, tot, rxonly, admit, colorcode,
|
||||
timeslot, incall, grouplist, contact, 0xffff, 0xffff, BW_12_5_KHZ);
|
||||
|
||||
radio->channel_count++;
|
||||
return 1;
|
||||
@ -1678,8 +1672,8 @@ static int parse_analog_channel(radio_device_t *radio, int first_row, char *line
|
||||
|
||||
if (sscanf(line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
num_str, name_str, rxfreq_str, offset_str,
|
||||
power_str, scanlist_str, autoscan_str, squelch_str,
|
||||
tot_str, rxonly_str, admit_str,
|
||||
power_str, scanlist_str, autoscan_str,
|
||||
tot_str, rxonly_str, admit_str, squelch_str,
|
||||
rxtone_str, txtone_str, width_str) != 14)
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user