lofturj / loopController

Firmware for the Magnetic Loop Congroller, as described here: https://sites.google.com/site/lofturj/to-automatically-tune-a-magnetic-loop-antenna
2 stars 5 forks source link

ICOM CI-V support for IC-735 #4

Open guenter1952 opened 3 years ago

guenter1952 commented 3 years ago

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_serialinput(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

SA5NTK commented 3 years ago

See proposed changes here 2c34bce131423c64ceb89db8455c94d1b9cc6ac9