From bc5da154e37a33b77bc4e8b9d1ace384fca607bd Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 17 Mar 2020 12:23:16 +0100 Subject: [PATCH] typo --- hpsdrsim.c | 32 ++++++++++++++++++++++++-------- old_protocol.c | 2 +- 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/hpsdrsim.c b/hpsdrsim.c index ca54bf5..f3ef03d 100644 --- a/hpsdrsim.c +++ b/hpsdrsim.c @@ -1143,10 +1143,11 @@ void *handler_ep6(void *arg) uint8_t id[4] = { 0xef, 0xfe, 1, 6 }; uint8_t header[40] = { - 127, 127, 127, 0, 0, 33, 17, 21, - 127, 127, 127, 8, 0, 0, 0, 0, - 127, 127, 127, 16, 0, 0, 0, 0, - 127, 127, 127, 24, 0, 0, 0, 0, +// C0 C1 C2 C3 C4 + 127, 127, 127, 0, 0, 33, 17, 21, + 127, 127, 127, 8, 0, 0, 0, 0, + 127, 127, 127, 16, 0, 0, 0, 0, + 127, 127, 127, 24, 0, 0, 0, 0, 127, 127, 127, 32, 66, 66, 66, 66 }; int32_t adc1isample,adc1qsample; @@ -1165,6 +1166,7 @@ void *handler_ep6(void *arg) double i1,q1,fac1,fac2,fac3,fac4; int decimation; // for converting 1536 kHz samples to 48, 192, 384, .... unsigned int seed; + unsigned int tx_fifo_count; seed=((uintptr_t) &seed) & 0xffffff; @@ -1215,13 +1217,27 @@ void *handler_ep6(void *arg) switch (header_offset) { case 0: - // no CW bits + // do not set PTT and CW in C0 + // do not set ADC overflow in C1 + if (OLDDEVICE == DEVICE_HERMES_LITE2) { + // C2/C3 is TX FIFO count + tx_fifo_count=txptr - rxptr; + if (tx_fifo_count < 0) tx_fifo_count += OLDRTXLEN; + *(pointer+5) = (tx_fifo_count >> 8) & 0x7F; + *(pointer+6) = tx_fifo_count & 0xFF; + } header_offset=8; break; case 8: - // AIN5: Exciter power - *(pointer+4)=0; // about 500 mW - *(pointer+5)=txdrive; + if (OLDDEVICE == DEVICE_HERMES_LITE2) { + // HL2: temperature + *(pointer+4)=0; + *(pointer+5) = tx_fifo_count & 0x7F; // pseudo random number + } else { + // AIN5: Exciter power + *(pointer+4)=0; // about 500 mW + *(pointer+5)=txdrive; + } // AIN1: Forward Power j=(int) ((4095.0/c1)*sqrt(100.0*txlevel*c2)); *(pointer+6)=(j >> 8) & 0xFF; diff --git a/old_protocol.c b/old_protocol.c index d030dd2..2d9e6ab 100644 --- a/old_protocol.c +++ b/old_protocol.c @@ -864,7 +864,7 @@ static void process_ozy_input_buffer(unsigned char *buffer) { } break; case 1: - if (device != DEVICE_HERMES_LITE_2) { + if (device != DEVICE_HERMES_LITE2) { // // HL2 uses C1/C2 for measuring the temperature // -- 2.45.2