Hi Juanjo,
On Sat, Sep 28, 2019 at 10:43:53AM +0100, Juanjo EA8BGO wrote: > Hi > > I can't read the FLDigi files on the TLFLogger. I do not know what I'm > doing wrong. But the most curious thing is that the RTTYLog file does > record activity. In the TLFLogger nothing appears on your screen. sorry for the late answer, meantime I reviewed your issue again, and looks like I have some bugs. The first is that the Tlf -> Fldigi direction (sending text, read carrier from Fldigi, set RIG mode to Fldigi, ...) doesn't work. This patch is fix that, but I'm not sure that this is the final version: ============== diff --git a/src/gettxinfo.c b/src/gettxinfo.c index 5da2ce3..71fe7ca 100644 --- a/src/gettxinfo.c +++ b/src/gettxinfo.c @@ -120,6 +120,7 @@ void gettxinfo(void) { static int oldbandinx; static int fldigi_carrier; static int fldigi_shift_freq; + int t_trxmode = trxmode; if (!trx_control) return; @@ -168,6 +169,7 @@ void gettxinfo(void) { if (trxmode == DIGIMODE && (digikeyer == GMFSK || digikeyer == FLDIGI) && retval == RIG_OK) { retvalmode = rig_get_mode(my_rig, RIG_VFO_CURR, (rmode_t *)&rigmode, &bwidth); + trxmode = t_trxmode; if (retvalmode != RIG_OK) { rigmode = RIG_MODE_NONE; } ============== But looks like there are some other synchronicity problem, eg. changed the DELAY (":CQD" command), and then the mode after the band switched to CW...) Please try this, and report your experience. 73, Ervin HA2OS _______________________________________________ Tlf-devel mailing list Tlf-devel@nongnu.org https://lists.nongnu.org/mailman/listinfo/tlf-devel