From: c vw Date: Thu, 13 Jan 2022 09:04:56 +0000 (+0100) Subject: Maintain metis_offset for USB/OYZ as well! X-Git-Url: https://git.rkrishnan.org/pf/components/com_hotproperty?a=commitdiff_plain;h=1cc5344dd35a09911bac1db687e4d2c550c117c8;p=pihpsdr.git Maintain metis_offset for USB/OYZ as well! --- diff --git a/old_protocol.c b/old_protocol.c index 7d98206..687757a 100644 --- a/old_protocol.c +++ b/old_protocol.c @@ -1338,7 +1338,6 @@ void ozy_send_buffer() { if(metis_offset==8) { // // Every second packet is a "C0=0" packet - // Note for USB devices metis_offest is ALWAYS 8 (!) // output_buffer[C0]=0x00; output_buffer[C1]=0x00; @@ -2053,6 +2052,17 @@ static void ozyusb_write(unsigned char* buffer,int length) break; } */ + // + // DL1YCF: + // Although the METIS offset is not used for OZY, we have to maintain it + // since it triggers the "alternating" sending of C0=0 and C0!=0 + // C+C packets in ozy_send_buffer(). + // + if (metis_offset == 8) { + metis_offset = 520; + } else { + metis_offset = 8; + } } #endif