Skip to content

ICOM CI-V support for IC-735 #4

@guenter1952

Description

@guenter1952

The ICOM IC-735 has no 5 byte frequency information, but only in 4 bytes. The controller takes the fitfh byte (fd='end of transmission') as 5ths byte for frequency information and switches to manual mode, because incorrect frequency.
As informed by OM Notko, SA5NTK I tried the following code with success:
In ML_TRX.ino, in void icom_parse_serial_input(void) I added two new lines:

if ( transceiver_in_string[9] != 0xfd ) { // added line
civ_value += (uint32_t) 100000000 * (transceiver_in_string[9] & 0x0f); // 100 x MHz
civ_value += (uint32_t) 1000000000 * ((transceiver_in_string[9] & 0xf0) >> 4); // GH
} // added line

73 Günter DK7KV

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions