Re: [Hamlib-developer] Yaesu FTDX-101D Meter question
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Black M. <mdb...@ya...> - 2025-02-24 15:34:54
|
ALC is scaled 0-1. So 0.1 and such is valid too. STRENGHT is using a lookup table and should match dB levels. #define FTDX101D_STR_CAL { 12, \ { \ { 0, -60 }, /* S0 */ \ { 17, -54 }, /* S0 */ \ { 25, -48 }, \ { 34, -42 }, \ { 51, -36 }, \ { 68, -30 }, \ { 85, -24 }, \ { 102, -18 }, \ { 119, -12 }, \ { 136, -6 }, \ { 160, 0 }, /* S9 */ \ { 255, 60 }, /* +60 */ \ } } On Sunday, February 23, 2025 at 11:23:11 PM CST, Michael Morgan <cmo...@gm...> wrote: I have started using rigctld to interface between my applications (QLog, WSJTX, etc). I also have a custom app for me shack that get the frequency to adjust my Steppir, SPE Amplifier, and Antenna Switch. One thing I wish was easier on the Yaseu was a way to see all the meters so I can easily see Power, SWR, ALC etc. So I decided to add that to my station controller app. Most make sense and align well. I do have two questions though: - ALC it seems to only show values from 0 to 1. So as soon as I have some ALC action it goes to a 1 and that’s it. Not sure if that is normal. - S-Meter I am guessing I should use the Strength option but it doesn't really seem to align to db so wasn’t sure how to convert it. Thanks for any guidance. Michael, AA5SH _______________________________________________ Hamlib-developer mailing list Ham...@li... https://lists.sourceforge.net/lists/listinfo/hamlib-developer |