Multiple Cop commands
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1 If so is this the right format and if not what would it be?
Yes, each pin needs a assigned command for on and again for off. You could execute a pattern inside a macro. ...mike/kb8jnm On 6/13/2018 7:19 PM, John Rudolph- N2YP wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be?
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
It seems to me it should look more like: [function] 991=cop,61,gpio1=0 992=cop,61,gpio4=1 993=cop,61,gpio5=0 [macro] 30=*991 *992 *993 # See Mike’s page, themidnightengineer.com Thanks, Bob k6ecm 73 Sent from my iPhone
On Jun 13, 2018, at 4:19 PM, John Rudolph- N2YP <John@n2yp.com> wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be? _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
Bob, I thought I was anonymous LOL Those old pages... I may have to go back and look... but afraid to since it gets hacked more than I wish to say. I use it more to record the latest hack techniques. anyway, this is from my actual command list with reference. Make sure you use long/longer numbers to avoid commend conflicts in the future and not loose future number possibilities. You can make sequence changes via grouped macro. 8910=cop,61,pp1=0 ;pport pin 1 off --First 3 pins used for DH RBI-1 -data-clock-reset 8911=cop,61,pp1=1 ;pport pin 1 on -- 8920=cop,61,pp2=0 ;pport pin 2 off -- 8921=cop,61,pp2=1 ;pport pin 2 on -- 8930=cop,61,pp3=0 ;pport pin 3 off -- 8931=cop,61,pp3=1 ;pport pin 3 on -- 8940=cop,61,pp4=0 ;pport pin 4 off 8941=cop,61,pp4=1 ;pport pin 4 on 8950=cop,61,pp5=0 ;pport pin 5 off 8951=cop,61,pp5=1 ;pport pin 5 on 8960=cop,61,pp6=0 ;pport pin 6 off 8961=cop,61,pp6=1 ;pport pin 6 on 8970=cop,61,pp7=0 ;pport pin 7 off 8971=cop,61,pp7=1 ;pport pin 7 on 8980=cop,61,pp8=0 ;pport pin 8 off 8981=cop,61,pp8=1 ;pport pin 8 on ;XXX=cop,61,PP4=1 ; EX: Parallel Port Pin 4 1=(high-true) 0=(low/off) ;xxx=cop,62 as above -quite telemetry- ...mike/kb8jnm On 6/13/2018 8:45 PM, Bob Pyke wrote:
It seems to me it should look more like:
[function]
991=cop,61,gpio1=0 992=cop,61,gpio4=1 993=cop,61,gpio5=0
[macro]
30=*991 *992 *993 #
See Mike’s page, themidnightengineer.com
Thanks, Bob k6ecm 73 Sent from my iPhone
On Jun 13, 2018, at 4:19 PM, John Rudolph- N2YP <John@n2yp.com> wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be? _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
According to the reference in the app_rpt.c: * 61 - Send Message to USB to control GPIO pins (cop,61,GPIO1=0[,GPIO4=1].....) * 62 - Send Message to USB to control GPIO pins, quietly (cop,62,GPIO1=0[,GPIO4=1].....) -----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces@lists.allstarlink.org] On Behalf Of Mike Sent: Wednesday, June 13, 2018 9:51 PM To: app_rpt-users@lists.allstarlink.org Subject: Re: [App_rpt-users] Multiple Cop commands Bob, I thought I was anonymous LOL Those old pages... I may have to go back and look... but afraid to since it gets hacked more than I wish to say. I use it more to record the latest hack techniques. anyway, this is from my actual command list with reference. Make sure you use long/longer numbers to avoid commend conflicts in the future and not loose future number possibilities. You can make sequence changes via grouped macro. 8910=cop,61,pp1=0 ;pport pin 1 off --First 3 pins used for DH RBI-1 -data-clock-reset 8911=cop,61,pp1=1 ;pport pin 1 on -- 8920=cop,61,pp2=0 ;pport pin 2 off -- 8921=cop,61,pp2=1 ;pport pin 2 on -- 8930=cop,61,pp3=0 ;pport pin 3 off -- 8931=cop,61,pp3=1 ;pport pin 3 on -- 8940=cop,61,pp4=0 ;pport pin 4 off 8941=cop,61,pp4=1 ;pport pin 4 on 8950=cop,61,pp5=0 ;pport pin 5 off 8951=cop,61,pp5=1 ;pport pin 5 on 8960=cop,61,pp6=0 ;pport pin 6 off 8961=cop,61,pp6=1 ;pport pin 6 on 8970=cop,61,pp7=0 ;pport pin 7 off 8971=cop,61,pp7=1 ;pport pin 7 on 8980=cop,61,pp8=0 ;pport pin 8 off 8981=cop,61,pp8=1 ;pport pin 8 on ;XXX=cop,61,PP4=1 ; EX: Parallel Port Pin 4 1=(high-true) 0=(low/off) ;xxx=cop,62 as above -quite telemetry- ...mike/kb8jnm On 6/13/2018 8:45 PM, Bob Pyke wrote:
It seems to me it should look more like:
[function]
991=cop,61,gpio1=0 992=cop,61,gpio4=1 993=cop,61,gpio5=0
[macro]
30=*991 *992 *993 #
See Mike’s page, themidnightengineer.com
Thanks, Bob k6ecm 73 Sent from my iPhone
On Jun 13, 2018, at 4:19 PM, John Rudolph- N2YP <John@n2yp.com> wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be? _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
The post was for parallel port but works similar with gpio, You must create a command for on and off. but you must be using radiousb for gpio. Parallel port needs this... iobase=0x378 ;lpt1 Parallel port address (using for cor/ptt & switches +dh-rbi in rpt.conf Personally, I don't hack fobs. But not everyone has a parallel port I guess. You can also get a usb i/o card on ebay and address it to send strings via command if you want to do this larger and cleaner. ...mike/kb8jnm On 6/13/2018 9:53 PM, Scott Weis wrote:
According to the reference in the app_rpt.c:
* 61 - Send Message to USB to control GPIO pins (cop,61,GPIO1=0[,GPIO4=1].....) * 62 - Send Message to USB to control GPIO pins, quietly (cop,62,GPIO1=0[,GPIO4=1].....)
-----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces@lists.allstarlink.org] On Behalf Of Mike Sent: Wednesday, June 13, 2018 9:51 PM To: app_rpt-users@lists.allstarlink.org Subject: Re: [App_rpt-users] Multiple Cop commands
Bob, I thought I was anonymous LOL
Those old pages... I may have to go back and look... but afraid to since it gets hacked more than I wish to say.
I use it more to record the latest hack techniques.
anyway,
this is from my actual command list with reference. Make sure you use long/longer numbers to avoid commend conflicts in the future and not loose future number possibilities. You can make sequence changes via grouped macro.
8910=cop,61,pp1=0 ;pport pin 1 off --First 3 pins used for DH RBI-1 -data-clock-reset 8911=cop,61,pp1=1 ;pport pin 1 on -- 8920=cop,61,pp2=0 ;pport pin 2 off -- 8921=cop,61,pp2=1 ;pport pin 2 on -- 8930=cop,61,pp3=0 ;pport pin 3 off -- 8931=cop,61,pp3=1 ;pport pin 3 on -- 8940=cop,61,pp4=0 ;pport pin 4 off 8941=cop,61,pp4=1 ;pport pin 4 on 8950=cop,61,pp5=0 ;pport pin 5 off 8951=cop,61,pp5=1 ;pport pin 5 on 8960=cop,61,pp6=0 ;pport pin 6 off 8961=cop,61,pp6=1 ;pport pin 6 on 8970=cop,61,pp7=0 ;pport pin 7 off 8971=cop,61,pp7=1 ;pport pin 7 on 8980=cop,61,pp8=0 ;pport pin 8 off 8981=cop,61,pp8=1 ;pport pin 8 on ;XXX=cop,61,PP4=1 ; EX: Parallel Port Pin 4 1=(high-true) 0=(low/off) ;xxx=cop,62 as above -quite telemetry-
...mike/kb8jnm
On 6/13/2018 8:45 PM, Bob Pyke wrote:
It seems to me it should look more like:
[function]
991=cop,61,gpio1=0 992=cop,61,gpio4=1 993=cop,61,gpio5=0
[macro]
30=*991 *992 *993 #
See Mike’s page, themidnightengineer.com
Thanks, Bob k6ecm 73 Sent from my iPhone
On Jun 13, 2018, at 4:19 PM, John Rudolph- N2YP <John@n2yp.com> wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be? _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
Hi Guys, Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com <mailto:andrewmzf54@hotmail.com> Thanks for all your hard work managing this stuff! Cheers Steve M0HOY
Hi, That call is on hold be cause it's not in QRZ.com. Please add his info to QRZ.com or send a copy of license to me and I'll approve it right away. Thanks, Tim On Wed, Jun 13, 2018 at 11:23 PM Stephen Curtis <steve@m0hoy.com> wrote:
Hi Guys,
Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com
Thanks for all your hard work managing this stuff!
Cheers
Steve M0HOY
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
-- Tim WD6AWP
I am having the same problem. 73 N2DYN Angelo From: App_rpt-users <app_rpt-users-bounces@lists.allstarlink.org> On Behalf Of Tim Sawyer Sent: Thursday, June 14, 2018 9:10 AM To: Users of Asterisk app_rpt <app_rpt-users@lists.allstarlink.org> Subject: Re: [App_rpt-users] Website registration Hi, That call is on hold be cause it's not in QRZ.com. Please add his info to QRZ.com or send a copy of license to me and I'll approve it right away. Thanks, Tim On Wed, Jun 13, 2018 at 11:23 PM Stephen Curtis <steve@m0hoy.com <mailto:steve@m0hoy.com> > wrote: Hi Guys, Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com <mailto:andrewmzf54@hotmail.com> Thanks for all your hard work managing this stuff! Cheers Steve M0HOY _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org <mailto:App_rpt-users@lists.allstarlink.org> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -- Tim WD6AWP
Hi Tim, He has emailed a copy of his licence and had acknowledgement of receipt but does not wish to have a page on qrz.com. Is this a requirement? I shall get him to resend his licence Thanks for your help Steve Sent from my iPhone
On 14 Jun 2018, at 14:32, Angelo T Sonnesso <asonnesso@gmail.com> wrote:
I am having the same problem.
73 N2DYN Angelo
From: App_rpt-users <app_rpt-users-bounces@lists.allstarlink.org> On Behalf Of Tim Sawyer Sent: Thursday, June 14, 2018 9:10 AM To: Users of Asterisk app_rpt <app_rpt-users@lists.allstarlink.org> Subject: Re: [App_rpt-users] Website registration
Hi, That call is on hold be cause it's not in QRZ.com. Please add his info to QRZ.com or send a copy of license to me and I'll approve it right away. Thanks, Tim
On Wed, Jun 13, 2018 at 11:23 PM Stephen Curtis <steve@m0hoy.com> wrote: Hi Guys,
Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com
Thanks for all your hard work managing this stuff!
Cheers
Steve M0HOY
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
-- Tim WD6AWP _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
We prefer that you have your info on QRZ because it better for us to validate that you are a ham. But it's not a requirement. We do accept a copy of your license if you prefer. Please send to me if that's your choice. 73, On Thu, Jun 14, 2018 at 7:28 AM Stephen Curtis <steve@m0hoy.com> wrote:
Hi Tim,
He has emailed a copy of his licence and had acknowledgement of receipt but does not wish to have a page on qrz.com. Is this a requirement?
I shall get him to resend his licence
Thanks for your help Steve
Sent from my iPhone
On 14 Jun 2018, at 14:32, Angelo T Sonnesso <asonnesso@gmail.com> wrote:
I am having the same problem.
73 N2DYN Angelo
*From:* App_rpt-users <app_rpt-users-bounces@lists.allstarlink.org> *On Behalf Of *Tim Sawyer *Sent:* Thursday, June 14, 2018 9:10 AM *To:* Users of Asterisk app_rpt <app_rpt-users@lists.allstarlink.org> *Subject:* Re: [App_rpt-users] Website registration
Hi,
That call is on hold be cause it's not in QRZ.com. Please add his info to QRZ.com or send a copy of license to me and I'll approve it right away.
Thanks,
Tim
On Wed, Jun 13, 2018 at 11:23 PM Stephen Curtis <steve@m0hoy.com> wrote:
Hi Guys,
Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com
Thanks for all your hard work managing this stuff!
Cheers
Steve M0HOY
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
--
Tim WD6AWP
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
-- Tim WD6AWP
Thanks Tim, I have forwarded the details to Andrew and asked him to send his licence to you. Thanks again for your help. Steve M0HOY Sent from my iPhone
On 14 Jun 2018, at 18:39, Tim Sawyer <tisawyer@gmail.com> wrote:
We prefer that you have your info on QRZ because it better for us to validate that you are a ham. But it's not a requirement. We do accept a copy of your license if you prefer. Please send to me if that's your choice.
73,
On Thu, Jun 14, 2018 at 7:28 AM Stephen Curtis <steve@m0hoy.com> wrote: Hi Tim,
He has emailed a copy of his licence and had acknowledgement of receipt but does not wish to have a page on qrz.com. Is this a requirement?
I shall get him to resend his licence
Thanks for your help Steve
Sent from my iPhone
On 14 Jun 2018, at 14:32, Angelo T Sonnesso <asonnesso@gmail.com> wrote:
I am having the same problem.
73 N2DYN Angelo
From: App_rpt-users <app_rpt-users-bounces@lists.allstarlink.org> On Behalf Of Tim Sawyer Sent: Thursday, June 14, 2018 9:10 AM To: Users of Asterisk app_rpt <app_rpt-users@lists.allstarlink.org> Subject: Re: [App_rpt-users] Website registration
Hi,
That call is on hold be cause it's not in QRZ.com. Please add his info to QRZ.com or send a copy of license to me and I'll approve it right away.
Thanks,
Tim
On Wed, Jun 13, 2018 at 11:23 PM Stephen Curtis <steve@m0hoy.com> wrote:
Hi Guys,
Could someone from the registration team please help me. I am receiving emails every day from a guy here in the UK who is desperately trying to get his account authorised with you. He does not seem to be receiving your account activation email. The message he is getting is “Your account is inactive, please check your spam folder etc.” The guy says it is not in his junk/spam folder. His call sign is M6MZF and has asked me to give you guys another email address andrewmzf54@hotmail.com
Thanks for all your hard work managing this stuff!
Cheers
Steve M0HOY
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
--
Tim WD6AWP
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
-- Tim WD6AWP _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
Cool. Mike, you will always be one of my key references :-) I appreciate the contributions you’ve made to this technology, and for the many times you’ve bailed me out. Thanks, Bob K6ECM 73
On Jun 13, 2018, at 6:50 PM, Mike <mm@midnighteng.com> wrote:
Bob, I thought I was anonymous LOL
Those old pages... I may have to go back and look... but afraid to since it gets hacked more than I wish to say.
I use it more to record the latest hack techniques.
anyway,
this is from my actual command list with reference. Make sure you use long/longer numbers to avoid commend conflicts in the future and not loose future number possibilities. You can make sequence changes via grouped macro.
8910=cop,61,pp1=0 ;pport pin 1 off --First 3 pins used for DH RBI-1 -data-clock-reset 8911=cop,61,pp1=1 ;pport pin 1 on -- 8920=cop,61,pp2=0 ;pport pin 2 off -- 8921=cop,61,pp2=1 ;pport pin 2 on -- 8930=cop,61,pp3=0 ;pport pin 3 off -- 8931=cop,61,pp3=1 ;pport pin 3 on -- 8940=cop,61,pp4=0 ;pport pin 4 off 8941=cop,61,pp4=1 ;pport pin 4 on 8950=cop,61,pp5=0 ;pport pin 5 off 8951=cop,61,pp5=1 ;pport pin 5 on 8960=cop,61,pp6=0 ;pport pin 6 off 8961=cop,61,pp6=1 ;pport pin 6 on 8970=cop,61,pp7=0 ;pport pin 7 off 8971=cop,61,pp7=1 ;pport pin 7 on 8980=cop,61,pp8=0 ;pport pin 8 off 8981=cop,61,pp8=1 ;pport pin 8 on ;XXX=cop,61,PP4=1 ; EX: Parallel Port Pin 4 1=(high-true) 0=(low/off) ;xxx=cop,62 as above -quite telemetry-
...mike/kb8jnm
On 6/13/2018 8:45 PM, Bob Pyke wrote: It seems to me it should look more like:
[function]
991=cop,61,gpio1=0 992=cop,61,gpio4=1 993=cop,61,gpio5=0
[macro]
30=*991 *992 *993 #
See Mike’s page, themidnightengineer.com
Thanks, Bob k6ecm 73 Sent from my iPhone
On Jun 13, 2018, at 4:19 PM, John Rudolph- N2YP <John@n2yp.com> wrote:
When using cop 61 or 62 to change gpio states can you change more than one pin with the same command or do you have to break it out as one pin at a time? Example: cop,61,GPIO1=0,GPIO4=1,GPIO5=1
If so is this the right format and if not what would it be? _______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
_______________________________________________ App_rpt-users mailing list App_rpt-users@lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
participants (7)
-
Angelo T Sonnesso -
Bob Pyke -
John Rudolph- N2YP -
Mike -
Scott Weis -
Stephen Curtis -
Tim Sawyer