Keyboard Shortcuts
Likes
- Yaac-Users
- Messages
Search
Re: Linux AX.25
Being Linux, where just about anything you can imagine can be done, and
then some... You could also script (using shell scripting or whatever) the needed changes to swap from one application to another, and back again.. Regards. ??? Dave G8KBV -- Created on and sent from a Unix like PC running and using free and open source software: |
Re: Keep Me On The Map
Is your beacon configured to use GPS for Position? If not, then your position is _only_ the fixed position in the beacon record.
________________________________________ From: [email protected] <[email protected]> on behalf of toy4trax@... <toy4trax@...> Sent: Tuesday, March 2, 2021 9:36 AM To: [email protected] Subject: Re: [yaac-users] Keep Me On The Map I'm in the same boat. I have tried the Auto-Center map and no luck. Running usb GPS via GPSD -- Pi4 4GB |
Re: Linux AX.25
Mike Allred
toggle quoted message
Show quoted text
On Mar 1, 2021, at 8:04 PM, Carl Makin <carl@...> wrote:
|
Re: Linux AX.25
开云体育Hi Mike,
net2kiss might also be useful as yaac can connect to a network TNC (I do that here with a moxa ip-serial port box), perhaps in conjunction with kissnetd. Carl. (vk1kcm) |
Re: Keep Me On The Map
Well, assuming you have a GPS feeding into YAAC, either directly with the Serial_GPS or GPSD port type, or through a Kenwood port type (GPS hooked into the 1/8" phone jack on the side of the D710 control head), and your beacon is configured to Use GPS Position, then, as long as you're getting valid GPS fixes, your station will be plotted at your GPS fix.
Now, to keep that centered on the map, pick the menu option View->Auto-Center Map, and every time your station moves more than a third of the map away from the center, it will be recentered around you. The reason for the large amount of travel before recentering is due to how slow the map rendering is on a Raspberry Pi, so as to not have your screen background blank most of the time because it barely finished re-rendering before it has to re-render again for another map pan. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Michael WA7SKG <wa7skg@...> Sent: Monday, March 1, 2021 8:22 PM To: [email protected] Subject: [yaac-users] Keep Me On The Map I'm sure this has been discussed before, but I can't find it. Is there a way to keep my station centered on the map when I am driving? I've only been out a couple times since I got APRS hooked up in my truck. I thought the map would scroll to keep me centered on the display as I moved, but apparently it does not. I have to periodically reach over and tap the little "me" icon to put me back in the middle. If I am zoomed in very far, I drive off the screen and have no idea where I am. Is there a setting I need to change? -- 73, Michael WA7SKG "Any day you do not learn one new thing is a wasted day." |
Keep Me On The Map
I'm sure this has been discussed before, but I can't find it. Is there a way to keep my station centered on the map when I am driving? I've only been out a couple times since I got APRS hooked up in my truck. I thought the map would scroll to keep me centered on the display as I moved, but apparently it does not. I have to periodically reach over and tap the little "me" icon to put me back in the middle. If I am zoomed in very far, I drive off the screen and have no idea where I am. Is there a setting I need to change?
-- 73, Michael WA7SKG "Any day you do not learn one new thing is a wasted day." |
Re: Linux AX.25
Mike Allred
开云体育Thanks for the response Andrew. Looks like it would be challenging and I can't say how much demand there would be for the feature in the larger community.? I can tell you what my use case is. I am configuring Raspberry Pi's with TNC's for some local hams for local digital communications.? I had hoped to setup both APRS and Winlink.? I thought this might be a useful combination since Winlink only connects to the RMS node intermittently and only upon user direction to do so.? The users could close YAAC, change their radio frequency, check their Winlink mail, and then switch back. However, from what I can tell, the Linux Winlink application (PAT) can only interface with a serial KISS TNC using the native Linux AX.25 stack.? Once the serial port is attached to the stack it is locked out of use by other programs.? This can be undone by manually killing kissattach, but introduces complexity for the users that I was hoping to avoid. If I could have both APRS and Winlink using the native AX.25 stack then it would all be seamless in theory. Mike ---- On Sun, 28 Feb 2021 19:51:01 -0600 Andrew P. <andrewemt@...> wrote ----
|
Re: Linux AX.25
No, YAAC does not at the present time support access to the Linux native AX.25 protocol stack.
Part of the problem is that YAAC is a Java application and the native AX.25 stack is not accessible through standard Java APIs (the Java runtime only supports Internet Protocol V4 and V6), so it would require a platform-specific native library (using the Java Native Interface API to implement it) to be able to create sockets of address family (protocol) AF_AX25, and then dynamically select the appropriate platform-specific native code variant at runtime (as the JSSC library does to access serial ports). Note that "platform-specific" means not only being Linux, but Linux on a particular hardware architecture (32-bit versus 64-bit Intel CPU, ARM CPU, etc.). It's a solveable problem (JSSC has already solved it), but not sure if it's worth the effort because.... Secondly, a given radio port operates on only one frequency (not switchable by AX.25 stack client applications), and different frequencies are used for connected-mode packet (PBBS) versus APRS non-connected mode. So the user would have to properly select the appropriate AX.25 native port (by callsign-SSID), where YAAC would not be able to help the user in determining which was the correct one. As such, there hasn't been enough demand to create a Linux-only YAAC plugin to support access to the native AX.25 stack when there are plenty of other ways to connect YAAC to TNCs. Most APRS-only packet users don't use the native stack because it just adds overhead and complexity, and doesn't support features like New-N paradigm digipeater aliases. All the regular APRS applications support direct (exclusive) control over a hardware or software TNC port at user mode, which is reasonable since APRS and non-APRS traffic shouldn't be sharing an RF channel anyway, so there's typically no need to add the native stack overhead to multiplex multiple simultaneous applications to a single TNC port. And, if you do need that, some of the software TNCs do allow multiple applications to connect to a single TNC port (although their behavior for received unconnected packets is not consistent on which of the multiple applications would receive said packets). Having said all this, is there an interest in having such native AX.25 kernel stack access anyway? Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Mike Allred Sent: Sunday, February 28, 2021 3:10 PM Subject: [yaac-users] Linux AX.25 Hello, I'm now to the group, so apologies if this has been mentioned recently. A Google search let me to a post on this subject from early last year and made me aware of this group. Does YAAC support the native AX.25 stack in linux yet? (via kissattach, etc...) Thanks, Mike AE4G |
Linux AX.25
Mike Allred
开云体育Hello, I'm now to the group, so apologies if this has been mentioned recently.? A Google search let me to a post on this subject from early last year and made me aware of this group. Does YAAC support the native AX.25 stack in linux yet?? (via kissattach, etc...) Thanks, Mike AE4G |
Re: Question regarding 'Stations heard directly by'
No, it doesn't, because you still have no guarantee that W0NED-10 is the _fastest_ I-gate to deliver to the APRS-IS in the area. Just FYI, YAAC is typically dead-last in the race of I-gates to forward packets to the APRS-IS; it is not optimized for I-gating, but for user display, so a I-gate running YAAC will generally only show up if no other I-gate can hear a given signal at all.
The only way you can do such I-gate verification is to send a signal that _only_ that I-gate can hear (such as from a very low-power transmitter using no digipeat aliases [so no digipeater can forward the signal to another I-gate] and located very close to the I-gate's receive antenna), so it is guaranteed that no other I-gate can get the signal to the APRS-IS backbone first. Andrew, KA2DDO ________________________________________ From: [email protected] <[email protected]> on behalf of Matt Reynolds <nedheadd@...> Sent: Friday, February 26, 2021 3:46 PM To: [email protected] Subject: Re: [yaac-users] Question regarding 'Stations heard directly by' Sorry I didn't make clear what my intentions were for this test. I'm simply trying to verify that W0NED-10 is functioning properly as an Igate, not propagation analysis. Does that change your answer ? Matt KD0PYK On 2/24/2021 10:02 AM, Andrew P. wrote: Whoops. Missed the point you were making.-- This email has been checked for viruses by AVG. |
Re: Question regarding 'Stations heard directly by'
Sorry I didn't make clear what my intentions were for this test.
toggle quoted message
Show quoted text
I'm simply trying to verify that W0NED-10 is functioning properly as an Igate, not propagation analysis. Does that change your answer ? Matt KD0PYK On 2/24/2021 10:02 AM, Andrew P. wrote:
Whoops. Missed the point you were making. --
This email has been checked for viruses by AVG. |
Re: Question regarding 'Stations heard directly by'
Whoops. Missed the point you were making.
Note that W0NED-10 is not necessarily the fastest I-gate in the area, so it is possible that the later I-gate actually got your packets to the Internet more quickly than W0NED-10 did (if W0NED-10 submitted them to APRS-IS at all). Hence, aprs.fi would not see any report of W0NED-10 that they had heard your station because it was duplicate-discarded. It's been said hundreds of times before by dozens of people, but I'm going to say it again: You CANNOT use aprs.fi (or the APRS-IS backbone in general) for propagation analysis, because it only keeps the first network-received copy of any transmitted packet, not all of the later copies injected by other I-gates, such that you cannot see all RF paths a packet took to get to the APRS-IS. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Matt Reynolds <nedheadd@...> Sent: Wednesday, February 24, 2021 11:38 AM To: [email protected] Subject: [yaac-users] Question regarding 'Stations heard directly by' I transmitted an aprs position packet from my aprsdroid unit. After doing so, my aprsdroid unit (KD0PYK-7) was properly positioned on the APRS.fi map. Looking at the 'Last path' for my aprsdroid packet, it shows KD0PYK-7>APDR16 via W)NED-10.... This is appropriate. [cid:part1.F8302B06.6399C956@...] ------------------------------------------------------------------------------------------------------------------------------------------------------------------- However, when I look at the info display for W0NED-10, I don't see KD0PYK-7 under 'Stations heard directly by W0NED-10'. Why not ? ------------------------------------------------------------------------------------------------------------------------------------------------------------------- [cid:part2.DAB4ED3E.E7DFF310@...] ________________________________ [AVG logo] <> This email has been checked for viruses by AVG antivirus software. www.avg.com<> |
Re: Question regarding 'Stations heard directly by'
Because you didn't hear it directly; you heard it via a digipeater. Direct means that no other station had to help you get there.
________________________________________ From: [email protected] <[email protected]> on behalf of Matt Reynolds <nedheadd@...> Sent: Wednesday, February 24, 2021 11:38 AM To: [email protected] Subject: [yaac-users] Question regarding 'Stations heard directly by' I transmitted an aprs position packet from my aprsdroid unit. After doing so, my aprsdroid unit (KD0PYK-7) was properly positioned on the APRS.fi map. Looking at the 'Last path' for my aprsdroid packet, it shows KD0PYK-7>APDR16 via W)NED-10.... This is appropriate. ------------------------------------------------------------------------------------------------------------------------------------------------------------------- However, when I look at the info display for W0NED-10, I don't see KD0PYK-7 under 'Stations heard directly by W0NED-10'. Why not ? |
Question regarding 'Stations heard directly by'
开云体育I transmitted an aprs position packet from my aprsdroid unit. After doing so, my aprsdroid unit (KD0PYK-7) was properly positioned on the APRS.fi map. Looking at the 'Last path' for my aprsdroid packet, it shows KD0PYK-7>APDR16 via W)NED-10.... This is appropriate. ------------------------------------------------------------------------------------------------------------------------------------------------------------------- However, when I look at the info display for W0NED-10, I don't see KD0PYK-7 under 'Stations heard directly by W0NED-10'. Why not ? ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
Re: Heard Stations/raw packets/aprs.fi update
Your set-up description is not very clear. I'm guessing at what you are doing, so here's my best shot with incomplete information, in regards to your questions, in order:
1. When you say "most other stations", are you referring to stations coming from the Internet APRS-IS backbone? Note that such stations' packets will have a 3rd-party header indicating the packet routing before entering the APRS-IS backbone. Only packet that are purely RF (never passed through the Internet to get to you) will not have a 3rd-party header in the message body. 2. What I-gate station? Are you referring to your YAAC installation as the I-gate station? 3. If YAAC is supposed to be running as an I-gate, then there are several pre-requisites you have to meet to do that: a. you have to have a passcode to authorize write access to the APRS-IS backbone (or be using your ARRL Logbook of the World certificate for an SSL connection). b. your APRS-IS port has to be enabled for transmit (to the APRS-IS). c. you cannot have disabled RF->IS forwarding. d. you need to enable your own beacon to the APRS-IS, so they can identify your station's location. e. you have to have an RF port of some kind that is hearing and successfully decoding packets. Is your test "radio" actually transmitting to RF, and are you hearing such transmissions with a different radio connected to YAAC? Andrew, KA2DDO ________________________________________ From: [email protected] <[email protected]> on behalf of Matt Reynolds <nedheadd@...> Sent: Saturday, February 20, 2021 6:09 PM To: [email protected] Subject: [yaac-users] Heard Stations/raw packets/aprs.fi update Testing my yaac I-gate: 1. When transmitting a position from my test radio, the raw packets display showed my call sign as the source (KD0PYK): destination: APDP16<-wide1-1, wide2-1 message body: =3957.89N/10530.72W$144.390MHZ/A=00824 Is this what I should expect ? Most other raw packets have a call sign before the '=<position>' 2. Watching 'Heard Stations' display, further tests show my call sign appropriately updated when I send a position report from my test radio. Is this really indicative of stations heard directly by the I-gate radio? 3. Despite seeing these appropriate displays (yes, I did close the raw packet display after noting the entries) , I didn't see any update to APRS.fi - searching for packets sent by my test radio today (KD0PYK-7). Why not ? 73 Matt KD0PYK |
Heard Stations/raw packets/aprs.fi update
Testing my yaac I-gate:
1. When transmitting a position from my test radio, the raw packets display showed my call sign as the source (KD0PYK): destination: APDP16<-wide1-1, wide2-1 message body: =3957.89N/10530.72W$144.390MHZ/A=00824 Is this what I should expect ?? Most other raw packets have a call sign before the '=<position>' 2. Watching 'Heard Stations' display, further tests show my call sign appropriately updated when I send a position report from my test radio. Is this really indicative of stations heard directly by the I-gate radio? 3. Despite seeing these appropriate displays (yes, I did close the raw packet display after noting the entries) , I didn't see any update to APRS.fi - searching for packets sent by my test radio today (KD0PYK-7). Why not ? 73 Matt KD0PYK -- This email has been checked for viruses by AVG. |
Re: Three messaging bugs
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, February 18, 2021 10:16 AM, Andrew P. <andrewemt@...> wrote: Regarding your first issue, can you send me a sample of the outgoing message (including the ack string), and the ack responses you are receiving. Unless the ack text and the sending callsign exactly match character-for-character, it won't be accepted as an ack; for example< "M0001" is not the same as "M1" for a sequence ID. Also, YAAC does not presently support dual acks (sending an ack piggybacked onto an outgoing text message), because its message sequence IDs are too long to fit into that mode.Here are a few examples I pulled out of my log. 17/Feb/2021 15:26:13,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::N8VNR :Looks like we were just downgraded to an advisory for tomorrow. 1-3" of snow with .1-.2" of ice.{C000i" 17/Feb/2021 15:27:13,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::N8VNR :Looks like we were just downgraded to an advisory for tomorrow. 1-3" of snow with .1-.2" of ice.{C000i" 17/Feb/2021 15:27:23,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,N3KTX-1,N3KTX-7,WIDE2*:}N8VNR>APX216,TCPIP,N2NWK*::WG3K :ackC000i" 17/Feb/2021 15:29:13,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::N8VNR :Looks like we were just downgraded to an advisory for tomorrow. 1-3" of snow with .1-.2" of ice.{C000i" 17/Feb/2021 15:30:18,"Serial_TNC: /dev/ttyUSB0[WG3K]","KB1EJH-1>APN391,N3KTX-7*,WIDE2-1:}N8VNR>APX216,TCPIP,KB1EJH-1*::WG3K :ackC000i" 17/Feb/2021 15:31:18,"Serial_TNC: /dev/ttyUSB0[WG3K]","KB1EJH-1>APN391,N3KTX-7*,WIDE2-1:}N8VNR>APX216,TCPIP,KB1EJH-1*::WG3K :ackC000i" 17/Feb/2021 15:31:20,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,N3KTX-7*,WIDE2-1:}N8VNR>APX216,TCPIP,N2NWK*::WG3K :ackC000i" 17/Feb/2021 15:31:23,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,K3ARS-2,N3KTX-7,WIDE2*:}N8VNR>APX216,TCPIP,N2NWK*::WG3K :ackC000i" 17/Feb/2021 15:31:29,"Serial_TNC: /dev/ttyUSB0[WG3K]","N3TJJ-11>APMI01,N3KTX-7,WIDE1*:}N8VNR>APX216,TCPIP,N3TJJ-11*::WG3K :ackC000i" 17/Feb/2021 18:24:37,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I don't blame you. I{C000k" 17/Feb/2021 18:24:45,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,N3KTX-7*,WIDE2-1:}WJ3K-10>APWW11,TCPIP,N2NWK*::WG3K :ackC000k" 17/Feb/2021 18:24:58,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I'm up on RF here so if you need anything just let me know.{C000l" 17/Feb/2021 18:25:05,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,N3KTX-1,N3KTX-7,WIDE2*:}WJ3K-10>APWW11,TCPIP,N2NWK*::WG3K :ackC000l" 17/Feb/2021 18:25:37,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I don't blame you. I{C000k" 17/Feb/2021 18:25:58,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I'm up on RF here so if you need anything just let me know.{C000l" 17/Feb/2021 18:26:09,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,K3ARS-2,N3KTX-7,WIDE2*:}WJ3K-10>APWW11,TCPIP,N2NWK*::WG3K :ackC000l" 17/Feb/2021 18:26:10,"Serial_TNC: /dev/ttyUSB0[WG3K]","N2NWK>APU25N,N3KTX-1,N3KTX-7,WIDE2*:}WJ3K-10>APWW11,TCPIP,N2NWK*::WG3K :ackC000l" 17/Feb/2021 18:27:37,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I don't blame you. I{C000k" 17/Feb/2021 18:27:58,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,WIDE2-2::WJ3K-10 :I'm up on RF here so if you need anything just let me know.{C000l" 17/Feb/2021 18:28:25,"Serial_TNC: /dev/ttyUSB0[WG3K]","KB1EJH-1>APN391,N3KTX-7*,WIDE2-1:}WJ3K-10>APWW11,TCPIP,KB1EJH-1*::WG3K :ackC000k" 17/Feb/2021 18:44:05,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7::WG3K-1 :Test{M000a" 17/Feb/2021 18:44:06,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7*::WG3K-1 :Test{M000a" 17/Feb/2021 18:44:09,"Serial_TNC: /dev/ttyUSB0[WG3K]","KB1EJH-1>APN391,N3KTX-7*,WIDE2-1:}WG3K-1>APJYC1,TCPIP,KB1EJH-1*::WG3K :ackM000a" 17/Feb/2021 18:45:05,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7::WG3K-1 :Test{M000a" 17/Feb/2021 18:45:06,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7*::WG3K-1 :Test{M000a" 17/Feb/2021 18:47:05,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7::WG3K-1 :Test{M000a" 17/Feb/2021 18:47:07,"Serial_TNC: /dev/ttyUSB0[WG3K]","WG3K>APJYC1,N3KTX-7*::WG3K-1 :Test{M000a" 17/Feb/2021 18:47:09,"Serial_TNC: /dev/ttyUSB0[WG3K]","KB1EJH-1>APN391,N3KTX-7*,WIDE2-1:}WG3K-1>APJYC1,TCPIP,KB1EJH-1*::WG3K :ackM000a" 73, Eric WG3K |
Re: Two messaging bugs
Thank you for the comments.
Regarding your first issue, can you send me a sample of the outgoing message (including the ack string), and the ack responses you are receiving. Unless the ack text and the sending callsign exactly match character-for-character, it won't be accepted as an ack; for example< "M0001" is not the same as "M1" for a sequence ID. Also, YAAC does not presently support dual acks (sending an ack piggybacked onto an outgoing text message), because its message sequence IDs are too long to fit into that mode. The second and third issues will be fixed in the next build of YAAC. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Eric H. Christensen via groups.io <eric@...> Sent: Thursday, February 18, 2021 8:39 AM To: [email protected] Subject: [yaac-users] Two messaging bugs I'm seeing three messaging bugs: First, when I receive an acknowledgement for a sent message, that acknowledgement doesn't always make the message turn green, meaning that the message continues to be sent out and more acknowledgements get sent back. Looking at the received acknowledgements, I can see no differences in what I am receiving that YAAC seems to accept and what it isn't accepting. Both are being shown in the message windows. Second, when using the "Chat with..." window, YAAC allows me to send a much longer message than I think is allowed. The regular message window will turn the text yellow and then red when the message length has been met but not the "Chat with..." feature. I ran into this problem when talking with a friend who is using Xastir. The extra long message actually did go through the system of digipeaters and APRS-IS but Xastir was not having anything to do with it. Third, when using the "Chat with..." window, the message screen still pops up when I receive a message that is destined for that chat window. I feel like that is just bad UI. My expectation is that when I'm chatting with someone that my conversation will only be in that window and I won't be interrupted by another screen popping up for a similar purpose. BTW, if I haven't said it lately, I find YAAC to be the best APRS client that I have used. Please keep up the great work. 73, Eric WG3K |
Two messaging bugs
I'm seeing three messaging bugs:
First, when I receive an acknowledgement for a sent message, that acknowledgement doesn't always make the message turn green, meaning that the message continues to be sent out and more acknowledgements get sent back. Looking at the received acknowledgements, I can see no differences in what I am receiving that YAAC seems to accept and what it isn't accepting. Both are being shown in the message windows. Second, when using the "Chat with..." window, YAAC allows me to send a much longer message than I think is allowed. The regular message window will turn the text yellow and then red when the message length has been met but not the "Chat with..." feature. I ran into this problem when talking with a friend who is using Xastir. The extra long message actually did go through the system of digipeaters and APRS-IS but Xastir was not having anything to do with it. Third, when using the "Chat with..." window, the message screen still pops up when I receive a message that is destined for that chat window. I feel like that is just bad UI. My expectation is that when I'm chatting with someone that my conversation will only be in that window and I won't be interrupted by another screen popping up for a similar purpose. BTW, if I haven't said it lately, I find YAAC to be the best APRS client that I have used. Please keep up the great work. 73, Eric WG3K |