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;
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