OK, I think I’ve solved the problem (again); we’ll have to see if this solution sticks.
I installed the driver to which you sent the link, even though it was an older version of the one on GitHub. Based on a suggestion from this post, I discovered that the permissions on /System/Library/Extensions/ch34xsigned.kext weren’t set correctly by the installer. Here is a command-line script that changes permissions down through the directory structure for other users with this issue:
$> sudo sh #start a root shell for simplicity. BE CAREFUL until you type exit and end the shell Password: [put in admin password] !> cd /System/Library/Extensions !> chmod -R go+x ch34xsigned.kext #Modifies the permissions on ch34xsigned.kext dir and its contents; this is the fix !> cd ch34signed.kext !> find . -type f -exec chmod go-x {} \; #Added to remove execute permissions from the files; not elegant but it works !> exit $>
After I made this change, I unplugged and plugged in the USB cable running to the Orion board, and the serial connection showed up. Wallah.