Any chance this software will work with a commercial Kenwood TK-805?
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-request@intrepid.danplanet.com
You can reach the person managing the list at
chirp_users-owner@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: CSV Partial Load (Jean-Paul Louis)
2. Re: CSV Partial Load (Aubrey Turner)
3. Re: CSV Partial Load (Ken FitzGerald-Smith)
4. Re: CSV Partial Load (Jim Unroe)
5. Re: CSV Partial Load (Jim Unroe)
6. Re: Chirp began ten years ago today... (W. T. Jones)
7. Re: CSV Partial Load (Nigel A. Gunn G8IFF/W8IFF)
8. fail programming a Jetstream JT270M (Patricia Wilson)
9. Re: fail programming a Jetstream JT270M (Jim Unroe)
10. Re: fail programming a Jetstream JT270M (Patricia Wilson)
11. Re: CSV Partial Load (Dennis Wage)
12. Re: Chirp began ten years ago today... (Chuck Hast)
13. Re: Chirp began ten years ago today... (mike-2007@elp.rr.com)
14. Re: Chirp began ten years ago today... (Dennis Wage)
15. How to empty or null tone channel in Chirp?
(survivor@cryptolab.net)
16. Re: How to empty or null tone channel in Chirp? (Dennis Wage)
17. Re: How to empty or null tone channel in Chirp? (neil b)
18. Re: How to empty or null tone channel in Chirp? (Dennis Wage)
19. Re: How to empty or null tone channel in Chirp? (Jim Unroe)
20. Re: How to empty or null tone channel in Chirp? (Dennis Wage)
21. IC-92AD funnies (Chuck Hast)
22. Re: IC-92AD funnies (Chuck Hast)
23. Re: Chirp began ten years ago today... (BobJ)
24. Re: Chirp began ten years ago today... (Dennis Wage)
25. Re: Chirp began ten years ago today... (Glenn Ervin)
26. Re: Chirp began ten years ago today...
(Nigel A. Gunn G8IFF/W8IFF)
27. Re: Chirp began ten years ago today... (Chuck Hast)
----------------------------------------------------------------------
Message: 1
Date: Tue, 3 Jul 2018 15:02:06 -0400
From: Jean-Paul Louis <louijp@yahoo.com>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID: <0BE7A004-925C-4FE2-9218-364F1C569DC5@yahoo.com>
Content-Type: text/plain; charset=utf-8
I think that you have a problem with the NAMES of the channels. NAMES should not have a space as this break the rules of CSV files.
Try replacing the spaces with ?_? and that might work a lot better.
Just my $0.02,
Jean-Paul
N1JPL
> On Jul 3, 2018, at 2:50 PM, imatglamis <imatglamis@gmail.com> wrote:
>
> I just trimmed off all the punctuation spaces and made names 8 characters or less. Same problem, it imports and shows channels 0-34 fine but stops at 34 with errors:
>
> Line 35: [rtone] could not convert string to float:
>
> Line 36: [rtone] could not convert string to float:
>
> Line 37: [rtone] could not convert string to float:
>
> Line 38: [rtone] could not convert string to float:
> ...
>
> to the end of the list just after channel 70cm Cal:
>
> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
>
> Something is happening here between 33 and 34.
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Jean-Paul Louis at louijp@yahoo.com
> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
------------------------------
Message: 2
Date: Tue, 3 Jul 2018 14:14:38 -0500
From: Aubrey Turner <aubrey.c.turner@gmail.com>
Subject: Re: [chirp_users] CSV Partial Load
To: chirp_users@intrepid.danplanet.com
Message-ID: <d1ef62fc-1577-2d63-54aa-81ca27a15c02@gmail.com>
Content-Type: text/plain; charset=utf-8; format=flowed
Actually, spaces are allowed in CSVs (in general just about everything
other than a COMMA is fine since it's the comma that separates the
fields).? And, we see that line 33 is loading (which also has a space).
What I am seeing, however, is a lot more empty fields in line 34 than in
the previous lines.? In particular, the warning from Chirp is for the
'rtone' column that it can't convert the string to a float.? In line 33
this appears to have a value of 88.5 while it's empty on line 34.? I
suggest looking at the values for the tone columns to see why these are
blank (and/or why Chirp is expecting a value there).
I also see from the history of this email chain that? you're using Excel
to edit the CSV.? Excel is notorious for munging CSV files. You may want
to use a text editor of some kind instead of Excel to make sure that the
fields aren't getting messed up when the file is saved.
On 7/3/2018 2:02 PM, Jean-Paul Louis via chirp_users wrote:
> I think that you have a problem with the NAMES of the channels. NAMES should not have a space as this break the rules of CSV files.
> Try replacing the spaces with ?_? and that might work a lot better.
>
> Just my $0.02,
> Jean-Paul
> N1JPL
>
>
>> On Jul 3, 2018, at 2:50 PM, imatglamis <imatglamis@gmail.com> wrote:
>>
>> I just trimmed off all the punctuation spaces and made names 8 characters or less. Same problem, it imports and shows channels 0-34 fine but stops at 34 with errors:
>>
>> Line 35: [rtone] could not convert string to float:
>>
>> Line 36: [rtone] could not convert string to float:
>>
>> Line 37: [rtone] could not convert string to float:
>>
>> Line 38: [rtone] could not convert string to float:
>> ...
>>
>> to the end of the list just after channel 70cm Cal:
>>
>> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
>> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
>> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
>>
>> Something is happening here between 33 and 34.
>> _______________________________________________
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to Jean-Paul Louis at louijp@yahoo.com
>> To unsubscribe, send an email to chirp_users-unsubscribe@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 Aubrey Turner at aubrey.c.turner@gmail.com
> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
------------------------------
Message: 3
Date: Tue, 3 Jul 2018 20:45:05 +0100
From: Ken FitzGerald-Smith <ei7dkb@logicatrium.com>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID: <36A3E9FC-E5A6-4A73-A05B-D53EBA681348@logicatrium.com>
Content-Type: text/plain; charset="utf-8"
He needs values for all these fields in your csv file: rToneFreq, cToneFreq, DtcsCode, DtcsPolarity, Mode, TStep
rToneFreq & cToneFreq need to be proper ctcss tones. 67.0 will do
DtcsCode needs to be valid too. First valid code is 023
DtcsPolarity needs to be one of [?NN', 'NR', 'RN', 'RR']
Mode needs to be AM or FM at least
TStep (tuning step) needs to be numeric! Zero will do
So this:
35,BECKER1/AGAVE,153.62,,0,,,,,,FM,,,,,,,
Needs to become this at a minimum:
35,BECKER1/AGAVE,153.62,,0,,67.0,67.0,023,NN,FM,12.5,,,,,,
There is no problem with the / in the name, but remember if you see a conversion error like ?String to Float? for any field, that indicates that you must supply at least a numeric value, not an empty field.
I hope this helps
Ken
> On 3 Jul 2018, at 20:14, Aubrey Turner <aubrey.c.turner@gmail.com> wrote:
>
> Actually, spaces are allowed in CSVs (in general just about everything
> other than a COMMA is fine since it's the comma that separates the
> fields). And, we see that line 33 is loading (which also has a space).
>
> What I am seeing, however, is a lot more empty fields in line 34 than in
> the previous lines. In particular, the warning from Chirp is for the
> 'rtone' column that it can't convert the string to a float. In line 33
> this appears to have a value of 88.5 while it's empty on line 34. I
> suggest looking at the values for the tone columns to see why these are
> blank (and/or why Chirp is expecting a value there).
>
> I also see from the history of this email chain that you're using Excel
> to edit the CSV. Excel is notorious for munging CSV files. You may want
> to use a text editor of some kind instead of Excel to make sure that the
> fields aren't getting messed up when the file is saved.
>
>
> On 7/3/2018 2:02 PM, Jean-Paul Louis via chirp_users wrote:
>> I think that you have a problem with the NAMES of the channels. NAMES should not have a space as this break the rules of CSV files.
>> Try replacing the spaces with ?_? and that might work a lot better.
>>
>> Just my $0.02,
>> Jean-Paul
>> N1JPL
>>
>>
>>> On Jul 3, 2018, at 2:50 PM, imatglamis <imatglamis@gmail.com> wrote:
>>>
>>> I just trimmed off all the punctuation spaces and made names 8 characters or less. Same problem, it imports and shows channels 0-34 fine but stops at 34 with errors:
>>>
>>> Line 35: [rtone] could not convert string to float:
>>>
>>> Line 36: [rtone] could not convert string to float:
>>>
>>> Line 37: [rtone] could not convert string to float:
>>>
>>> Line 38: [rtone] could not convert string to float:
>>> ...
>>>
>>> to the end of the list just after channel 70cm Cal:
>>>
>>> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>>> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>>> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
>>> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
>>> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
>>> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
>>>
>>> Something is happening here between 33 and 34.
>>> _______________________________________________
>>> chirp_users mailing list
>>> chirp_users@intrepid.danplanet.com
>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>>> This message was sent to Jean-Paul Louis at louijp@yahoo.com
>>> To unsubscribe, send an email to chirp_users-unsubscribe@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 Aubrey Turner at aubrey.c.turner@gmail.com <mailto:aubrey.c.turner@gmail.com>
>> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com <mailto:chirp_users-unsubscribe@intrepid.danplanet.com>
>
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com <mailto:chirp_users@intrepid.danplanet.com>
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users <http://intrepid.danplanet.com/mailman/listinfo/chirp_users>
> This message was sent to Bitfarmer at ei7dkb@logicatrium.com <mailto:ei7dkb@logicatrium.com>
> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com <mailto:chirp_users-unsubscribe@intrepid.danplanet.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/0a00f7b4/attachment-0001.html
------------------------------
Message: 4
Date: Tue, 3 Jul 2018 16:38:21 -0400
From: Jim Unroe <rock.unroe@gmail.com>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CADnO8U52HAgcL8EQacRgwrpf+1HtasvyyF=yW50_PnF6LodMyw@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
Well one thing is starting at 34 you removed the default values for
Tone, ToneSql, DTCS Code, DTCS Rx Code and DTCS Pol. They should be
there even if they are not used. The Tone Mode value determines if
they are used or not. And it looks like it is missing from all the
memory rows.
Jim
------------------------------
Message: 5
Date: Tue, 3 Jul 2018 16:43:25 -0400
From: Jim Unroe <rock.unroe@gmail.com>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CADnO8U6DjF8C_vMKArWksq0A2HW4mSDdYbs1VN3jr0BaaUo-aA@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
Program memory 31 using the CHIRP UI and then export it to a CSV file.
That is what the others need to look like.
Jim
------------------------------
Message: 6
Date: Tue, 3 Jul 2018 18:53:17 -0400
From: "W. T. Jones" <wn3lif@gmail.com>
Subject: Re: [chirp_users] Chirp began ten years ago today...
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CA+M-Wc_sa1=Rt880xOsggM3m-1PP2HRT4dcKxPy5GbZBELcxag@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Thanks to All that made Chirp possible! Never knew there were so many.
Regards,
WT
Real heroes do not wear capes. They wear dog tags, turnout gear, and badges!
On Tue, Jul 3, 2018 at 2:50 PM, John La <Johnla@usa.net> wrote:
>
>
> *Thank you* to Team CHIRP.
> An invaluable service to the Amateur Radio community.
>
> John ?Miklor? K3NXU
>
> http://www.miklor.com
>
> http://www.miklor.com/DMR/
>
>
>
>
>
> *From:* chirp_users-bounces@intrepid.danplanet.com [mailto:
> chirp_users-bounces@intrepid.danplanet.com] *On Behalf Of *Barry K
> *Sent:* Tuesday, July 3, 2018 2:32 PM
>
> *To:* Discussion of CHIRP
> *Subject:* Re: [chirp_users] Chirp began ten years ago today...
>
>
>
> *yes this program has saved a lot of hours*
>
> *thanks for it*
>
>
>
> *Barry** aka * *N2NVP, Pass-Pres GCARC, retired Vol Lt 884, CERT, SKYWARN
> 128A*
>
>
>
>
> ------------------------------
>
> *From:* chirp_users-bounces@intrepid.danplanet.com <
> chirp_users-bounces@intrepid.danplanet.com> on behalf of Norman Sebern <
> nsebern14@gmail.com>
> *Sent:* Tuesday, July 3, 2018 10:38 AM
> *To:* Discussion of CHIRP
> *Subject:* Re: [chirp_users] Chirp began ten years ago today...
>
>
>
> Thank YOU.
>
>
>
>
>
>
>
> On Tue, Jul 3, 2018, 7:32 AM Frank <k1hlz@pcicon.net> wrote:
>
> Congratulations on reaching your 10 year milestone with such a great piece
> of software!
> As a fairly new Ham, it's made my life a lot easier.
> Thank you!
>
> 73s
> Frank
> K1HLZ
>
> On July 3, 2018 9:24:44 AM EDT, Dan Smith <dsmith@danplanet.com> wrote:
>
> Hi all,
>
> I just wanted to share a milestone in the CHIRP project with the community. Ten years ago today, on July 3rd 2008, I made the first commit to the repository which started the chirp project:
>
> https://chirp.danplanet.com/projects/chirp/repository/revisions/31cfb1a376fb
>
> It was just a rough bit of code that could talk to an Icom IC-92AD and I was apparently thinking of calling it "repidr". I do not recall what that was supposed to stand for, but by July 16th I had renamed it to CHIRP:
>
> https://chirp.danplanet.com/projects/chirp/repository/revisions/646c121a847b
>
> By July 19th, I was ready to make something available, which was just able to read and write CSV files, and talk to Icom IC-9x radios and the ID-800H. This was the first version 0.1.1:
>
> https://chirp.danplanet.com/projects/chirp/repository/revisions/1428729c41b7
>
> I still remember the large stack of paper on the corner of my desk where I had written out tons of hex, all in pencil, erased and re-written many times, trying to decode the first few radio memories and looking for patterns to make it easier.
>
> The project has come a long way since then, largely due to the help and involvement of other volunteers and users. While the first release supported two radio models, the latest one supports 228 distinct models, with more if you count the many clones that exist. The users mailing list has a fairly amazing 2892 people subscribed, from all over the world, representing a tiny fraction of the total user base.
>
> So, I just want to thank all the people who have made CHIRP possible and successful. Especially contributors of code, bug reports, and test reports, but also people who have spent hours on this list helping others and being the support system that allows volunteer developers to focus on what they do best. Thanks to anyone who has ever sent a donation, as well as the commercial outfits who have contributed radios and other help. There are too many to name, but BaofengTech, BlueMax49ers, and Jetstream are a few that come to mind as having a substantial impact.
>
> At the end of this email is a very rough list of all the code contributors to the project, extracted from the repository with minimal attempts to squash some duplicates. These are the rock stars that have gotten us to where we are today, so please join me in thanking them for spending their nights and weekends making this project the success that it is today!
>
> --Dan
>
>
> Commits Contributor
> -------|
>
> ------------------------------
>
>
> 1865 Dan Smith
> 240 Jim Unroe
> 189 Tom Hayward
> 188 Marco Filippi
> 137 Zach Welch
> 59 Jens Jensen
> 58 Pavel Milanes (CO7WT)
> 26 K. Arvanitis
> 15 Tyler Tidman
> 12 Richard Cochran
> 10 Dan Drogichen
> 8 Sean Burford
> 8 Rick Farina
> 8 Michael Wagner
> 8 Eric Allen
> 8 Brian Dickman
> 7 SASANO Takayoshi
> 6 Vernon Mauery
> 6 Ron Wellsted
> 6 Rhett Robinson
> 6 Ray Cielencki
> 5 Rick DeWitt
> 5 Keith Williamson
> 4 Tim Smith
> 4 Nicolas Pike
> 4 Mathias Weyland
> 4 IT2 Stuart Blake Tener, USNR (N3GWG)
> 4 David Griffith
> 4 Chris Fosnight
> 4 Angus Ainslie
> 4 Alexey K
> 3 Rick Farina
> 3 Leo B?rring
> 3 Jon K Hellan
> 3 Christopher Hoover
> 3 Ben Smith
> 2 Richard Birch
> 2 Nathan Crapo
> 2 Michal Demin
> 2 Louie Ilievski
> 2 Johan Adler
> 2 Dean Gibson
> 2 Cody P Schafer
> 1 Windsor Schmidt
> 1 Wade Simmons
> 1 Stuart Tener
> 1 Steve Conklin
> 1 Ryan Tourge K2RRT x
> 1 Robert Terzi
> 1 Robert Morris
> 1 Patrik Nilsson
> 1 nytowl
> 1 Nolan Darilek
> 1 nicolas jon pike
> 1 Mike Pittaro
> 1 Michal D
> 1 Michael Lippold
> 1 Mark Adams
> 1 loudawgucr@gmail.com
> 1 Krystian SP6IT
> 1 kc1ckh@arrl.net
> 1 Jeremy McDermond
> 1 James Lee N1DDK
> 1 Imuli
> 1 Eric Dropps
> 1 Ed Santiago
> 1 Declan Rieb
> 1 David Fannin
> 1 Dave Allan
> 1 Dale Tyler
> 1 Charles Stewart
> 1 Brett Bump
> 1 Brad Ackerman
> 1 Attilio Pannella
> 1 Andrew
> 1 Adam Coddington
> 1 ac2lq
> 1 Aaron Pelly
>
> ------------------------------
>
>
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to FRANK G at k1hlz@pcicon.net
> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
>
>
> --
> Sent from my Android device with K-9 Mail. Please excuse my brevity.
>
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Norman Sebern at nsebern14@gmail.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> 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 WT at wn3lif@gmail.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/ea5689fe/attachment-0001.html
------------------------------
Message: 7
Date: Tue, 3 Jul 2018 19:08:19 -0400 (EDT)
From: "Nigel A. Gunn G8IFF/W8IFF" <nigel@ngunn.net>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>,
imatglamis <imatglamis@gmail.com>
Message-ID: <677469876.85416.1530659299549@email.1and1.com>
Content-Type: text/plain; charset="utf-8"
Your frequency doesn't conform to an acceptable frequency step?
> On 03 July 2018 at 14:50 imatglamis <imatglamis@gmail.com> wrote:
>
> I just trimmed off all the punctuation spaces and made names 8 characters or less. Same problem, it imports and shows channels 0-34 fine but stops at 34 with errors:
>
> Line 35: [rtone] could not convert string to float:
>
> Line 36: [rtone] could not convert string to float:
>
> Line 37: [rtone] could not convert string to float:
>
> Line 38: [rtone] could not convert string to float:
> ...
>
> to the end of the list just after channel 70cm Cal:
>
> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
>
> Something is happening here between 33 and 34.
> _______________________________________________
> 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 nigel@ngunn.net
> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
>
Nigel A. Gunn, 1865 El Camino Drive, Xenia, OH 45385-1115, USA. tel +1 937 825 5032
Amateur Radio G8IFF W8IFF (was KC8NHF 9H3GN), e-mail nigel@ngunn.net www http://www.ngunn.net
Member of ARRL, QRPARCI #11644, SOC #548, Flying Pigs QRP Club International #385,
Dayton ARA #2128, AMSAT-NA LM-1691, GCARES, EAA382.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/28a00e15/attachment-0001.html
------------------------------
Message: 8
Date: Tue, 3 Jul 2018 16:30:34 -0700
From: Patricia Wilson <wilson.pr.gm@gmail.com>
Subject: [chirp_users] fail programming a Jetstream JT270M
To: chirp_users@intrepid.danplanet.com
Message-ID:
<CAAwRy+ROdfSYwuKNceArVo3WsCOi+zCQTnr8bn9zrdrb=nZNVA@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
I am attempting to program a Jetstream JT270M using a Prolific cable.
The CHIRP Error message pop-up says
An error has occurred
could not open com4 (Error 2) The system can not find the file specified.
In the WIN10 Device manager listing for COM4 it says
Driver provide is prolific
Date is 10-17-2017
Version is 3.8.18.0
Device status is
This device cannot start. (Code 10)
A device which does not exist was specified.
Can anyone help me out with this?
--
Patricia Wilson
Apache Junction, AZ
Member NRA, ARRL
WB8DXX (Extra)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/b3a2feed/attachment-0001.html
------------------------------
Message: 9
Date: Tue, 3 Jul 2018 19:39:39 -0400
From: Jim Unroe <rock.unroe@gmail.com>
Subject: Re: [chirp_users] fail programming a Jetstream JT270M
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CADnO8U5mLqAqAvcaHt8ZAJ_24ZWCzQqxK4GZ0cKruK39jvMaEg@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
> The CHIRP Error message pop-up says
>
> An error has occurred
> could not open com4 (Error 2) The system can not find the file specified.
>
> In the WIN10 Device manager listing for COM4 it says
> Driver provide is prolific
> Date is 10-17-2017
> Version is 3.8.18.0
>
> Device status is
> This device cannot start. (Code 10)
> A device which does not exist was specified.
>
> Can anyone help me out with this?
This is a common problem, You must download, install and select an
older Prolific device driver (V3.2.0.0 ). This page has a link to the
device driver and instructions for installing it.
http://www.miklor.com/COM/UV_Drivers.php
Jim KC9HI
------------------------------
Message: 10
Date: Tue, 3 Jul 2018 17:27:20 -0700
From: Patricia Wilson <wilson.pr.gm@gmail.com>
Subject: Re: [chirp_users] fail programming a Jetstream JT270M
To: chirp_users@intrepid.danplanet.com
Message-ID:
<CAAwRy+Tp69WhocVuPLVtTjRHA+sD1Dxb3WcG=y-mEbN7nnV0uw@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
I had tried that and somehow screwed up. This time around SUCCESS!!! Thank
you ever so much and
CONGRATS to Dan on the 10th anniversary.
On Tue, Jul 3, 2018 at 4:40 PM Jim Unroe <rock.unroe@gmail.com> wrote:
> > The CHIRP Error message pop-up says
> >
> > An error has occurred
> > could not open com4 (Error 2) The system can not find the file specified.
> >
> > In the WIN10 Device manager listing for COM4 it says
> > Driver provide is prolific
> > Date is 10-17-2017
> > Version is 3.8.18.0
> >
> > Device status is
> > This device cannot start. (Code 10)
> > A device which does not exist was specified.
> >
> > Can anyone help me out with this?
>
> This is a common problem, You must download, install and select an
> older Prolific device driver (V3.2.0.0 ). This page has a link to the
> device driver and instructions for installing it.
>
> http://www.miklor.com/COM/UV_Drivers.php
>
> Jim KC9HI
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Patricia Wilson at wilson.pr.gm@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscribe@intrepid.danplanet.com
>
--
Patricia Wilson
Apache Junction, AZ
Member NRA, ARRL
WB8DXX (Extra)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/93a7464e/attachment-0001.html
------------------------------
Message: 11
Date: Tue, 3 Jul 2018 22:12:41 -0500
From: Dennis Wage <dwage@dwage.com>
Subject: Re: [chirp_users] CSV Partial Load
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CAE1d062WotJGkESaQTQ0RqwQxy_hCh8L-xU52YWUAXVg667XzQ@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
??
Columns G, H, I, J, and L require data be in the CSV file. Of these columns
some will produce a Chirp error but if you continue Chirp will kindly fill
in dummy data. And some of the columns require data, that if not there will
stop the import.
I just don't have time to research and tell you which. But simply put, put
data in all fields.
This will work:
88.5 88.5 23 NN FM 5 and so will this:
67 67 23 NN FM 5
Your rTone on channel 57, line 58 is wrong too.
Dennis M. Wage (W9BOQ)
245 Corum Hill Road
Castalian Springs, TN 37031
(615) 310-4242 Cell
(615) 562-5128 Home
http://hammondb3organ.net
http://overdubs.net
On Tue, Jul 3, 2018 at 6:08 PM, Nigel A. Gunn G8IFF/W8IFF <nigel@ngunn.net>
wrote:
> Your frequency doesn't conform to an acceptable frequency step?
>
>
> On 03 July 2018 at 14:50 imatglamis <imatglamis@gmail.com> wrote:
>
> I just trimmed off all the punctuation spaces and made names 8 characters
> or less. Same problem, it imports and shows channels 0-34 fine but stops
> at 34 with errors:
>
> Line 35: [rtone] could not convert string to float:
>
> Line 36: [rtone] could not convert string to float:
>
> Line 37: [rtone] could not convert string to float:
>
> Line 38: [rtone] could not convert string to float:
> ...
>
> to the end of the list just after channel 70cm Cal:
>
> 31,WX9,161.775,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 32,WX10,163.275,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 33,70cm Cal,446,,0,,88.5,88.5,23,NN,FM,5,,,,,,
> 34,BAJA PIT,154.98,,0,,,,,,FM,,,,,,,
> 35,BECKER1,153.62,,0,,,,,,FM,,,,,,,
> 36,BECKER2,153.245,,0,,,,,,FM,,,,,,,
>
> Something is happening here between 33 and 34.
> _______________________________________________
> 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 nigel@ngunn.net
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
>
> Nigel A. Gunn, 1865 El Camino Drive, Xenia, OH 45385-1115, USA. tel +1 937
> 825 5032
> Amateur Radio G8IFF W8IFF (was KC8NHF 9H3GN), e-mail nigel@ngunn.net www
> http://www.ngunn.net
> Member of ARRL, QRPARCI #11644, SOC #548, Flying Pigs QRP Club
> International #385,
> Dayton ARA #2128, AMSAT-NA LM-1691, GCARES, EAA382.
>
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Dennis Wage at dwage@dwage.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/c4cdd456/attachment-0001.html
------------------------------
Message: 12
Date: Tue, 3 Jul 2018 23:51:12 -0500
From: Chuck Hast <kp4djt@gmail.com>
Subject: Re: [chirp_users] Chirp began ten years ago today...
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CAN9xdP80-orjA2bSoXvSeMaGkD_SwiDLzEbUwc8bb40FNEDQtg@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Dan,
First a big hat off to you and all on that list for the great work and
piece of art.
It is funny, I was working in Kalama WA in a newly opened glass plant, the
company that
I worked for had sold them the fore hearths and glass container inspection
machines. My
job was to bring those machines on line and then train and shepherd those
folks in the
inspections of the bottles. I had tons of overtime so I toddled down to HRO
in PDX and
got me a 92AT. That was I think in late Aug 2008 or Sept. I know it had not
started raining
yet and the weather was still good. It was one of the folks at HRO that
aimed me your
direction I believe it was. I did not know that the project was that new. I
do not remember
when I downloaded the first code, but it worked on that 92AT (I still have
it).
By way I now live in Oklahoma, but I sure miss the NW...
Looks like I joined the list on 20 Jun 2009.
On Tue, Jul 3, 2018 at 5:53 PM W. T. Jones <wn3lif@gmail.com> wrote:
> Thanks to All that made Chirp possible! Never knew there were so many.
>
>
>
> Regards,
>
> WT
> Real heroes do not wear capes. They wear dog tags, turnout gear, and
> badges!
>
> On Tue, Jul 3, 2018 at 2:50 PM, John La <Johnla@usa.net> wrote:
>
>>
>>
>> *Thank you* to Team CHIRP.
>> An invaluable service to the Amateur Radio community.
>>
>> John ?Miklor? K3NXU
>>
>> http://www.miklor.com
>>
>> http://www.miklor.com/DMR/
>>
>>
>>
>>
>>
>> *From:* chirp_users-bounces@intrepid.danplanet.com [mailto:
>> chirp_users-bounces@intrepid.danplanet.com] *On Behalf Of *Barry K
>> *Sent:* Tuesday, July 3, 2018 2:32 PM
>>
>> *To:* Discussion of CHIRP
>> *Subject:* Re: [chirp_users] Chirp began ten years ago today...
>>
>>
>>
>> *yes this program has saved a lot of hours*
>>
>> *thanks for it*
>>
>>
>>
>> *Barry** aka * *N2NVP, Pass-Pres GCARC, retired Vol Lt 884, CERT,
>> SKYWARN 128A*
>>
>>
>>
>>
>> ------------------------------
>>
>> *From:* chirp_users-bounces@intrepid.danplanet.com <
>> chirp_users-bounces@intrepid.danplanet.com> on behalf of Norman Sebern <
>> nsebern14@gmail.com>
>> *Sent:* Tuesday, July 3, 2018 10:38 AM
>> *To:* Discussion of CHIRP
>> *Subject:* Re: [chirp_users] Chirp began ten years ago today...
>>
>>
>>
>> Thank YOU.
>>
>>
>>
>>
>>
>>
>>
>> On Tue, Jul 3, 2018, 7:32 AM Frank <k1hlz@pcicon.net> wrote:
>>
>> Congratulations on reaching your 10 year milestone with such a great
>> piece of software!
>> As a fairly new Ham, it's made my life a lot easier.
>> Thank you!
>>
>> 73s
>> Frank
>> K1HLZ
>>
>> On July 3, 2018 9:24:44 AM EDT, Dan Smith <dsmith@danplanet.com> wrote:
>>
>> Hi all,
>>
>> I just wanted to share a milestone in the CHIRP project with the community. Ten years ago today, on July 3rd 2008, I made the first commit to the repository which started the chirp project:
>>
>> https://chirp.danplanet.com/projects/chirp/repository/revisions/31cfb1a376fb
>>
>> It was just a rough bit of code that could talk to an Icom IC-92AD and I was apparently thinking of calling it "repidr". I do not recall what that was supposed to stand for, but by July 16th I had renamed it to CHIRP:
>>
>> https://chirp.danplanet.com/projects/chirp/repository/revisions/646c121a847b
>>
>> By July 19th, I was ready to make something available, which was just able to read and write CSV files, and talk to Icom IC-9x radios and the ID-800H. This was the first version 0.1.1:
>>
>> https://chirp.danplanet.com/projects/chirp/repository/revisions/1428729c41b7
>>
>> I still remember the large stack of paper on the corner of my desk where I had written out tons of hex, all in pencil, erased and re-written many times, trying to decode the first few radio memories and looking for patterns to make it easier.
>>
>> The project has come a long way since then, largely due to the help and involvement of other volunteers and users. While the first release supported two radio models, the latest one supports 228 distinct models, with more if you count the many clones that exist. The users mailing list has a fairly amazing 2892 people subscribed, from all over the world, representing a tiny fraction of the total user base.
>>
>> So, I just want to thank all the people who have made CHIRP possible and successful. Especially contributors of code, bug reports, and test reports, but also people who have spent hours on this list helping others and being the support system that allows volunteer developers to focus on what they do best. Thanks to anyone who has ever sent a donation, as well as the commercial outfits who have contributed radios and other help. There are too many to name, but BaofengTech, BlueMax49ers, and Jetstream are a few that come to mind as having a substantial impact.
>>
>> At the end of this email is a very rough list of all the code contributors to the project, extracted from the repository with minimal attempts to squash some duplicates. These are the rock stars that have gotten us to where we are today, so please join me in thanking them for spending their nights and weekends making this project the success that it is today!
>>
>> --Dan
>>
>>
>> Commits Contributor
>> -------|
>>
>> ------------------------------
>>
>>
>> 1865 Dan Smith
>> 240 Jim Unroe
>> 189 Tom Hayward
>> 188 Marco Filippi
>> 137 Zach Welch
>> 59 Jens Jensen
>> 58 Pavel Milanes (CO7WT)
>> 26 K. Arvanitis
>> 15 Tyler Tidman
>> 12 Richard Cochran
>> 10 Dan Drogichen
>> 8 Sean Burford
>> 8 Rick Farina
>> 8 Michael Wagner
>> 8 Eric Allen
>> 8 Brian Dickman
>> 7 SASANO Takayoshi
>> 6 Vernon Mauery
>> 6 Ron Wellsted
>> 6 Rhett Robinson
>> 6 Ray Cielencki
>> 5 Rick DeWitt
>> 5 Keith Williamson
>> 4 Tim Smith
>> 4 Nicolas Pike
>> 4 Mathias Weyland
>> 4 IT2 Stuart Blake Tener, USNR (N3GWG)
>> 4 David Griffith
>> 4 Chris Fosnight
>> 4 Angus Ainslie
>> 4 Alexey K
>> 3 Rick Farina
>> 3 Leo B?rring
>> 3 Jon K Hellan
>> 3 Christopher Hoover
>> 3 Ben Smith
>> 2 Richard Birch
>> 2 Nathan Crapo
>> 2 Michal Demin
>> 2 Louie Ilievski
>> 2 Johan Adler
>> 2 Dean Gibson
>> 2 Cody P Schafer
>> 1 Windsor Schmidt
>> 1 Wade Simmons
>> 1 Stuart Tener
>> 1 Steve Conklin
>> 1 Ryan Tourge K2RRT x
>> 1 Robert Terzi
>> 1 Robert Morris
>> 1 Patrik Nilsson
>> 1 nytowl
>> 1 Nolan Darilek
>> 1 nicolas jon pike
>> 1 Mike Pittaro
>> 1 Michal D
>> 1 Michael Lippold
>> 1 Mark Adams
>> 1 loudawgucr@gmail.com
>> 1 Krystian SP6IT
>> 1 kc1ckh@arrl.net
>> 1 Jeremy McDermond
>> 1 James Lee N1DDK
>> 1 Imuli
>> 1 Eric Dropps
>> 1 Ed Santiago
>> 1 Declan Rieb
>> 1 David Fannin
>> 1 Dave Allan
>> 1 Dale Tyler
>> 1 Charles Stewart
>> 1 Brett Bump
>> 1 Brad Ackerman
>> 1 Attilio Pannella
>> 1 Andrew
>> 1 Adam Coddington
>> 1 ac2lq
>> 1 Aaron Pelly
>>
>> ------------------------------
>>
>>
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to FRANK G at k1hlz@pcicon.net
>> To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
>>
>>
>> --
>> Sent from my Android device with K-9 Mail. Please excuse my brevity.
>>
>> _______________________________________________
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to Norman Sebern at nsebern14@gmail.com
>> To unsubscribe, send an email to
>> chirp_users-unsubscribe@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 WT at wn3lif@gmail.com
>> To unsubscribe, send an email to
>> chirp_users-unsubscribe@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 Chuck Hast at kp4djt@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscribe@intrepid.danplanet.com
--
Chirp + Editcp + MD380Tools on Linux
Celestial!!!
Chuck -- KP4DJT
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180703/4a16ee0c/attachment-0001.html
------------------------------
Message: 13
Date: Wed, 4 Jul 2018 06:24:13 -0600
From: <mike-2007@elp.rr.com>
Subject: Re: [chirp_users] Chirp began ten years ago today...
To: "'Discussion of CHIRP'" <chirp_users@intrepid.danplanet.com>
Message-ID: <009e01d41391$ed23a970$c76afc50$@elp.rr.com>
Content-Type: text/plain; charset="utf-8"
Congratulations, and thanks for all the hard work. Few will actually realize the dedication it takes to do this for 10 years, and without profit.
Vy73 ? Mike ? KD5KC
El Paso, Texas ? DM61rt
-----Original Message-----
From: chirp_users-bounces@intrepid.danplanet.com <chirp_users-bounces@intrepid.danplanet.com> On Behalf Of Dan Smith
Sent: Tuesday, July 3, 2018 7:25 AM
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Subject: [chirp_users] Chirp began ten years ago today...
Hi all,
I just wanted to share a milestone in the CHIRP project with the community. Ten years ago today, on July 3rd 2008, I made the first commit to the repository which started the chirp project:
https://chirp.danplanet.com/projects/chirp/repository/revisions/31cfb1a376fb
It was just a rough bit of code that could talk to an Icom IC-92AD and I was apparently thinking of calling it "repidr". I do not recall what that was supposed to stand for, but by July 16th I had renamed it to CHIRP:
https://chirp.danplanet.com/projects/chirp/repository/revisions/646c121a847b
By July 19th, I was ready to make something available, which was just able to read and write CSV files, and talk to Icom IC-9x radios and the ID-800H. This was the first version 0.1.1:
https://chirp.danplanet.com/projects/chirp/repository/revisions/1428729c41b7
I still remember the large stack of paper on the corner of my desk where I had written out tons of hex, all in pencil, erased and re-written many times, trying to decode the first few radio memories and looking for patterns to make it easier.
The project has come a long way since then, largely due to the help and involvement of other volunteers and users. While the first release supported two radio models, the latest one supports 228 distinct models, with more if you count the many clones that exist. The users mailing list has a fairly amazing 2892 people subscribed, from all over the world, representing a tiny fraction of the total user base.
So, I just want to thank all the people who have made CHIRP possible and successful. Especially contributors of code, bug reports, and test reports, but also people who have spent hours on this list helping others and being the support system that allows volunteer developers to focus on what they do best. Thanks to anyone who has ever sent a donation, as well as the commercial outfits who have contributed radios and other help. There are too many to name, but BaofengTech, BlueMax49ers, and Jetstream are a few that come to mind as having a substantial impact.
At the end of this email is a very rough list of all the code contributors to the project, extracted from the repository with minimal attempts to squash some duplicates. These are the rock stars that have gotten us to where we are today, so please join me in thanking them for spending their nights and weekends making this project the success that it is today!
--Dan
Commits Contributor
-------|--------------------------------------------------
1865 Dan Smith
240 Jim Unroe
189 Tom Hayward
188 Marco Filippi
137 Zach Welch
59 Jens Jensen
58 Pavel Milanes (CO7WT)
26 K. Arvanitis
15 Tyler Tidman
12 Richard Cochran
10 Dan Drogichen
8 Sean Burford
8 Rick Farina
8 Michael Wagner
8 Eric Allen
8 Brian Dickman
7 SASANO Takayoshi
6 Vernon Mauery
6 Ron Wellsted
6 Rhett Robinson
6 Ray Cielencki
5 Rick DeWitt
5 Keith Williamson
4 Tim Smith
4 Nicolas Pike
4 Mathias Weyland
4 IT2 Stuart Blake Tener, USNR (N3GWG)
4 David Griffith
4 Chris Fosnight
4 Angus Ainslie
4 Alexey K
3 Rick Farina
3 Leo B?rring
3 Jon K Hellan
3 Christopher Hoover
3 Ben Smith
2 Richard Birch
2 Nathan Crapo
2 Michal Demin
2 Louie Ilievski
2 Johan Adler
2 Dean Gibson
2 Cody P Schafer
1 Windsor Schmidt
1 Wade Simmons
1 Stuart Tener
1 Steve Conklin
1 Ryan Tourge K2RRT x
1 Robert Terzi
1 Robert Morris
1 Patrik Nilsson
1 nytowl
1 Nolan Darilek
1 nicolas jon pike
1 Mike Pittaro
1 Michal D
1 Michael Lippold
1 Mark Adams
1 loudawgucr@gmail.com
1 Krystian SP6IT
1 kc1ckh@arrl.net
1 Jeremy McDermond
1 James Lee N1DDK
1 Imuli
1 Eric Dropps
1 Ed Santiago
1 Declan Rieb
1 David Fannin
1 Dave Allan
1 Dale Tyler
1 Charles Stewart
1 Brett Bump
1 Brad Ackerman
1 Attilio Pannella
1 Andrew
1 Adam Coddington
1 ac2lq
1 Aaron Pelly
_______________________________________________
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to mike-2007@elp.rr.com at mike-2007@elp.rr.com To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
------------------------------
Message: 14
Date: Wed, 4 Jul 2018 07:48:57 -0500
From: Dennis Wage <dwage@dwage.com>
Subject: Re: [chirp_users] Chirp began ten years ago today...
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CAE1d061W+AKz-b5bv+5yKMzAAEH-5Fo_400e69OH4YjPBhAndA@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Don't be that guy. Donate now here:
https://chirp.danplanet.com/projects/chirp/wiki/Download
Dennis M. Wage (W9BOQ)
245 Corum Hill Road
Castalian Springs, TN 37031
(615) 310-4242 Cell
(615) 562-5128 Home
http://hammondb3organ.net
http://overdubs.net
On Wed, Jul 4, 2018 at 7:24 AM, <mike-2007@elp.rr.com> wrote:
> Congratulations, and thanks for all the hard work. Few will actually
> realize the dedication it takes to do this for 10 years, and without profit.
>
> Vy73 ? Mike ? KD5KC
> El Paso, Texas ? DM61rt
>
>
>
> -----Original Message-----
> From: chirp_users-bounces@intrepid.danplanet.com <
> chirp_users-bounces@intrepid.danplanet.com> On Behalf Of Dan Smith
> Sent: Tuesday, July 3, 2018 7:25 AM
> To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
> Subject: [chirp_users] Chirp began ten years ago today...
>
> Hi all,
>
> I just wanted to share a milestone in the CHIRP project with the
> community. Ten years ago today, on July 3rd 2008, I made the first commit
> to the repository which started the chirp project:
>
> https://chirp.danplanet.com/projects/chirp/repository/
> revisions/31cfb1a376fb
>
> It was just a rough bit of code that could talk to an Icom IC-92AD and I
> was apparently thinking of calling it "repidr". I do not recall what that
> was supposed to stand for, but by July 16th I had renamed it to CHIRP:
>
> https://chirp.danplanet.com/projects/chirp/repository/
> revisions/646c121a847b
>
> By July 19th, I was ready to make something available, which was just able
> to read and write CSV files, and talk to Icom IC-9x radios and the ID-800H.
> This was the first version 0.1.1:
>
> https://chirp.danplanet.com/projects/chirp/repository/
> revisions/1428729c41b7
>
> I still remember the large stack of paper on the corner of my desk where I
> had written out tons of hex, all in pencil, erased and re-written many
> times, trying to decode the first few radio memories and looking for
> patterns to make it easier.
>
> The project has come a long way since then, largely due to the help and
> involvement of other volunteers and users. While the first release
> supported two radio models, the latest one supports 228 distinct models,
> with more if you count the many clones that exist. The users mailing list
> has a fairly amazing 2892 people subscribed, from all over the world,
> representing a tiny fraction of the total user base.
>
> So, I just want to thank all the people who have made CHIRP possible and
> successful. Especially contributors of code, bug reports, and test reports,
> but also people who have spent hours on this list helping others and being
> the support system that allows volunteer developers to focus on what they
> do best. Thanks to anyone who has ever sent a donation, as well as the
> commercial outfits who have contributed radios and other help. There are
> too many to name, but BaofengTech, BlueMax49ers, and Jetstream are a few
> that come to mind as having a substantial impact.
>
> At the end of this email is a very rough list of all the code contributors
> to the project, extracted from the repository with minimal attempts to
> squash some duplicates. These are the rock stars that have gotten us to
> where we are today, so please join me in thanking them for spending their
> nights and weekends making this project the success that it is today!
>
> --Dan
>
>
> Commits Contributor
> -------|--------------------------------------------------
> 1865 Dan Smith
> 240 Jim Unroe
> 189 Tom Hayward
> 188 Marco Filippi
> 137 Zach Welch
> 59 Jens Jensen
> 58 Pavel Milanes (CO7WT)
> 26 K. Arvanitis
> 15 Tyler Tidman
> 12 Richard Cochran
> 10 Dan Drogichen
> 8 Sean Burford
> 8 Rick Farina
> 8 Michael Wagner
> 8 Eric Allen
> 8 Brian Dickman
> 7 SASANO Takayoshi
> 6 Vernon Mauery
> 6 Ron Wellsted
> 6 Rhett Robinson
> 6 Ray Cielencki
> 5 Rick DeWitt
> 5 Keith Williamson
> 4 Tim Smith
> 4 Nicolas Pike
> 4 Mathias Weyland
> 4 IT2 Stuart Blake Tener, USNR (N3GWG)
> 4 David Griffith
> 4 Chris Fosnight
> 4 Angus Ainslie
> 4 Alexey K
> 3 Rick Farina
> 3 Leo B?rring
> 3 Jon K Hellan
> 3 Christopher Hoover
> 3 Ben Smith
> 2 Richard Birch
> 2 Nathan Crapo
> 2 Michal Demin
> 2 Louie Ilievski
> 2 Johan Adler
> 2 Dean Gibson
> 2 Cody P Schafer
> 1 Windsor Schmidt
> 1 Wade Simmons
> 1 Stuart Tener
> 1 Steve Conklin
> 1 Ryan Tourge K2RRT x
> 1 Robert Terzi
> 1 Robert Morris
> 1 Patrik Nilsson
> 1 nytowl
> 1 Nolan Darilek
> 1 nicolas jon pike
> 1 Mike Pittaro
> 1 Michal D
> 1 Michael Lippold
> 1 Mark Adams
> 1 loudawgucr@gmail.com
> 1 Krystian SP6IT
> 1 kc1ckh@arrl.net
> 1 Jeremy McDermond
> 1 James Lee N1DDK
> 1 Imuli
> 1 Eric Dropps
> 1 Ed Santiago
> 1 Declan Rieb
> 1 David Fannin
> 1 Dave Allan
> 1 Dale Tyler
> 1 Charles Stewart
> 1 Brett Bump
> 1 Brad Ackerman
> 1 Attilio Pannella
> 1 Andrew
> 1 Adam Coddington
> 1 ac2lq
> 1 Aaron Pelly
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to mike-2007@elp.rr.com at mike-2007@elp.rr.com To
> unsubscribe, send an email to chirp_users-unsubscribe@
> 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 Dennis Wage at dwage@dwage.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/4c16af16/attachment-0001.html
------------------------------
Message: 15
Date: Wed, 04 Jul 2018 10:48:54 -0300
From: survivor@cryptolab.net
Subject: [chirp_users] How to empty or null tone channel in Chirp?
To: chirp_users@intrepid.danplanet.com
Message-ID: <d8d337ecd37909ed5276af33628b3181@cryptolab.net>
Content-Type: text/plain; charset="us-ascii"
When I use Chirp to set radio channels, there are many columns I cannot
let empty, unless I cannot save it or uploat to radio. Most repeaters
here have no subtone and I cannot let tone column empty, or null or
zero. In chirp, there is a preseted tone list from 67.0 to 254.1. When I
power on the transceiver in frequency mode and ajust to repeater
channel, I can hear people talking normally. When I power on in channel
mode and choose the respective channel with the same frequency, I cannot
hear people talking. Pearhaps, tone values are wrong and in most cases
they are unnecessary. How to I solve this?
I have a Baofeng UV-82 WITH 8 Watts (HP).
Firmware
3 KEY: N822413
6 KEY: 140902N
TKS
PU4YOU
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/290ff6da/attachment-0001.html
------------------------------
Message: 16
Date: Wed, 4 Jul 2018 09:06:29 -0500
From: Dennis Wage <dwage@dwage.com>
Subject: Re: [chirp_users] How to empty or null tone channel in Chirp?
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CAE1d062sy4JN0ySc=5EH0yfu_w10HzbxEm52hqG7Ju+n4Ph-5A@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
You should be able to leave the "TONE" column empty, which means the values
in rToneFreq, cToneFreq will be ignored. And like you said those columns
cannot be empty. If you do leave them empty, Chirp by default will add 88.5
as extraneous data that will be ignored.
Hope this helps.
DW
Dennis M. Wage (W9BOQ)
245 Corum Hill Road
Castalian Springs, TN 37031
(615) 310-4242 Cell
(615) 562-5128 Home
http://hammondb3organ.net
http://overdubs.net
On Wed, Jul 4, 2018 at 8:48 AM, <survivor@cryptolab.net> wrote:
>
> When I use Chirp to set radio channels, there are many columns I cannot
> let empty, unless I cannot save it or uploat to radio. Most repeaters here
> have no subtone and I cannot let tone column empty, or null or zero. In
> chirp, there is a preseted tone list from 67.0 to 254.1. When I power on
> the transceiver in frequency mode and ajust to repeater channel, I can hear
> people talking normally. When I power on in channel mode and choose the
> respective channel with the same frequency, I cannot hear people talking.
> Pearhaps, tone values are wrong and in most cases they are unnecessary. How
> to I solve this?
> I have a Baofeng UV-82 WITH 8 Watts (HP).
> Firmware
> 3 KEY: N822413
> 6 KEY: 140902N
>
> TKS
>
> PU4YOU
>
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Dennis Wage at dwage@dwage.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/dc44c8b2/attachment-0001.html
------------------------------
Message: 17
Date: Wed, 4 Jul 2018 14:06:50 +0000
From: neil b <ne.b@hotmail.co.uk>
Subject: Re: [chirp_users] How to empty or null tone channel in Chirp?
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CWLP265MB0450E66ADC3E013A75B0F454D5410@CWLP265MB0450.GBRP265.PROD.OUTLOOK.COM>
Content-Type: text/plain; charset="iso-8859-1"
typical uk repeater
first column
freq - 145.625
name - gb3nw
tone mode - tone
tone - 67
next few are empty
duplex is - (minus)
offset - 0.6
mode -fm
power - high
----- Original Message -----
From: survivor@cryptolab.net<mailto:survivor@cryptolab.net>
To: chirp_users@intrepid.danplanet.com<mailto:chirp_users@intrepid.danplanet.com>
Sent: Wednesday, July 04, 2018 2:48 PM
Subject: [chirp_users] How to empty or null tone channel in Chirp?
When I use Chirp to set radio channels, there are many columns I cannot let empty, unless I cannot save it or uploat to radio. Most repeaters here have no subtone and I cannot let tone column empty, or null or zero. In chirp, there is a preseted tone list from 67.0 to 254.1. When I power on the transceiver in frequency mode and ajust to repeater channel, I can hear people talking normally. When I power on in channel mode and choose the respective channel with the same frequency, I cannot hear people talking. Pearhaps, tone values are wrong and in most cases they are unnecessary. How to I solve this?
I have a Baofeng UV-82 WITH 8 Watts (HP).
Firmware
3 KEY: N822413
6 KEY: 140902N
TKS
PU4YOU
________________________________
_______________________________________________
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to m1cfk at ne.b@hotmail.co.uk
To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/554e074f/attachment-0001.html
------------------------------
Message: 18
Date: Wed, 4 Jul 2018 09:29:00 -0500
From: Dennis Wage <dwage@dwage.com>
Subject: Re: [chirp_users] How to empty or null tone channel in Chirp?
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CAE1d062Qh+2OiiFJbj1morNGNZB2v3y1oxsBGoBgxVCQC784GQ@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Dennis M. Wage (W9BOQ)
245 Corum Hill Road
Castalian Springs, TN 37031
(615) 310-4242 Cell
(615) 562-5128 Home
http://hammondb3organ.net
http://overdubs.net
On Wed, Jul 4, 2018 at 9:06 AM, neil b <ne.b@hotmail.co.uk> wrote:
> typical uk repeater
>
> first column
>
> freq - 145.625
> name - gb3nw
> tone mode - tone
> tone - 67
> next few are empty
> duplex is - (minus)
> offset - 0.6
> mode -fm
> power - high
>
>
>
>
> ----- Original Message -----
> *From:* survivor@cryptolab.net
> *To:* chirp_users@intrepid.danplanet.com
> *Sent:* Wednesday, July 04, 2018 2:48 PM
> *Subject:* [chirp_users] How to empty or null tone channel in Chirp?
>
>
> When I use Chirp to set radio channels, there are many columns I cannot
> let empty, unless I cannot save it or uploat to radio. Most repeaters here
> have no subtone and I cannot let tone column empty, or null or zero. In
> chirp, there is a preseted tone list from 67.0 to 254.1. When I power on
> the transceiver in frequency mode and ajust to repeater channel, I can hear
> people talking normally. When I power on in channel mode and choose the
> respective channel with the same frequency, I cannot hear people talking.
> Pearhaps, tone values are wrong and in most cases they are unnecessary. How
> to I solve this?
> I have a Baofeng UV-82 WITH 8 Watts (HP).
> Firmware
> 3 KEY: N822413
> 6 KEY: 140902N
>
> TKS
>
> PU4YOU
>
> ------------------------------
>
> _______________________________________________
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to m1cfk at ne.b@hotmail.co.uk
> To unsubscribe, send an email to chirp_users-unsubscribe@
> 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 Dennis Wage at dwage@dwage.com
> To unsubscribe, send an email to chirp_users-unsubscribe@
> intrepid.danplanet.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/3d3c8a83/attachment-0001.html
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 27035 bytes
Desc: not available
Url : http://intrepid.danplanet.com/pipermail/chirp_users/attachments/20180704/3d3c8a83/attachment-0001.png
------------------------------
Message: 19
Date: Wed, 4 Jul 2018 10:34:11 -0400
From: Jim Unroe <rock.unroe@gmail.com>
Subject: Re: [chirp_users] How to empty or null tone channel in Chirp?
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
Message-ID:
<CADnO8U50fk4qbNTrhLekxvrM7KWBD2+SAC-H=WXuhD454Kx+qQ@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
On Wed, Jul 4, 2018 at 9:48 AM, <survivor@cryptolab.net> wrote:
>
> When I use Chirp to set radio channels, there are many columns I cannot let
> empty, unless I cannot save it or uploat to radio. Most repeaters here have
> no subtone and I cannot let tone column empty, or null or zero. In chirp,
> there is a preseted tone list from 67.0 to 254.1. When I power on the
> transceiver in frequency mode and ajust to repeater channel, I can hear
> people talking normally. When I power on in channel mode and choose the
> respective channel with the same frequency, I cannot hear people talking.
> Pearhaps, tone values are wrong and in most cases they are unnecessary. How
> to I solve this?
> I have a Baofeng UV-82 WITH 8 Watts (HP).
> Firmware
> 3 KEY: N822413
> 6 KEY: 140902N
>
> TKS
>
> PU4YOU
Setting Tone Mode to "(None)" is the same has having menu 10 (R-DCS),
11 (R-CTCS), 12 (T-DCS) and 13 (T-CTCS) set to OFF. If the Tone,
ToneSql, DTCS Code, DTCS Rx Code DTCS Pol and Cross Mode columns don't
show up as blank, then click "View" in the menu bar and enable "Hide
unused fields" (which is the default on new CHIRP installations). Even
when this setting is not enabled, the values in these columns are
ignored.
The values in the columns mentioned above a only recognized when they
are enabled by the selected Tone Mode. And then only the columns
required by that mode are paid attention to. For example...
Tone Mode: Columns
(None):
Tone: Tone
TSQL: ToneSql
DTCS: DTCS Code, DTCS Pol
For more details review either of the "columns" guides linked here:
http://www.miklor.com/COM/UV_CHIRP.php#guides
Jim KC9HI
------------------------------
Message: 20
Date: Wed, 4 Jul 2018 09:55:20 -0500
From: Dennis Wage <dwage@dwage.com>
Subject: Re: [chirp_users] How to empty or null tone channel in Chirp?
To: Discussion of CHIRP <chirp_users@intrepid.danplanet.com>
M