[Yaesu] CAT FT990/FT1000 Problem: Clarifier Tuning

wulf@ping.net.au wulf@ping.net.au
Sun, 1 Dec 2002 00:31:32 +1030 (CST)


Hi Mike,

I finally found a way to program the clarifier offset via the CAT 
interface. There were a few issues that caused the problem described
in my previous email. 

1.) data1 byte needs to be set to 0xff in order to enable
    tuning of clarifier offset. Other values won't allow tuning.

2.) The translation of a frequency into khz (data3) and hz (data4)
    isn't quite as obvious as it is presented in the user's manual.
    The values passed into the command packet need to be BCD encoded.

3.) The data4 byte represents the value in 10's of Hz, e.g. 100Hz
    would become 0x10.

4.) data3 and data4 represent the value of the desired total offset and not
    a stepping value.

Here an example that shows how to program a desired clarifier offset
of +1420Hz and -1420Hz:

offset|opcode | data1 | data2 | data3 | data4
----------------------------------------------
+1420 | 0x09  | 0xff  | 0x00  | 0x01  | 0x42
----------------------------------------------
-1420 | 0x09  | 0xff  | 0xff  | 0x01  | 0x42
----------------------------------------------

Note the BCD encoding for data3 and data4 byte!!!

I hope this helps,

73, Berndt
VK5ABN


> 
> Hi Mike,
> 
> ok, I now see what you meant. Besides this, I've tried various combinations
> without success.
> 
> I've downloaded the n1mm logger that also implements a radio interface for
> ft990/ft1000 but I couldn't get this to work properly. It keept on requesting
> update packets. The idea was to see if n1mm is capable of tuning the clarifier
> and sniff the packets it sends to get an idea what is going on with this 
> interface.
> 
> Has anyone else tried using this package with a FT990/FT1000? If so, it
> would be nice if someone could log the command packets that are send to
> the radio via the serial interface when tuning the clarifer offset.
> 
> 73, Berndt
> VK5ABN
> 
> > 
> > Berndt  -
> > I have the 990 manual and a copy of the 1000. My point was that in your
> > command sequence, there was no '1' to turn the clarifier on. But no matter
> > cuz it STILL doesn't work....
> > I'll keep plugging however. I hate being foiled!!!
> > 
> > 73, Mike
> > ----- Original Message -----
> > From: <wulf@ping.net.au>
> > To: "MikeR" <nf4l@pobox.com>
> > Cc: <yaesu@contesting.com>
> > Sent: Friday, November 29, 2002 2:15 PM
> > Subject: Re: [Yaesu] CAT FT990/FT1000 Problem: Clarifier Tuning
> > 
> > 
> > > G'day Mike,
> > >
> > > Many thanks for your reply. According to the FT990 manual the data bytes
> > > have the following functions:
> > >
> > > data1   1/0=TX Clar On/Off, 81h/80h=RX Clar On/Off, ffh=clear offset
> > > data2   0=tune up, 1=tune down
> > > data3   step in khz
> > > data4   step in hz
> > >
> > > The program is coded in C++. I believe that there must be a way of tuning
> > > the clarifier using the CAT interface since YAESU has implemented this
> > > function over several models e.g. FT990 and FT1000.
> > >
> > > 73, Berndt
> > > VK5ABN
> > >
> > > > Berndt -
> > > > Probably a typo here, but in your example, shouldn't data 3 be 0x01 to
> > turn
> > > > the (rx) clarifier on ? For what it's worth, I get the same results as
> > you
> > > > do. I'm doing it in Delphi. What are U writing in?
> > > > Sorry I couldn't solve it....But sometimes confirmation the it doesn't
> > work
> > > > is good. Let me know if you get 'er going, and I'll do the same.
> > > >
> > > > 73, Mike NF4L
> > > > opcode | data1 | data2 | data3 | data4 | description
> > > > --------------------------------------------------------------
> > > >  0x09   | 0x00  | 0x00  | 0x00  | 0x64  | Tune up 100 Hz
> > > >
> > > >
> > > > ----- Original Message -----
> > > > From: <wulf@ping.net.au>
> > > > To: <yaesu@contesting.com>
> > > > Sent: Friday, November 29, 2002 9:04 AM
> > > > Subject: [Yaesu] CAT FT990/FT1000 Problem: Clarifier Tuning
> > > >
> > > >
> > > > > G'day,
> > > > >
> > > > > I experience problems setting the clarifier using the CAT interface.
> > > > > The following commands are function ok as expected:
> > > > >
> > > > > opcode | data1 | data2 | data3 | data4 | description
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x00  | 0x00  | 0x00  | 0x00  | RX clarifier disabled
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x01  | 0x00  | 0x00  | 0x00  | RX clarifier enabled
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x80  | 0x00  | 0x00  | 0x00  | TX clarifier disabled
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x81  | 0x00  | 0x00  | 0x00  | TX clarifier enabled
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0xff  | 0x00  | 0x00  | 0x00  | Clear Offset
> > > > > --------------------------------------------------------------
> > > > >
> > > > > However I can't seem to set the frequency using the following
> > commands:
> > > > >
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x00  | 0x00  | 0x00  | 0x64  | Tune up 100 Hz
> > > > > --------------------------------------------------------------
> > > > > 0x09   | 0x00  | 0xff  | 0x00  | 0x64  | Tune down 100 Hz
> > > > > --------------------------------------------------------------
> > > > >
> > > > > Has anyone had success in setting the clarifier through the CAT
> > interface?
> > > > > It almost looks as if the documentation omits some information needed
> > to
> > > > > do so, e.g. which value to set data1 when tuning the clarifier.
> > > > >
> > > > > I'm almost finished with programming a GUI that gives remote control
> > over
> > > > a
> > > > > FT990 (FT1000 without dualband functionallity) and really like to get
> > the
> > > > > clarifier working too.
> > > > >
> > > > > There also seems to be no way in enabling the FAST dial function using
> > > > > the CAT interface, but this can be implemented in software.
> > > > >
> > > > > I welcome any ideas and hints!
> > > > >
> > > > > Many thanks in advance,
> > > > >
> > > > > 73, Berndt
> > > > > VK5ABN
> > > > > _______________________________________________
> > > > > Yaesu mailing list
> > > > > Yaesu@contesting.com
> > > > > http://lists.contesting.com/mailman/listinfo/yaesu
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > > _______________________________________________
> > > Yaesu mailing list
> > > Yaesu@contesting.com
> > > http://lists.contesting.com/mailman/listinfo/yaesu
> > >
> > >
> > 
> > 
> > 
> 
> _______________________________________________
> Yaesu mailing list
> Yaesu@contesting.com
> http://lists.contesting.com/mailman/listinfo/yaesu
>