Re: [chirp_users] Unable to Download from GMRS-V1
There are several open bugs against that radio. This one looks like it could be what you are hitting: https://chirp.danplanet.com/issues/6971 Martin. On Mon, Jun 15, 2020 at 1:19 PM Aric Gregson via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > Hello, > > I am new to this. I installed Chrip on a Mac (the latest daily build > yesterday). I was unable to download from the GMRS-V1. I was given an > error the that length of data did not match expected. > > Is this a known issue? Is there a work-around? Did I do something > incorrectly? > > Thanks in advance, Aric > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at kd6...@amsat.org > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Newest Chirp doesn't seem to work with Python 2.6.6 -- invalid syntax on the anytone778uv.py driver
Hi David, Chirp is written for Python 2.7, which is why you're seeing the error. Dictionary comprehensions were introduced with 2.7. It's possible that you're just unlucky in trying to use a driver that uses a 2.7 feature, but given that 2.7 is the target version, it's also quite possible that you'd run into more problems if you worked around this one. (If you wanted to try, google for dictionary comprehensions in 2.6, but don't be too surprised if you hit something else shortly thereafter.) That 2.7 is the target platform isn't well documented. There's a note in the wiki for a Win32 dev env that says "chirp is currently written for Python 2.7 and above", though in the same para it also says it "will generally run on Python 2.6.x". That latter likely depends on the features you want to use. The KK7DS Python runtime for Mac OSX, needed for Chirp on a Mac, is also a packaging of Python 2.7. Martin. KD6YAM On Sat, Jul 18, 2020 at 7:18 PM David Ranch wrote: > > Hello Everyone, > > I've been a happy Chirp user for a long time but haven't upgraded for some > time. I was previously running the TIP version back from Feb 3 2018 > (chirp-hg-e3b90fa8c316) and that worked well but once I fetched the newest > version with: > >wget http://d-rats.com/hg/hgwebdir.cgi/chirp.hg/archive/tip.tar.gz > > Both of these newest versions give me the below errors: > >lrwxrwxrwx1 dranch dranch 21 Jul 18 19:09 chirp-tip-newest -> > chirp-hg-37a6a6d6f425 >lrwxrwxrwx1 dranch dranch 21 Jul 12 13:22 chirp-tip-newest -> > chirp-hg-061e53a8a2cc > > > The errors I'm seeing are: > -- > $ ./chirpw > Traceback (most recent call last): > File "./chirpw", line 24, in > from chirp.drivers import * > File > "/home/archive/Chirp/chirp-hg-37a6a6d6f425/chirp/drivers/anytone778uv.py", > line 192 > for val in TONE_MAP_VAL_TO_TONE} > ^ > SyntaxError: invalid syntax > -- > > It was mentioned by Jim Unroe to install the "future" pip package but > installing version 0.18.2 didn't help. Any thoughts? > > --David > KI6ZHD > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Newest Chirp doesn't seem to work with Python 2.6.6 -- invalid syntax on the anytone778uv.py driver
On Sat, Jul 18, 2020 at 10:37 PM David Ranch wrote: > It's just strange to me that certain drivers would use Python2.7 syntax > but others would be fine with 2.6 syntax. > Not really. As I mentioned, Chirp is targeted at Python 2.7. All Python 2.6.x syntax is valid in 2.7, but 2.7 adds some new capabilities. It's not strange that someone would want to take advantage of those new capabilities when they're available as part of the target version. This is not really different from someone working in C++. If the target version was C++11, any code written for C++98 or C++03 would still be fine, but there are new features - and new syntax - that can be taken advantage of in C++11 to make life simpler / more robust. Code written using those new features may not compile with an older compiler. Also, I'll note in passing that Python 2.7 was released 10 years ago, and security updates for Python 2.6.6 were stopped 7 years ago, in 2013. Martin. KD6YAM > --David > KI6ZHD > > > On 07/18/2020 09:39 PM, Martin Cooper wrote: > > Hi David, > > Chirp is written for Python 2.7, which is why you're seeing the error. > Dictionary comprehensions were introduced with 2.7. It's possible that > you're just unlucky in trying to use a driver that uses a 2.7 feature, but > given that 2.7 is the target version, it's also quite possible that you'd > run into more problems if you worked around this one. (If you wanted to > try, google for dictionary comprehensions in 2.6, but don't be too > surprised if you hit something else shortly thereafter.) > > That 2.7 is the target platform isn't well documented. There's a note in > the wiki for a Win32 dev env that says "chirp is currently written for > Python 2.7 and above", though in the same para it also says it "will > generally run on Python 2.6.x". That latter likely depends on the features > you want to use. The KK7DS Python runtime for Mac OSX, needed for Chirp on > a Mac, is also a packaging of Python 2.7. > > Martin. > KD6YAM > > On Sat, Jul 18, 2020 at 7:18 PM David Ranch wrote: > >> >> Hello Everyone, >> >> I've been a happy Chirp user for a long time but haven't upgraded for >> some time. I was previously running the TIP version back from Feb 3 2018 >> (chirp-hg-e3b90fa8c316) and that worked well but once I fetched the newest >> version with: >> >>wget http://d-rats.com/hg/hgwebdir.cgi/chirp.hg/archive/tip.tar.gz >> >> Both of these newest versions give me the below errors: >> >>lrwxrwxrwx1 dranch dranch 21 Jul 18 19:09 chirp-tip-newest >> -> chirp-hg-37a6a6d6f425 >>lrwxrwxrwx1 dranch dranch 21 Jul 12 13:22 chirp-tip-newest >> -> chirp-hg-061e53a8a2cc >> >> >> The errors I'm seeing are: >> -- >> $ ./chirpw >> Traceback (most recent call last): >> File "./chirpw", line 24, in >> from chirp.drivers import * >> File >> "/home/archive/Chirp/chirp-hg-37a6a6d6f425/chirp/drivers/anytone778uv.py", >> line 192 >> for val in TONE_MAP_VAL_TO_TONE} >> ^ >> SyntaxError: invalid syntax >> -- >> >> It was mentioned by Jim Unroe to install the "future" pip package but >> installing version 0.18.2 didn't help. Any thoughts? >> >> --David >> KI6ZHD >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Martin Cooper at mfncoo...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com > > > > _______ > chirp_users mailing > listchirp_users@intrepid.danplanet.comhttp://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to David Ranch at ch...@trinnet.net > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Serial communication code ??
Hi Anne, It rather depends on what you're looking for, but you'll find code that opens / closes the serial port in: ./chirp/ui/mainapp.py As you might imagine, the port is used by code in many places, including the drivers. The drivers, in turn, use the port in different ways, depending on whether, for example, the radio is clone mode or live mode. If you're on Linux or Mac, grep is your friend. For example: $ grep -r "import serial" --include="*py" . Hope that helps. Martin. KD6YAM On Tue, Jul 28, 2020 at 1:05 PM Anne Ranch wrote: > Could somebody kindly give me a hint where to find serial communication > code in chirp ? Just something general , not rig specific would be nice. > > I expected pyserial but cannot find it > > 73 > > Thanks > > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Icom IC-207H
A request is already in the system: https://chirp.danplanet.com/issues/5705 Martin. KD6YAM On Wed, Jul 29, 2020 at 11:53 AM robert.m.shaw via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > May I request adding CHIRP programming for the Icom IC-207H dual band > radio? > > Thanks, > Robert Shaw > K5RMS > > Sent from my T-Mobile 5G Device > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Icom IC-207H
Hi Robert, The gating factor is usually the radio. If none of the developers has one, or has access to one, that makes it very difficult to assess what's needed in the driver, and impossible to test any code that's written. This is why you'll see an "equipment loan offered" field in the issue tracker. Martin. KD6YAM On Wed, Jul 29, 2020 at 12:19 PM robert.m.shaw wrote: > Martin, > > Thanks. I am new to the users list. I see the original request is more > than two years old. I wonder how it can get the attention of the > programmers? > > Robert Shaw > K5RMS > > > Sent from my T-Mobile 5G Device > > > Original message > From: Martin Cooper > Date: 7/29/20 2:05 PM (GMT-06:00) > To: "robert.m.shaw" , Discussion of CHIRP < > chirp_users@intrepid.danplanet.com> > Subject: Re: [chirp_users] Icom IC-207H > > A request is already in the system: > > https://chirp.danplanet.com/issues/5705 > > Martin. > KD6YAM > > On Wed, Jul 29, 2020 at 11:53 AM robert.m.shaw via chirp_users < > chirp_users@intrepid.danplanet.com> wrote: > >> May I request adding CHIRP programming for the Icom IC-207H dual band >> radio? >> >> Thanks, >> Robert Shaw >> K5RMS >> >> Sent from my T-Mobile 5G Device >> >> ___________ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Martin Cooper at mfncoo...@gmail.com >> >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com > > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Icom IC-207H
The manual indicates that Icom at one time produced software for cloning this radio: === CS-207 CLONING SOFTWARE + OPC-646 CLONING CABLE Provides quick and easy programming of items, including memory channels and set mode contents, for local repeater frequencies, etc. === So, at least in theory, it's possible. Martin. KD6YAM On Wed, Jul 29, 2020 at 12:52 PM Neil - ee wrote: > i also have said radio. it has no propper means of programmig. no > data/program port. > > there had been suggestion of using a interface to mimic the manual key > presses inline with the mic but never heard any more of that (not via > chrip) and ths was only 1 direction as well. ie no read of radio, just > write. > > - Original Message - > *From:* Martin Cooper > *To:* robert.m.shaw > *Cc:* Discussion of CHIRP > *Sent:* Wednesday, July 29, 2020 8:37 PM > *Subject:* Re: [chirp_users] Icom IC-207H > > Hi Robert, > > The gating factor is usually the radio. If none of the developers has one, > or has access to one, that makes it very difficult to assess what's needed > in the driver, and impossible to test any code that's written. This is why > you'll see an "equipment loan offered" field in the issue tracker. > > Martin. > KD6YAM > > On Wed, Jul 29, 2020 at 12:19 PM robert.m.shaw > wrote: > >> Martin, >> >> Thanks. I am new to the users list. I see the original request is more >> than two years old. I wonder how it can get the attention of the >> programmers? >> >> Robert Shaw >> K5RMS >> >> >> Sent from my T-Mobile 5G Device >> >> >> Original message >> From: Martin Cooper >> Date: 7/29/20 2:05 PM (GMT-06:00) >> To: "robert.m.shaw" , Discussion of CHIRP < >> chirp_users@intrepid.danplanet.com> >> Subject: Re: [chirp_users] Icom IC-207H >> >> A request is already in the system: >> >> https://chirp.danplanet.com/issues/5705 >> >> Martin. >> KD6YAM >> >> On Wed, Jul 29, 2020 at 11:53 AM robert.m.shaw via chirp_users < >> chirp_users@intrepid.danplanet.com> wrote: >> >>> May I request adding CHIRP programming for the Icom IC-207H dual band >>> radio? >>> >>> Thanks, >>> Robert Shaw >>> K5RMS >>> >>> Sent from my T-Mobile 5G Device >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Martin Cooper at mfncoo...@gmail.com >>> >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >> >> -- > > _______ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to m1cfk at n...@hotmail.co.uk > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] CHIRP FTM-3200DR Support?
It is listed here: https://trac.chirp.danplanet.com/chirp_daily/LATEST/Model_Support.html#row0304 Martin. KD6YAM On Sat, Sep 26, 2020 at 7:14 PM Jack wrote: > I have looked at the web site (FAQ/Wiki/etc) and have not found a > definitive answer as to whether an FTM-3200DR is a supported rig. I did > see one thread that was several years old but that did not answer my > question. I have seen mention of a FTM-3200D but all the documentation I > find on the Yaesu web site only refers to radios appended DR or DE. > > Apologies if this has been answered before but I could not find it. > > 73, > > Jack, K0JP/VE3RUA > > > -- > This email has been checked for viruses by Avast antivirus software. > https://www.avast.com/antivirus > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Programming an ICOM IC-7100
Can you really not make *any* changes? A quick look at the code shows that changing the bank a memory belongs to is not supported by Chirp today, unfortunately. However, you should still be able to make other changes. Martin. KD6YAM On Sat, Nov 7, 2020 at 8:16 AM John wrote: > I recently purchased an ICOM IC-7100 and am trying to purchase it with > Chirp. I am unable to find a copy of the official ICOM CS71-00 software > (presumably it has to be purchased?) so I am trying Chirp. I usually work > on Linux so tried the Linux version first. > > When Chirp connects, I get a warning that the Icom IC-7100 operates in > live mode and that any changes will be immediately sent to the radio. Chirp > connects to the radio and downloads the existing memories and bank > configurations, but I can't make any changes. For example I would like to > change the bank assignments, but the checkboxes do not work. > > Is it in some kind of read-only mode? Is there something I else I need to > do? > > I tried the Windows version as well (on Windows 7) and the same thing > happens. > > > -- > John. > <https://www.postbox-inc.com/?utm_source=email&utm_medium=siglink&utm_campaign=reach> > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Yaesu FT7250D with CTF-29
Chirp does support the Yaesu FTM-7250D R, so if that is what the OP meant by FT7250D, his radio is in fact supported. https://trac.chirp.danplanet.com/chirp_daily/LATEST/Model_Support.html#row0313 Martin. KD6YAM On Sat, Dec 5, 2020 at 6:14 AM John Wuest wrote: > This group deals with issues about CHIRP programming software, which > doesn't support your radio. Your question may have a better chance of an > answer at some of the Facebook Yaesu focused groups. > > On Fri, Dec 4, 2020 at 10:46 PM Silverfox wrote: > >> I recently bought a CTF-29 after reading it was the cable to buy based on >> Youtube videos. I cannot get it to work on windows 10 Pro. On doing a >> little research on the internet I see that most programming software for >> the radio come with a USB-29F cable. I am skeptical that there is a >> difference between the two. Any advice from the experts? >> >> Alan – W6ARH >> >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to John Wuest at jhwu...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Using premade cvs or execl spreadsheet
I'm not sure which issue you're referring to, but there are many alternatives to Excel, whether you're using Windows, Mac or Linux. It seems unlikely that all of them have the same problem. Martin. KD6YAM On Fri, Dec 25, 2020 at 11:02 AM Nigel A. Gunn G8IFF/W8IFF wrote: > Because of a known issue with MS Excel, I never recomment the use of > spreadsheets with Chirp. > > > > On 25/12/2020 13:48 Jim Unroe wrote: > > > > > > Hi Glen, > > > > On Fri, Dec 25, 2020 at 12:27 PM Glen Terry wrote: > > > > > > Good morning, MERRY CHRISTMAS. In programming my Baofengs, I'm > wondering how to convert pre done lists into the chirp to download to the > radios. > > > > > > > To expand on Nigel's advice, enter a few known to be working channels > > into the CHIRP spreadsheet style memory editor. Export these channels > > to a CSV file. The CSV file saved from CHIRP is now your template for > > how a CSV file must be formatted to be compatible with CHIRP. > > > > Jim KC9HI > > ___ > > chirp_users mailing list > > chirp_users@intrepid.danplanet.com > > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > > This message was sent to Nigel Gunn, W8IFF at ni...@ngunn.net > > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > Nigel A. Gunn, ///shoulders.outwards.resolutions tel +1-937-971-0366 > Amateur Radio G8IFF W8IFF and GMRS WRBV701, e-mail ni...@ngunn.net www > http://www.ngunn.net > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Replying to digests
On Fri, Feb 5, 2021 at 7:49 AM wrote: > Why? Responses are top posted, if you don't want to see any previous > replies don't scroll down. > > I like seeing the chain or threads as it were, to follow the > conversation. So folks, please leave the comments intact so that the rest > of us can follow along without looking back in the archives. > The point Chuck was making was about digests, not regular threads. One digest contains messages from multiple distinct topics, so when you reply to a digest without editing the reply, all of those messages are being included, on all of the topics. That's not helpful. While I agree with you that having the full thread for a topic can be useful, having the entire digest of multiple topics is not. I'd further add that editing the subject line when replying to a digest message would be very helpful. (I've done that with this message.) Seeing a reply to "chirp_users Digest, Vol 146, Issue 4" doesn't give any hint as to which message is being replied to, or which topic the message is really about. Martin. KD6YAM > > Thanks, > > Ken > On 2/4/21 8:49 PM, Chuck Hast wrote: > > Folks, > When you send a reply to a digest PLEASE cut all of the rest of the > messages off, We have all seen it so just leave the part you are > replying to. > > On Thu, Feb 4, 2021 at 6:41 PM G Galaski wrote: > >> Is there a program for the Luiton LT-590 ? >> >> Thanks, >> Greg >> >> On 2/4/21, chirp_users-requ...@intrepid.danplanet.com >> wrote: >> > Send chirp_users mailing list submissions to >> > chirp_users@intrepid.danplanet.com > > > Taking big knife to the rest of this... > >> > > > -- > Chirp + Editcp + MD380Tools on Linux > Celestial!!! > Chuck -- KP4DJT > > ___ > chirp_users mailing > listchirp_users@intrepid.danplanet.comhttp://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Ken at wa0...@kslimmer.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] new ham radio digital data group
What is the material difference between that new group and this one, which was created in 2018? https://groups.io/g/Digital-Amateur-Radio Martin. KD6YAM On Thu, Apr 15, 2021 at 6:18 PM Robert Withers via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > Click this link and click "join this group". Discussion forthcoming. > > https://groups.google.com/g/ham-digital-data > > Kindly, > Robert > > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Moving Chirp Daily to python3?
On Wed, Jun 2, 2021 at 8:47 PM Mark Schoonover via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > Python2 has been EOL for 18 months. This also means any Python modules are > probably no longer being maintained. I would guess moving chirp to Python3 > would be quite the endeavor as well. > In my opinion, a move to Python 3 would be great, but is being hampered by two things, at least based on what is in the 'py3' branch: * The "move" to Python 3 isn't really a move; the code is being updated in such a way as to preserve Python 2 compatibility. * At the same time as moving to Python 3, the UI technology is being switched from Gtk to wxPython. If it was just a straight *move* to Python 3, dropping Python 2 and allowing developers to take full advantage of Python 3 features, I, and I suspect others, would be more interested in helping out, since I don't honestly see much point in keeping Python 2 compatibility any more. As you say, it's been EOL for a while. Also, I feel that switching the UI technology should be a separate effort from updating the language version, unless there's some compelling reason that the two cannot be done sequentially. I'd say get to Python 3 first, and then maybe think about switching UI technologies. My 2 cents. Martin. KD6YAM ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Moving Chirp Daily to python3?
> > The "move" includes two changes, from what I understand, because Python3 > no longer has the PyGTK interface? So, you cannot move from Python2 to > Python3 and keep the existing GUI. > There is pygtkcompat, which "makes it possible to focus on porting to Gtk 3.x while not changing anything else, users and developers can keep on using the software as before". My reading on that (I have not used it) suggests that keeping the existing GUI is entirely possible. Then, once Chirp is on Python 3, any move to wxWidgets can be addressed on its own merits, rather than being embedded as part of a Python 3 port. Of the tests that get executed by the "run_tests.py" script, I have all > tests passing with the exception of Yaesu FTM-3200D R. I expect I can get > that passing before next week. > Have you been able to test against any live-mode radios? They don't have tests included in the run_tests.py suite. Testing against at least one or two (for example, at least one Icom and one Kenwood) would seem pretty important as a part of validating the move. Don't get me wrong - if you're willing to take on the task of getting the Python 3 move up and running, which you clearly are, more power to you, and kudos for taking it on. I'm just personally not interested in futzing around with a Python 2+3 codebase or switching GUI technology when I see neither as necessary. Martin. KD6YAM > Dan, > > What would be the next steps? I can see that there might be radio updates > since the branch. Should I merge the updated radio files into my branch and > make sure that works? Or, should we get the GUI up to speed? When I ran the > GUI, I noticed several features not yet there. > > Joe Pizzi > KI5LST > On 6/4/2021 11:10 AM, Martin Cooper wrote: > > On Wed, Jun 2, 2021 at 8:47 PM Mark Schoonover via chirp_users < > chirp_users@intrepid.danplanet.com> wrote: > >> Python2 has been EOL for 18 months. This also means any Python modules >> are probably no longer being maintained. I would guess moving chirp to >> Python3 would be quite the endeavor as well. >> > > In my opinion, a move to Python 3 would be great, but is being hampered by > two things, at least based on what is in the 'py3' branch: > > * The "move" to Python 3 isn't really a move; the code is being updated in > such a way as to preserve Python 2 compatibility. > * At the same time as moving to Python 3, the UI technology is being > switched from Gtk to wxPython. > > If it was just a straight *move* to Python 3, dropping Python 2 and > allowing developers to take full advantage of Python 3 features, I, and I > suspect others, would be more interested in helping out, since I don't > honestly see much point in keeping Python 2 compatibility any more. As you > say, it's been EOL for a while. > > Also, I feel that switching the UI technology should be a separate effort > from updating the language version, unless there's some compelling reason > that the two cannot be done sequentially. I'd say get to Python 3 first, > and then maybe think about switching UI technologies. > > My 2 cents. > > Martin. > KD6YAM > > > ___ > chirp_users mailing > listchirp_users@intrepid.danplanet.comhttp://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Joe Pizzi at pizzi@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > -- > Joe Pizzi > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] " Python-future package" on Mac;
I have not tried this, so I don't know if it would work, but if you put the 'future' package in the right place inside the application, it seems like it should work, since Chirp is unsigned. That is, copy the 'future' package you just installed from your global Python site-packages directory to: [wherever-you-put-the-chirp-application]/CHIRP.app/Contents/Resources/site-packages/ Again, I haven't tried it, but if you're willing to fiddle around a bit, you could try it and see what happens. Martin. KD6YAM On Thu, Jun 17, 2021 at 6:09 PM Craig Hayes via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > Hello, > > I’m having trouble with Chirp on my Mac ( 10.13 High Sierra but same > problem on Mojave ) and my new Anytone AT-778UV VOX. > > The radio model is not in the drop down menu. If I launch Chirp from the > shell script I get this warning in the terminal; > > WARNING: python-future package is not available; > chirp.drivers.anytone778uv requires it > > I guess this explains why I don’t see the radio entry in the menu. > > I tried installing future via pip, everything appeared to work but still > no luck. > > Anybody encounter this problem? Any hints on where to look for a solution? > > Thanks, > > Craig > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Unable to download from Baofeng BF-F8HP radio
On Fri, Aug 13, 2021 at 12:58 PM Chad Reed wrote: > I believe the answer is yes. Here's why. > 1.The more information that we all have as users, the more helpful we can > be to each other. If one of the knowledgeable people who commonly answers > possibly can't answer for whatever reason, someone else may be able to > pitch in and take the load off. > 2. It gives a reference point to everyone that the question is being > answered, and so it builds confidence in me, that if I have a question, I > know this team has my back. And I have had several responses to my > questions. I very much appreciated that people here are willing to openly > share. > and also: 3. The information is now part of the list archives, so that people can find it there when they search, before posting here. Martin. KD6YAM > > Just my 2 cents. > > Good day, sir. > > > On Fri., Aug. 13, 2021, 12:28 p.m. Bob and Mary Jeter, <904je...@gmail.com> > wrote: > >> Do you guys need to reply to all? >> >> On Fri, Aug 13, 2021 at 12:53 PM Jim Unroe wrote: >> >>> >>> >>> On Fri, Aug 13, 2021 at 12:33 PM Robert Bruner >>> wrote: >>> > >>> > First time radio owner, just getting started. >>> > >>> > Unable to download/clone from the radio to laptop. Programming cable >>> flashes red & green 3 times when plugging in. Upon Request download there >>> is a brief wait, then the error message is thrown. >>> > >>> > Error message >>> > "An error has occurred. Radio did not respond". >>> > (debug.log file attached) >>> > >>> > Equipment >>> > Baofeng BF-F8HP radio >>> > BTECH FTDI cable >>> > CHIRP daily 20210724 >>> > Windows 10, current with updates >>> > >>> > Activities to-date: >>> > Attempted to "Download from Radio" on two different laptops, same >>> result >>> > Followed steps (message prompt) from CHIRP app >>> > Followed printed steps with the FTDI cable, including installing >>> latest FTDI driver >>> > Searched Wiki links >>> > Searched Open/Closed support calls. (closest issue I could find is Bug >>> 9187) >>> > Joined the chirp support and subscribed to the mailing list >>> > >>> > Suggestions for next steps would be greatly appreciated! >>> > >>> > Thanks! >>> > >>> > Bob >>> > Robert Bruner >>> >>> Make sure you have the 2-pin plug of the programming cable fully plugged >>> into the socket of the radio. If you fully unplug the programming cable >>> from the radio (no connection at all) and attempt a download, the result >>> will be the same error. >>> >>> [image: Radio_did_not_respond.png] >>> >>> Make sure you have selected the correct port. My programming cable is >>> assigned COM3 but my computer has an internal serial port with nothing >>> connected to it that is assigned COM1. If I accidentally choose COM1, I get >>> the same error. >>> >>> [image: Radio_did_not_respond.png] >>> >>> Use Device Manager to determine which COM port number is assigned to the >>> programming cable. Mine has been assigned COM3. >>> >>> [image: 2021-01-28 08_20_23-Device Manager.png] >>> >>> No programming software can work until there is a complete and working >>> connection between the radio and computer. >>> >>> Jim KC9HI >>> >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to BOB JETER at 904je...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Chad at elle...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] chirp_users Digest, Vol 152, Issue 12
--- >>> An HTML attachment was scrubbed... >>> URL: >>> http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20210821/b544e8b4/attachment-0001.html >>> >>> -- >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> >>> End of chirp_users Digest, Vol 152, Issue 12 >>> >>> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Ken Hansen at k...@n2vip.org >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Tony Ling at tonyg7...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] chirp_users Digest, Vol 152, Issue 12
Right. What I meant was that there's no need to file a ticket, as Tony was suggesting, because there already is one. Filing another one would just result in it too being marked as a duplicate. It'd likely take a developer who happens to have an FT-270, or who's already implemented a similar driver and so could add this one easily. Martin. KD6YAM On Fri, Aug 27, 2021 at 8:16 AM Ken Hansen wrote: > It's an unanswered request from 8 years ago, and two duplicate requests > were rejected a year later. > > It doesn't look like it's likely to happen - I don't see a request for a > loaner radio, that a developer is going to take a look into what's > involved, etc. AFAIK the FT-270 wasn't a big seller (compared to, say, the > FT-60R) or the many permutations of Baofeng radios. > > Ken, N2VIP > > On Aug 27, 2021, at 08:42, Martin Cooper wrote: > > > No need. There's already an issue for this radio: > > https://chirp.danplanet.com/issues/1099 > > Martin. > KD6YAM > > On Fri, Aug 27, 2021 at 4:27 AM Tony Ling wrote: > >> You can raise is as an issue under new model here >> https://chirp.danplanet.com/projects/chirp/issues/new >> Tony G7TXU >> >> On Fri, 27 Aug 2021 at 00:26, Ken Hansen wrote: >> >>> I suspect as soon as someone loans/donates a radio to a CHIRP programmer >>> to work on support. >>> >>> Ken >>> >>> On Aug 26, 2021, at 18:10, Eric Chopin wrote: >>> >>> >>> Yaesu FT270 H/H >>> >>> Greetings, so far I have used CHIRP with 100% success in programming >>> many radios. >>> What I REALLY need is being able to program the YAESU FT270 Hand Held. >>> When is one of you brilliant guys going to update CHIRP with this radio? >>> >>> Thanks >>> VE7ECJ >>> >>> On Sun, Aug 22, 2021 at 12:01 PM < >>> chirp_users-requ...@intrepid.danplanet.com> wrote: >>> >>>> Send chirp_users mailing list submissions to >>>> chirp_users@intrepid.danplanet.com >>>> >>>> To subscribe or unsubscribe via the World Wide Web, visit >>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>>> or, via email, send a message with subject or body 'help' to >>>> chirp_users-requ...@intrepid.danplanet.com >>>> >>>> You can reach the person managing the list at >>>> chirp_users-ow...@intrepid.danplanet.com >>>> >>>> When replying, please edit your Subject line so it is more specific >>>> than "Re: Contents of chirp_users digest..." >>>> >>>> >>>> Today's Topics: >>>> >>>>1. Re: UV5X Programming issue (White Ranger) >>>> >>>> >>>> -- >>>> >>>> Message: 1 >>>> Date: Sat, 21 Aug 2021 14:33:09 -0500 >>>> From: White Ranger >>>> Subject: Re: [chirp_users] UV5X Programming issue >>>> To: Discussion of CHIRP >>>> Message-ID: >>>> >>> vrt21yd+eidsjhknl0j_xghmzqd7pejxniit...@mail.gmail.com> >>>> Content-Type: text/plain; charset="utf-8" >>>> >>>> Radio should be ON when up or downloading. >>>> Remove the driver and cable program, reboot PC reload driver >>>> SHOULD correct issue. If using aftermarket cable check to see contacts >>>> are >>>> CLEAN (*shiny) and fit TIGHTLY into the mike provisioning adapter (Mic >>>> jack) DO NOT touch ANY buttons while programming. Worst case, prior to >>>> programming RESET the radio to factory resets then load your amended >>>> program. >>>> >>>> On Thu, Aug 19, 2021 at 2:03 PM Jim Unroe wrote: >>>> >>>> > Hi Eric, >>>> > >>>> > On Thu, Aug 19, 2021 at 12:47 PM Eric Chopin >>>> wrote: >>>> > > >>>> > > UV5XP >>>> > > However to get CHIRP to see the radio either in the 'Download >>>> from >>>> > radio' >>>> > > or 'Upload to radio' ... with the cable plugged in to my PC or >>>> my >>>> > MAC, the >>>> > > radio must me switched OFF...then as I select 'Download or >>>> upload' >>>> > as I >>>> >
Re: [chirp_users] Virus warning
_ chirp_users mailing > >>> list chirp_users@intrepid.danplanet.com > >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users This > >>> message was sent to Nigel Gunn, W8IFF at ni...@ngunn.net To > >>> unsubscribe, send an email to > >>> chirp_users-unsubscr...@intrepid.danplanet.com > >> > >> Nigel A. Gunn, ///shoulders.outwards.resolutions tel +1-937-971-0366 > >> Amateur Radio G8IFF W8IFF and GMRS WRBV701, e-mail ni...@ngunn.net www > >> http://www.ngunn.net ___ > >> chirp_users mailing list > >> chirp_users@intrepid.danplanet.com > >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users > >> This message was sent to Troy at plrbea...@gmail.com To unsubscribe, > >> send an email to chirp_users-unsubscr...@intrepid.danplanet.com > >> > >> ___ > >> chirp_users mailing list > >> chirp_users@intrepid.danplanet.com > >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users > >> This message was sent to Lynda Leung at x-ro...@mermaid.org To > >> unsubscribe, send an email to > >> chirp_users-unsubscr...@intrepid.danplanet.com > > > > ___ > > chirp_users mailing list > > chirp_users@intrepid.danplanet.com > > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > > This message was sent to Troy at plrbea...@gmail.com To unsubscribe, > send an email to chirp_users-unsubscr...@intrepid.danplanet.com > > > > ___ > > chirp_users mailing list > > chirp_users@intrepid.danplanet.com > > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > > This message was sent to Lynda Leung at x-ro...@mermaid.org > > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
Re: [chirp_users] Windows 10 and 11 S Mode
In many places, you don't need to pay for a monitor at all. Check your local Freecycle list, or the free section of Craigslist. People are giving away monitors (and TVs) all the time. Martin. KD6YAM On Tue, Jan 25, 2022 at 5:17 PM Chuck Hast wrote: > Ken, in this case I do not have a junk box, but there is > an IT recycler (actually several) in town and they all > have monitors and are more than glad to part with them > for a few $$. I think if people will look around they will > find that most cities of any size will have them and a > lot of computer shops end up with a collection of mon- > itors for the which they will gladly part for a few $$. > > Even in more rural areas, I am going to bet that more > than one shop has monitors that they would like to be > rid of, they work but perhaps are not the best for the > usual video but for a Chirp/ RPi setup they would > work great. > > I see the IT recyclers here send them to grind up, so > many monitors and so little space. If they get a few > $$ for them that is more than they get when they are > sent to the grinder. > > When I talk about scrounging, it is not necessarily in > my junk box, if people will look a wee bit they will find > that there are a lot of ways to keep costs down. Most > TV's have HDMI inputs now and for Chirp they work > pretty well, even small ones. > > On Tue, Jan 25, 2022 at 2:45 PM Ken Hansen wrote: > >> Chuck, >> >> My $100 number started with an RPi 400, not a 'traditional' RPI. >> >> RPi 400 - $70 >> Mouse - $7 >> Power adapter - $7 >> HDMI cable -$7 (microHDMI to standard HDBI) >> Name-brand MicroSD card - $7 >> >> That gives you $98 plus monitor, or simply get the RPi 400 'complete kit' >> for $100 and get a nice book also. >> >> Substitute a 2 Gig RPi 4 (assuming you can find one): >> >> RPi - $45 >> Case for RPi 4 - $5 >> Keyboard - $20 (I too like Logitech K400) >> Power adapter - $7 >> HDMI cable -$7 (microHDMI to standard HDBI) >> Name-brand MicroSD card - $7 >> >> That gets you to $91 plus monitor. >> >> Either path takes you close to $100, esp once you add in tax, s/h, etc. >> >> It's nice that you have a junk box that has all the needed items so you >> can 'scrounge' them, but it's disingenuous to assume everyone else has a >> similar junk box. >> >> Ken, N2VIP >> >> On Jan 25, 2022, at 06:14, Chuck Hast wrote: >> >> >> I buy a Logitech K400 which has a touchpad on it for about $20 >> at Walmart or other places that sell them. I either use a repurposed >> TV or go to the local IT recycler and get me a monitor for $5-$10. >> You do not need that much SD card for Chirp so that will cost less >> than $10. So far I still am not near $100. Part of being a ham is >> learning to scrounge. Part of running a RPi is also learning to >> scrounge. For travel I carry a RPi the keyboard and an HDMI cable >> and use the HDMI port on the TV in the hotel. >> >> >> On Tue, Jan 25, 2022 at 12:46 AM Ken Hansen wrote: >> >>> You need to add a screen, a mouse, a power supply, and an SD card. >>> >>> The screen can get pricey pretty fast - money saved by buying a smaller >>> screen will soon be spent on a pair of 'readers' to use the smaller screen. >>> >>> I'm a big fan of RPi, but people like to gloss over the actual cost of >>> such a setup. >>> >>> An RPi 400 (Pi in a keyboard) setup can easily run $100 + monitor, >>> cheaper than a new laptop, but pretty close to low-end, off-lease corporate >>> laptops. >>> >>> Ken, N2VIP >>> >>> > On Jan 24, 2022, at 10:00, Chuck Hast wrote: >>> > >>> > And for the price >>> > of a RPi 400 you just need to add a screen and you >>> > are off to the races... >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Chuck Hast at kp4...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> >> >> >> -- >> >> Chuck -- KP4DJT >> HamHotline # 11259 >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Ken Ha
Re: [chirp_users] Been trying to figure out how to program IC-7100 for almost a year now
> I've followed the live mode radio "import/export" directions Which directions are you trying to follow? With a live mode radio, you can just edit a memory and it is immediately written back to the radio. Does that work? If not, what kind of errors are you seeing? > as well as the instructions outlined in Bug #7807 That bug relates to a Baofeng UV-82. Presumably you meant a different issue? Martin. KD6YAM On Thu, Feb 17, 2022 at 9:59 AM Thomas Burns wrote: > hi all, > > As I've mentioned above, Been trying to figure out how to program IC-7100 > for almost a year now. I've followed the live mode radio "import/export" > directions as well as the instructions outlined in Bug #7807. I cannot get > the radio to accept any input or programming whatsoever. > I'm using the latest version and daily update on a raspberry pi 400. > > Is there anyone who can provide me with or direct me to a step by step > guide for programming an Icom IC-7100? Thanks in advance, > > > Conor > KI7CRG > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] Been trying to figure out how to program IC-7100 for almost a year now
> > When I connect to the radio, it downloads the memory one at a time. > I presume you mean that it populates the Memories page with all of the memories from your radio, showing all the columns with their current values. If I click on anything in the frequencies column, say I try to type in > 146.640, it takes me to memory number 14 before I can type in the 6. > You're trying to edit the memory in place in the Memories page, right? That is very strange. I'm using a live mode radio that uses the same Chirp driver, and that does not happen when I edit the frequency in place. What happens if you right-click on a memory and select Properties from the context menu? Can you edit the memory successfully from the dialog window that appears? I followed the live mode instructions on the "wiki page", towards the > bottom of the page, amongst other things. > There are 35 wiki pages, which is why I was asking. I'm not clear on which page you are looking at. Perhaps you could post the URL or the page title. Regardless, it's very strange that you can't type directly into the fields in the Memories page. What is the exact daily build of Chirp that you're running? Martin. KD6YAM On Thu, Feb 17, 2022, 16:19 Thomas Burns wrote: > >> Martin, >> Yes, I meant #8707 >> >> On Thu, Feb 17, 2022, 14:41 Martin Cooper wrote: >> >>> > I've followed the live mode radio "import/export" directions >>> >>> Which directions are you trying to follow? >>> >>> With a live mode radio, you can just edit a memory and it is immediately >>> written back to the radio. Does that work? If not, what kind of errors are >>> you seeing? >>> >>> > as well as the instructions outlined in Bug #7807 >>> >>> That bug relates to a Baofeng UV-82. Presumably you meant a different >>> issue? >>> >>> Martin. >>> KD6YAM >>> >>> On Thu, Feb 17, 2022 at 9:59 AM Thomas Burns >>> wrote: >>> >>>> hi all, >>>> >>>> As I've mentioned above, Been trying to figure out how to program >>>> IC-7100 for almost a year now. I've followed the live mode radio >>>> "import/export" directions as well as the instructions outlined in Bug >>>> #7807. I cannot get the radio to accept any input or programming >>>> whatsoever. >>>> I'm using the latest version and daily update on a raspberry pi 400. >>>> >>>> Is there anyone who can provide me with or direct me to a step by step >>>> guide for programming an Icom IC-7100? Thanks in advance, >>>> >>>> >>>> Conor >>>> KI7CRG >>>> ___ >>>> chirp_users mailing list >>>> chirp_users@intrepid.danplanet.com >>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>>> This message was sent to Martin Cooper at mfncoo...@gmail.com >>>> To unsubscribe, send an email to >>>> chirp_users-unsubscr...@intrepid.danplanet.com >>>> To report this email as off-topic, please email >>>> chirp_users-ow...@intrepid.danplanet.com >>> >>> _______ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Conor KI7CRG at t.conor.burn...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >> >> ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] Fonghoo Radio
According to the Q&A for this radio on Amazon, using Chirp with model KT8900D is supposed to work. (Fonghoo posted this answer.) Martin. KD6YAM On Sat, Feb 19, 2022 at 6:16 PM TW wrote: > Hi, does anybody know if there is an existing radio profile that will > work to program the Fonghoo HAM-UV25? I have tried Fonghoo's support, > but they are non-responsive. Thanks! > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] Using Chirp In The CLI
There is chirpc, which is a CLI tool for Chirp. It's limited in what it can do compared to the GUI, but depending on your needs, you may be able to use that. If you run chirpc with '--help', you'll get a long list of options and commands. To be honest, I'm not sure how comprehensible the output from that will be for you. However, there are options for download, upload, and working with individual memories, which might get you going. Hope that helps. Martin. KD6YAM On Fri, Mar 18, 2022 at 8:38 AM K0LNY_Glenn wrote: > Hi, > For some reason, the audio is out on my Ubuntu in my shack, on the > computer > I have connected to my Kenwood TS 2000. > I can SSH into it from elsewhere in the house though. > I have Chirp installed on the computer that is connected to the Kenwood 2K. > I usually install Chirp in the CLI, but I have always used it in the GUI. > So, since for now, I only have use of the computer for programming my > radio > via SSH, I'm wondering if there is a way to read and write to the radio > via > SSH. > Thanks. > > Glenn > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] installing flatpak on arm64 runnning debian 11.2 (bullseye)
On Mon, Mar 21, 2022 at 7:43 PM Nigel A. Gunn G8IFF/W8IFF wrote: > Surely if it's written in Python it should run on any processor/OS that > runs Python. > If it was pure Python, yes, but there's a GTK dependency. Martin. KD6YAM ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] installing flatpak on arm64 runnning debian 11.2 (bullseye)
On Mon, Mar 21, 2022 at 6:55 PM Jim Unroe wrote: > > I'm pretty sure that CHIRP doesn't run on ARM. > It should, but not from the flatpak, since that bundles non-ARM binaries. If you download the source tarball and install using a suitable variation of what's in the INSTALL file, it should work. (I don't have what's needed to test it myself, though.) Martin. KD6YAM > Jim KC9HI > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] Search old emails?
There's a searchable archive for the chirp-users list here: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com/ Martin. KD6YAM On Tue, Jul 26, 2022 at 9:58 AM Michael Nadler KI7QIB < michael.nad...@gmail.com> wrote: > How does one search the Chirp archives to see if a question was answered? > I'd rather avoid starting a new thread. > > -- > Michael Nadler > KI7QIB > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com
Re: [chirp_users] Linux CHIRP, ICOM 7100, "unicode strings" error
Assuming it's the same as for the IC-910H, the CI-V Transceive function is like a real-time updating facility, whereby when you tune the radio manually, it continually sends CI-V data to the computer. You do not want this enabled while running Chirp. FLRIG quite likely does want this enabled, so this may be the setting that Jim was referring to. The Chirp driver for the IC-7100 is a live mode driver. As such, Chirp uses the CI-V interface to talk to, and receive data from, the radio. I don't know about the connectors on that radio, but make sure you're connecting to the CI-V interface. Martin. KD6YAM On Wed, Jul 27, 2022 at 3:03 AM Tony Ling wrote: > CI-V Transceive OFF or ON Turns the CI-V Transceive function ON or OFF > Clone Clone Mode Reads or writes the CS-7100 data to or from the PC, > and/or receives data from a Master transceiver > > On Wed, 27 Jul 2022 at 10:55, Tony Ling wrote: > >> Two COM port numbers are assigned to the [USB] connector. One of them is >> “USB1,” used for cloning and CI-V operation. The other one is “USB2,” whose >> function is selected in “USB2 Function” item of the “Connectors” Set mode. >> (p. 6-8) >> >> On Wed, 27 Jul 2022 at 02:58, Jim Unroe wrote: >> >>> On Tue, Jul 26, 2022 at 4:04 PM Michael Nadler KI7QIB >>> wrote: >>> > >>> > ICOM 7100 connected to Linux system via the mini-USB port. FLRIG can >>> control the radio through that interface. >>> > >>> > Running CHIRP 0.3.0dev, when I try to download from the radio via >>> /dev/ttyUSB0, I get a pop-up error message: unicode strings are not >>> supported, please encode to bytes: <>>". >>> > >>> > Are there specific settings I need to have set on the ICOM? >>> > >>> > Is CHIRP able to interact with the ICOM-7100 via the mini-USB port? >>> Do I have to use the RT-Systems FTDI cable into the audio port? >>> > >>> > >>> > P.S. I also tried running Windows CHIRP daily-20220408. Download from >>> radio gets "error" in every entry. >>> > >>> > >>> > -- >>> > Michael Nadler >>> > KI7QIB >>> >>> I know that when I used CHIRP on my IC-7300, I used a different cable >>> than I did when I used FLRIG. I also had to edit a setting in the >>> radio for CHIRP and change it back for FLRIG. >>> >>> Jim KC9HI >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Tony Ling at tonyg7...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>> >> ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
[chirp_users] Icom ID-5100A (was Re: Linux CHIRP, ICOM 7100, "unicode strings" error)
Apparently quite different. Looking at the "full" manual for the ID-5100A, the entire command set (0x1A) that's used by Chirp's Icom live mode driver for programming is missing, and there are no commands to retrieve or set memories. It would appear that the CI-V interface on the ID-5100A is focused on control and not programming. Unless the command is implemented but just omitted from the CI-V documentation, that means the ID-5100A would need a clone mode driver, and not a variant of the IC-7100 driver. Someone said they were working on a driver for the ID-5100A and had a functioning prototype, but that was 7 years ago ... https://chirp.danplanet.com/issues/1647 Martin. KD6YAM On Wed, Jul 27, 2022 at 9:03 AM Chuck Hast wrote: > I wonder how much different the format is on the ID 5100 from the 7100. > Sure would like to have Chirp working on the 5100. > > I am still willing to loan the radio to someone who could work on the code > for the 5100... > > > On Wed, Jul 27, 2022 at 10:48 AM Martin Cooper > wrote: > >> Assuming it's the same as for the IC-910H, the CI-V Transceive function >> is like a real-time updating facility, whereby when you tune the radio >> manually, it continually sends CI-V data to the computer. You do not want >> this enabled while running Chirp. FLRIG quite likely does want this >> enabled, so this may be the setting that Jim was referring to. >> >> The Chirp driver for the IC-7100 is a live mode driver. As such, Chirp >> uses the CI-V interface to talk to, and receive data from, the radio. I >> don't know about the connectors on that radio, but make sure you're >> connecting to the CI-V interface. >> >> Martin. >> KD6YAM >> >> On Wed, Jul 27, 2022 at 3:03 AM Tony Ling wrote: >> >>> CI-V Transceive OFF or ON Turns the CI-V Transceive function ON or OFF >>> Clone Clone Mode Reads or writes the CS-7100 data to or from the PC, >>> and/or receives data from a Master transceiver >>> >>> On Wed, 27 Jul 2022 at 10:55, Tony Ling wrote: >>> >>>> Two COM port numbers are assigned to the [USB] connector. One of them >>>> is “USB1,” used for cloning and CI-V operation. The other one is “USB2,” >>>> whose function is selected in “USB2 Function” item of the “Connectors” Set >>>> mode. (p. 6-8) >>>> >>>> On Wed, 27 Jul 2022 at 02:58, Jim Unroe wrote: >>>> >>>>> On Tue, Jul 26, 2022 at 4:04 PM Michael Nadler KI7QIB >>>>> wrote: >>>>> > >>>>> > ICOM 7100 connected to Linux system via the mini-USB port. FLRIG >>>>> can control the radio through that interface. >>>>> > >>>>> > Running CHIRP 0.3.0dev, when I try to download from the radio via >>>>> /dev/ttyUSB0, I get a pop-up error message: unicode strings are not >>>>> supported, please encode to bytes: <>>". >>>>> > >>>>> > Are there specific settings I need to have set on the ICOM? >>>>> > >>>>> > Is CHIRP able to interact with the ICOM-7100 via the mini-USB port? >>>>> Do I have to use the RT-Systems FTDI cable into the audio port? >>>>> > >>>>> > >>>>> > P.S. I also tried running Windows CHIRP daily-20220408. Download >>>>> from radio gets "error" in every entry. >>>>> > >>>>> > >>>>> > -- >>>>> > Michael Nadler >>>>> > KI7QIB >>>>> >>>>> I know that when I used CHIRP on my IC-7300, I used a different cable >>>>> than I did when I used FLRIG. I also had to edit a setting in the >>>>> radio for CHIRP and change it back for FLRIG. >>>>> >>>>> Jim KC9HI >>>>> ___ >>>>> chirp_users mailing list >>>>> chirp_users@intrepid.danplanet.com >>>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>>>> This message was sent to Tony Ling at tonyg7...@gmail.com >>>>> To unsubscribe, send an email to >>>>> chirp_users-unsubscr...@intrepid.danplanet.com >>>>> To report this email as off-topic, please email >>>>> chirp_users-ow...@intrepid.danplanet.com >>>>> Searchable archive: >>>>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>>>> >>>> ___ >>
Re: [chirp_users] Search old emails?
And he has! Thanks Dan! Martin. KD6YAM On Tue, Jul 26, 2022 at 10:48 AM Al Jones wrote: > Need to get Dan to include that in his 'footer links' I didn't know it > was there and I'd have to use it to find it again ... > Thanks for tell us Martin! > //al > > -- Original Message -- > From "Martin Cooper" > To "Discussion of CHIRP" > Date Tue 7 26 22 12:30:37 > Subject Re: [chirp_users] Search old emails? > > There's a searchable archive for the chirp-users list here: > > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com/ > > Martin. > KD6YAM > > On Tue, Jul 26, 2022 at 9:58 AM Michael Nadler KI7QIB < > michael.nad...@gmail.com> wrote: > >> How does one search the Chirp archives to see if a question was >> answered? I'd rather avoid starting a new thread. >> >> -- >> Michael Nadler >> KI7QIB >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to Martin Cooper at mfncoo...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com >> To report this email as off-topic, please email >> chirp_users-ow...@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] New chirp-next build
On Mon, Jan 2, 2023 at 6:32 AM Dean Berglund wrote: > I would think it would be good to make it clear this "next" version of > Chirp is made for Windows 10 and doesn't work on Windows 7. > Perhaps you could be a bit more clear about "doesn't work"? Martin. KD6YAM ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] New chirp-next build
https://ubuntu.com/legal/intellectual-property-policy >>> >>> Yes, installing a 3rd party package (Chirp) and distributing a VM image >>> of it can be considered 'modification'. >>> >>> On Mon, Jan 2, 2023 at 8:33 PM K0LNY_Glenn wrote: >>> >>>> Well if it is the only someone can use Chirp, either for accessibility, >>>> or because of operating system, I see nothing wrong with it. >>>> I may DD my thumb drive with Ubuntu and Chirp on it, if I can find a >>>> drive with just that on it, and give a link to anyone who wants it. >>>> Some of my thumb drives are multiboot, with several operating systems >>>> on it, so I'll need to go through a bunch of them to find one that has >>>> Ubuntu 18 and Chirp. >>>> >>>> Glenn >>>> >>>> - Original Message - >>>> *From:* Scott Lopez >>>> *To:* Discussion of CHIRP >>>> *Sent:* Monday, January 02, 2023 7:22 PM >>>> *Subject:* Re: [chirp_users] New chirp-next build >>>> >>>> I can't imagine anyone here wants to be responsible for setting up, >>>> distributing, and supporting a VM image of what is now outdated and no >>>> longer supported software. I know I wouldn't want to be. There's a reason >>>> the software is outdated, the best solution is to keep up. >>>> >>>> On Mon, Jan 2, 2023 at 4:03 PM K0LNY_Glenn wrote: >>>> >>>>> What would be handy is to have a VM of Ubuntu with the old Chirp >>>>> already installed, so that can be implemented. >>>>> I am sure I have an old Ubuntu Live on a thumb drive with Chirp on it, >>>>> but I don't know if that can be made into a VM. >>>>> Glenn >>>>> >>>> -- >>>> >>>> ___ >>>> chirp_users mailing list >>>> chirp_users@intrepid.danplanet.com >>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>>> This message was sent to K0LNY at glenn@ervin.email >>>> To unsubscribe, send an email to >>>> chirp_users-unsubscr...@intrepid.danplanet.com >>>> To report this email as off-topic, please email >>>> chirp_users-ow...@intrepid.danplanet.com >>>> Searchable archive: >>>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>>> >>>> ___ >>>> chirp_users mailing list >>>> chirp_users@intrepid.danplanet.com >>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>>> This message was sent to scot...@gmail.com at scot...@gmail.com >>>> To unsubscribe, send an email to >>>> chirp_users-unsubscr...@intrepid.danplanet.com >>>> To report this email as off-topic, please email >>>> chirp_users-ow...@intrepid.danplanet.com >>>> Searchable archive: >>>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Ken Hansen at k...@n2vip.org >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>> >>> -- >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to K0LNY at glenn@ervin.email >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_
Re: [chirp_users] New chirp-next build
p_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to K0LNY at glenn@ervin.email >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to UtahDave at bou...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >> >> -- >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to K0LNY at glenn@ervin.email >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com >> To report this email as off-topic, please email >> chirp_users-ow...@intrepid.danplanet.com >> Searchable archive: >> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to UtahDave at bou...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com >> To report this email as off-topic, please email >> chirp_users-ow...@intrepid.danplanet.com >> Searchable archive: >> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > -- > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to K0LNY at glenn@ervin.email > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > -- > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to K0LNY at glenn@ervin.email > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] Nice!
I'll add my +1 for fixed pitch. Definitely nice to have things line up. Variable pitch could get messy. Martin. KD6YAM On Wed, Jan 4, 2023 at 5:27 PM Dan Smith via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > > Please tell me there is some way to change the font used by Chirp Next? > The default font hurts my eyes! > > Not currently, but please check tomorrow's build. The short story is, > being a developer, I like tabulated and structured data to appear in > fixed-width (i.e. typewriter) font so that everything lines up. I'm > starting to gather the impression that my preference is not shared by many > other people in the community :) > > So tomorrow it will change to the system-default variable-width font. > Please let me know if that addresses your concern. > > If there are users here who prefer the fixed-width font the way it is > today, speak up and I'll make a way for you to choose which one is used. If > I'm the only one, then I won't bother :) > > --Dan > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] New chirp-next build
>From the FAQ: https://chirp.danplanet.com/projects/chirp/wiki/FAQ#How-can-I-get-my-radio-supported-by-CHIRP and then looking at New Model Requests: https://chirp.danplanet.com/projects/chirp/issues?query_id=15 we find: https://chirp.danplanet.com/issues/1489 So please do not open another new model request. Martin. KD6YAM On Sun, Feb 19, 2023 at 7:26 AM John La wrote: > . . If your model is not currently in the Supported Radios list, it's > possible a request hasn't been submitted. > Here's the request procedure for CHIRP-next. > > > The official CHIRP website is: > https://chirp.danplanet.com/projects/chirp/wiki/Home > > Here's the procedure for requesting a new radio... > If you would like to open a request, you would need to > - Go to the CHIRP website. (link above) > - Register to the website (upper right corner) > - Select the Issues Tab and verify that the request for the new radio > hasn't > already been submitted. > - If it's not found, select the New Issue tab and submit your request. > - Check back periodically to review the status of your request. > At that time a volunteer interested in taking on the project will respond > to > the request. > In most cases, a loaner radio is required so the software can be backward > engineered and tested. > > Stay safe and healthy. > John K3NXU > > https://www.Miklor.com > https://www.Miklor.com/DMR/ > https://www.Miklor.com/GMRS/ > > > -Original Message- > From: chirp_users-boun...@intrepid.danplanet.com > [mailto:chirp_users-boun...@intrepid.danplanet.com] On Behalf Of > m...@m-u-m.info > Sent: Sunday, February 19, 2023 9:26 AM > To: chirp_users@intrepid.danplanet.com > Subject: Re: [chirp_users] New chirp-next build > > Hi everone, > > > i have ask i there are any plans to ad the wouxun kg - uv950p, but got > no answer. > > > So i try it again. > > > > THX > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to John LaMartina at joh...@usa.net > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] Can you add baofeng uv-10 to chirp please..many thanks
On the Supported Radios page, it says "UV-10R (use BF-F8HP)". See: https://chirp.danplanet.com/projects/chirp/wiki/Supported_Radios Martin. KD6YAM On Tue, Mar 7, 2023 at 11:23 AM Arthur Taylor via chirp_users < chirp_users@intrepid.danplanet.com> wrote: > > > Sent from my iPad > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] installing CHIRP-next problems
As of Python 3.10: > Remove deprecated aliases to Collections Abstract Base Classes from the collections module. They were originally deprecated in Python 3.3, a long time ago. This means that the old (and now archived) attrdict package no longer works, and needs to be replaced with attrdict3, which correctly uses 'collections.abc' instead of 'collections' for Mapping and similar classes. I believe attrdict is being used by wxPython. Replacing it with attrdict3 should work, though I don't have the environment to try it myself. Martin. KD6YAM On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian wrote: > I run Fedpra Linux version 37 which has python 3.11 > > I have previously used CHIRP and am upgrading to the newer python3 version > but am encountering several issues. Each time I try to launch the new > version I get an error, and have been working through them one at a time > (which mostly requires installing a python package not previously > installed). > > I have, however, hit one that I cannot find the proper fix for. > > File > "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py", > line 4, in > from collections import Mapping > ImportError: cannot import name 'Mapping' from 'collections' > (/usr/lib64/python3.11/collections/__init__.py) > [end of output] > > Looking at the collections module installed for the system it does not > seem to have the Mapping module as the error states and I cannot figure out > how to fix that issue. Does someone with python experience have any > suggestions? > > Jeff > KI7GJG > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] installing CHIRP-next problems
Rather than changing Python code, removing attrdict and installing attrdict3 should do the trick. But since you have it working now ... It would fail with Python 3.10 too, since that's when the removals happened. With 3.9 and earlier, it should be fine, albeit with some deprecation warnings that have been there since 3.3. Martin. KD6YAM On Thu, Mar 9, 2023 at 9:38 AM Jeffrey Vian wrote: > attrdict was definitely used by wxpython. I installed it using pip, then > the noted errors popped up. > I was able to work around the problem by adding the following lines to > `/usr/lib64/python3.11/collections/__init__.py` > > " > from _collections_abc import Mapping > from _collections_abc import MutableMapping > from _collections_abc import Sequence > " > > After adding those lines for the modules that wxpython was complaining > about the install completed. > Note that nothing I found in the install instructions said that wheel was > needed, but as a matter of course I always install wheel and wxpython also > used it, building several wheels for the packages installed. > > Your note seems to indicate that those modules would not have erred with > python 3.10 but definitely did with python 3.11. > > Jeff > > > > > On Thu, Mar 9, 2023 at 10:42 AM Martin Cooper wrote: > >> As of Python 3.10: >> >> > Remove deprecated aliases to Collections Abstract Base Classes from the >> collections module. >> >> They were originally deprecated in Python 3.3, a long time ago. This >> means that the old (and now archived) attrdict package no longer works, and >> needs to be replaced with attrdict3, which correctly uses 'collections.abc' >> instead of 'collections' for Mapping and similar classes. >> >> I believe attrdict is being used by wxPython. Replacing it with attrdict3 >> should work, though I don't have the environment to try it myself. >> >> Martin. >> KD6YAM >> >> On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian < >> sandhillsinvestm...@gmail.com> wrote: >> >>> I run Fedpra Linux version 37 which has python 3.11 >>> >>> I have previously used CHIRP and am upgrading to the newer python3 >>> version but am encountering several issues. Each time I try to launch the >>> new version I get an error, and have been working through them one at a >>> time (which mostly requires installing a python package not previously >>> installed). >>> >>> I have, however, hit one that I cannot find the proper fix for. >>> >>> File >>> "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py", >>> line 4, in >>> from collections import Mapping >>> ImportError: cannot import name 'Mapping' from 'collections' >>> (/usr/lib64/python3.11/collections/__init__.py) >>> [end of output] >>> >>> Looking at the collections module installed for the system it does not >>> seem to have the Mapping module as the error states and I cannot figure out >>> how to fix that issue. Does someone with python experience have any >>> suggestions? >>> >>> Jeff >>> KI7GJG >>> >>> ___ >>> chirp_users mailing list >>> chirp_users@intrepid.danplanet.com >>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >>> This message was sent to Martin Cooper at mfncoo...@gmail.com >>> To unsubscribe, send an email to >>> chirp_users-unsubscr...@intrepid.danplanet.com >>> To report this email as off-topic, please email >>> chirp_users-ow...@intrepid.danplanet.com >>> Searchable archive: >>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com >> >> ___ >> chirp_users mailing list >> chirp_users@intrepid.danplanet.com >> http://intrepid.danplanet.com/mailman/listinfo/chirp_users >> This message was sent to sandhillsinvestm...@gmail.com at >> sandhillsinvestm...@gmail.com >> To unsubscribe, send an email to >> chirp_users-unsubscr...@intrepid.danplanet.com >> To report this email as off-topic, please email >> chirp_users-ow...@intrepid.danplanet.com >> Searchable archive: >> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message
Re: [chirp_users] Windows 11
They could, perhaps, read the message footer in any message and then click on the "Searchable archive" link. :-) Martin. KD6YAM On Mon, Apr 17, 2023 at 8:11 PM wrote: > How does one (easily) search the archives for a question? > > Surely, you don't expect people to download the archive files and grep > them? > Nor, I hope, do you expect someone to open each month's archive to see if > any of the threads or subjects match the question? > > Joe Pizzi > KI5LST > > -Original Message- > From: chirp_users-boun...@intrepid.danplanet.com > On Behalf Of Nigel A. Gunn > G8IFF/W8IFF > Sent: Wednesday, April 5, 2023 4:28 PM > To: Discussion of CHIRP ; Al Jones > > Subject: Re: [chirp_users] Windows 11 > > It surprises me, although it shouldn't, the number of people who ask the > same question that's been asked and answered numerous times and is in the > group archives, but then it's easier to be lazy and ask it again than do > your own research and look to see if someone in the past has had the same > question answered. > > > On 05/04/2023 20:39 GMT Al Jones wrote: > > > > > > Nigel, et al, personally it gets to be insulting to me (and others, > > probably) when you all come back with "Get a real FTDI" chip. I've been > > around ham radio since I was a teen (more as a SWL) but when I bought my > > first cable it was, of course, a counterfeit chip and I needed to > > install the older Prolific driver ... I didn't find out anything about > > the chips and the drivers till Windows did an update and wiped out the > > driver loaded by the company software. > > I'd guess that most of the people who are asking "Why doesn't this > > work?" already have spent money on a cable and are only now finding that > > things aren't as straightforward as it should be ... if they'd bought > > the right cable in the fist place. It's a lot more pleasant experience > > to help them solve their problems rather than infer they didn't do their > > homework before they even knew there was a problem. > > > > > > > > -- Original Message -- > > >From "Nigel A. Gunn G8IFF/W8IFF" > > To "Dave B" ; "Dave B via chirp_users" > > > > Date 4/5/2023 15:18:42 > > Subject Re: [chirp_users] Windows 11 > > > > >You don't need to look else where. > > >Buy direct from the FTDI website. > > > > > > > > > > > >> On 05/04/2023 19:26 GMT Dave B via chirp_users > wrote: > > >> > > >... > > >> > > >> Buy a proper "Genuine" FTDI based cable. No more problems after that. > > >> > > >> If your supplier/seller cannot guarantee a genuine FTDI based > product, > > >> look elsewhere. (Or build the cable assembly yourself.) > > > > > >Nigel A. Gunn, ///shoulders.outwards.resolutions tel +1-937-971-0366 > > >Amateur Radio G8IFF W8IFF and GMRS WRBV701, e-mail ni...@ngunn.net www > http://www.ngunn.net > > >___ > > >chirp_users mailing list > > >chirp_users@intrepid.danplanet.com > > >http://intrepid.danplanet.com/mailman/listinfo/chirp_users > > >This message was sent to Al Jones at a...@aljones.us > > >To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > >To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > > >Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > ___ > > chirp_users mailing list > > chirp_users@intrepid.danplanet.com > > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > > This message was sent to Nigel Gunn, W8IFF at ni...@ngunn.net > > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com > > Nigel A. Gunn, ///shoulders.outwards.resolutions tel +1-937-971-0366 > Amateur Radio G8IFF W8IFF and GMRS WRBV701, e-mail ni...@ngunn.net www > http://www.ngunn.net > _______ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Joe Pizzi at pizzi@gmail.com > To unsubscribe, s
Re: [chirp_users] ICOM 7100 programming
I don't have an IC-7100, but I do have an IC-910, which uses the same driver. One thing to be aware of is that you should not touch the radio until you are done with all the programming you expect to do in a session. For example, don't edit one memory, and then turn knobs or press buttons on the radio to check that it worked, and then try to edit another memory. The reason is that changing anything on the radio can cause events to be sent out on the CI-V bus, and those events can confuse the synchronisation with Chirp. This generally happens when the radio has the "CI-V Transceive" option turned on, so it's a good idea to turn that off. Also, if you have multiple Icom radios connected to the same CI-V bus (e.g. using a CT-17), it's a good idea to turn the other radios off while you program the IC-7100. Martin. KD6YAM On Mon, Aug 21, 2023 at 1:07 PM Michael Nadler KI7QIB wrote: > > I'll try asking again as there was no response before. > > Can anyone successfully program an ICOM-7100 using Chirp? If so: > - how is the computer connected to the radio? > - did you have to change any radio option? > - or any Chirp option? > > My radio downloads its programming to the computer perfectly. But, if I try > to write back more than one channel, or try to program the same channel > twice, Chirp reports programming errors. > > If it doesn't work, then it should be removed from the list of acceptable > radios. > > -- > Michael Nadler > KI7QIB > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
Re: [chirp_users] Icom IC-746Pro
There used to be a very useful website that had all of the details for the different Icom CI-V radios, but it went offline a while ago (or at least the most useful portion of it did). I have a local copy, and it includes the following remark in relation to reading / writing memories: "The data layout is specific to the IC-746. The IC-7400 (IC-746Pro) uses a different memory layout." That means you won't be able to program the IC-746 Pro with Chirp until the CI-V driver is updated to add support for that radio. Martin. KD6YAM On Fri, Feb 23, 2024 at 10:04 AM Eric Poole wrote: > Good afternoon all, from a new Chirp user. > > Is there a difference between the Icom IC-746 and IC-746Pro in the way > it communicates from the Remote port? > > I downloaded and installed Chirp and tried to connect to my IC-746Pro > using the Chirp IC-746 configuration, and could not connect. > > Tried the same thing with my IC-7300 (using the Chirp IC-7300 > configuration) and it connected and programmed the memories just fine, > so the cable and the computer's USB port are working as they should. > > I did verify that CI-V is turned on in the radio and the address is set > to 0x66. (Speaking of which, how do I set the address in Chirp? Maybe > that's the problem...) > > Thanks... > > Rick WA1RKT > Londonderry, NH > Catch me on 14.300 MHz Intercon / MMSN most days > > > ___ > chirp_users mailing list > chirp_users@intrepid.danplanet.com > http://intrepid.danplanet.com/mailman/listinfo/chirp_users > This message was sent to Martin Cooper at mfncoo...@gmail.com > To unsubscribe, send an email to > chirp_users-unsubscr...@intrepid.danplanet.com > To report this email as off-topic, please email > chirp_users-ow...@intrepid.danplanet.com > Searchable archive: > https://www.mail-archive.com/chirp_users@intrepid.danplanet.com ___ chirp_users mailing list chirp_users@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_users This message was sent to arch...@mail-archive.com at arch...@mail-archive.com To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com To report this email as off-topic, please email chirp_users-ow...@intrepid.danplanet.com Searchable archive: https://www.mail-archive.com/chirp_users@intrepid.danplanet.com