Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Kerry Whittle
Yes! We got it! I was hesitant to load x86 drivers on the m1 but once I searched the product id 0x7523 and vendor id 0x1a86, I found an old driver for the Winchiphead chipset at https://blog.sengotta.net/signed-mac-os-driver-for-winchiphead-ch340-serial-bridge/ Thanks for the help guys! Kerry

Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Scott Lopez
What matters is the chipset in the USB cable, it's actually a USB to serial. Most cables are made with a chip from one of two manufacturers: Future Technologies (FTDI) - https://ftdichip.com/drivers/ Prolific Technology - http://www.prolific.com.tw/us/ShowProduct.aspx?pcid=41&showlevel=0041-0041

Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Kerry Whittle
What matters is the chipset in the mini too! There’s very little work going on for the M1 from what I can tell. I wish I knew how to write a driver, I would. Your script is perfect for me! That’s where I happened to put my chirp. I can’t seem to ascribe any meaning from what I do see in the ven

Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Scott Lopez
Here's my little script. I keep CHIRP in my home directory Applications, so adjust your path as necessary: ❯ cat bin/chirp_sign.sh #!/opt/homebrew/bin/bash xattr -c ~/Applications/CHIRP.app xattr -c ~/Applications/CHIRP.app/Contents codesign --force --deep --sign - ~/Applications/CHIRP.app The dr

Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Kerry Whittle
Yay! Chirp is running again! I was going to try to figure out those commands again but you got them first. Thanks! I’m going to make a script out of those commands. Now, about the drivers, how does that work on the m1? > On Sep 12, 2021, at 7:49 AM, Scott Lopez wrote: > > Assuming you put the

Re: [chirp_users] CHIRP on Mac mini M1

2021-09-12 Thread Scott Lopez
Assuming you put the chrip.app in your Applications folder, try running the following commands: xattr -c /Applications/CHIRP.app xattr -c /Applications/CHIRP.app/Contents codesign --force --deep --sign - /Applications/CHIRP.app Need to run these from the command line (use Terminal) and you must h