From hobbes1069 at gmail.com Sat Aug 1 13:04:14 2020 From: hobbes1069 at gmail.com (Richard Shaw) Date: Sat, 1 Aug 2020 12:04:14 -0500 Subject: Howto setup a Winlink client? (pat) Message-ID: Is there anyone else interested in helping me develop a howto for setting up a Winlink client? Supposedly winlink proper works well under wine, but using a close source program still leaves a bad taste in my mouth. I found pat[1] which is written in GO. I would consider packaging it but I have NO idea how to package GO. For now I'm using upstreams provided binaries. I decided ham radio related howtos should be an extension of the Amateur radio sig on Fedora, so I setup the howto here: https://fedoraproject.org/wiki/AmateurRadio/Howto/Pat Outside of this particular topic, it would be nice to come up with more howtos and link to them from the main wiki (probably through the howto part of the link). Thanks, Richard KF5OIM -------------- next part -------------- An HTML attachment was scrubbed... URL: From mikeyp at lhrc.com Sun Aug 2 09:31:14 2020 From: mikeyp at lhrc.com (Michael Pittaro) Date: Sun, 2 Aug 2020 06:31:14 -0700 Subject: Howto setup a Winlink client? (pat) In-Reply-To: References: Message-ID: On Sat, Aug 1, 2020 at 10:05 AM Richard Shaw wrote: > Is there anyone else interested in helping me develop a howto for setting > up a Winlink client? > > > Count me in. I'm running pat with AX.25 and a Kenwood D710 TNC. Setup is fairly straightforward, but there are some tricks related to radio setup that aren't well documented, mostly on the AX.25 side. I'll dig up my notes and add them to the wiki,. I'm also interested in packaging pat. At best I could tell, go-lang versions are the trickiest part. The compiled binaries are static so the basic packaging should be straightforward. Adding niceties like running pat as a service, and maybe getting forms packaged (when the support is in place) would also be good. mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From hobbes1069 at gmail.com Sun Aug 2 10:11:49 2020 From: hobbes1069 at gmail.com (Richard Shaw) Date: Sun, 2 Aug 2020 09:11:49 -0500 Subject: Howto setup a Winlink client? (pat) In-Reply-To: References: Message-ID: On Sun, Aug 2, 2020 at 8:31 AM Michael Pittaro wrote: > > Count me in. I'm running pat with AX.25 and a Kenwood D710 TNC. Setup > is fairly straightforward, but there are some tricks related to radio setup > that aren't well documented, mostly on the AX.25 side. I'll dig up my > notes and add them to the wiki,. > Ok, good deal. I'm still cutting my teeth on all the moving parts. Today I learned that direwolf is really only useful for packet, which means only VHF/UHF for Winlink. For HF you need ARDOP as Winmor is no longer used. Unfortunately it doesn't compile. A whole lot of issues with, "multiple definition of..." Right now I'm trying brute force adding "static" to some of the definitions to get it to compile. Not sure yet if I've broken anything. I'm also interested in packaging pat. At best I could tell, go-lang > versions are the trickiest part. The compiled binaries are static so the > basic packaging should be straightforward. Adding niceties like running > pat as a service, and maybe getting forms packaged (when the support is in > place) would also be good. > Ok, good deal! Thanks, Richard KF5OIM -------------- next part -------------- An HTML attachment was scrubbed... URL: From jvdelisle at charter.net Sun Aug 2 19:48:40 2020 From: jvdelisle at charter.net (Jerry DeLisle) Date: Sun, 2 Aug 2020 16:48:40 -0700 Subject: NBEMS (fldigi et. all) updates In-Reply-To: References: Message-ID: <57c9deef-a656-2d59-1caa-26b6f1fc3573@charter.net> I was planning to start using fldigi unless there is a better recommendation. On 7/29/20 6:13 AM, Richard Shaw wrote: > Just reaching out to see who all uses the NBEMS suite of programs, > specifically fldigi, flrig, and flmsg. > > Over the last month I have taken up trying to learn C/C++ and decided > to use Dave's suite of programs to cut my teeth on. I've "fixed" a > number of things in the three above programs but they haven't been > included in a release... yet. > > Some of them are important enough I've been applying them a patches to > the current Fedora builds. > > Here's a summary log of my changes: > > fldigi: (mostly compiler warnings and MinGW fixes) > 77ac39e8 Comment out memset in fsq.cxx and other type fixes. > 87b3c9d1 Cast to int from trx_mode (intptr_t) with LOG_ statement. > 4b49672c Require use of system regex. > 70ab21ae MinGW updates: > aff671cf Can't pass by reference as it may change (or not be valid) by > the time it's executed. > f7dd4994 For rigCAT_update_pwrlevel, change from void to long for > consistance (since type is known) and pass by reference instead of > pointer since we're dealing with C++ > fcc7996a Bring in needed files from tmp/mingw for nsis packaging. > 470e062f Additional fixes for MinGW 64bit. > e00075b6 Fix warning about boundary. > 3acdfaa1 Fix warning about boundary issue. > > flrig: > 7e9e2e4 FT-991A.cxx: get/set split fixes: > 73bb797 Formatting cleanup on FT991. > db36b7d FT-991A mic gain values are 0 .. 100. > 3e9735e FT-450D Mic Gain fixes > 2a293ca cppcheck: XmlRpc > f84304f Remove superfluous ceil call in get_rf_gain() as the cast to > int truncates it anyway. > 7744166 Tweaks for Yaesu FT-450D and Kenwood TS-480SAT > > flmsg: > c2e2b50 Add check in function arqlog for when nom is not empty bus s is. > - This one fixes a crash when pressing the "Send" button. > eed58aa cppcheck: fix memory leaks src/utils/status.cxx. > d1e479f cppcheck: fix memory leaks in src/utils/parse_xml.cxx. > bede427 cppcheck: fix memory leaks in src/transfer/transfer.cxx. > 0da8b1a cppcheck: fix memory leaks in src/flmsg.cxx. > 745da0f cppcheck: fix memory leaks in src/custom/custom.cxx. > f971885 cppcheck: fix memory leaks in csv.cxx. > > Thanks, > Richard > KF5OIM > > _______________________________________________ > Fedora-hams mailing list > Fedora-hams at kernelnewbies.org > https://lists.kernelnewbies.org/mailman/listinfo/fedora-hams From hobbes1069 at gmail.com Mon Aug 3 10:48:59 2020 From: hobbes1069 at gmail.com (Richard Shaw) Date: Mon, 3 Aug 2020 09:48:59 -0500 Subject: NBEMS (fldigi et. all) updates In-Reply-To: <57c9deef-a656-2d59-1caa-26b6f1fc3573@charter.net> References: <57c9deef-a656-2d59-1caa-26b6f1fc3573@charter.net> Message-ID: On Sun, Aug 2, 2020 at 6:48 PM Jerry DeLisle wrote: > I was planning to start using fldigi unless there is a better > recommendation. > Depends on what you want to do, but there's not really anything that provides the same level of functionality and number of modes. Thanks, Richard -------------- next part -------------- An HTML attachment was scrubbed... URL: