Prusa i3 - can't connect from iMac or MacBook Pro December 06, 2016 06:04PM |
Registered: 7 years ago Posts: 9 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 06, 2016 08:16PM |
Admin Registered: 13 years ago Posts: 7,122 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 07, 2016 08:41AM |
Registered: 8 years ago Posts: 922 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 08, 2016 12:03AM |
Registered: 7 years ago Posts: 9 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 08, 2016 05:10AM |
Registered: 9 years ago Posts: 288 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 08, 2016 07:36AM |
Registered: 8 years ago Posts: 922 |
Quote
Cake
It’s showing up in my system report as “FT232R USB UART”
So is it possible for the board to be defective, even considering it worked from a Windows machine?
find /Library/Extensions/ /System/Library/Extensions/ -iname "*FTDI*.kext"
/Library/Extensions//FTDIUSBSerialDriver.kext /System/Library/Extensions//AppleUSBFTDI.kext
kextstat | grep FTDI
sudo kextload -b com.apple.driver.AppleUSBFTDI sudo kextunload -b com.apple.driver.AppleUSBFTDI
sudo kextload -b com.FTDI.driver.FTDIUSBSerialDriver sudo kextunload -b com.FTDI.driver.FTDIUSBSerialDriver
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 08, 2016 05:20PM |
Registered: 7 years ago Posts: 9 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 09, 2016 07:24AM |
Registered: 8 years ago Posts: 922 |
Quote
FTDI Driver Installation manual
Since 10.9 (Mavericks), OS X has included built-in partial support for some FTDI devices in VCP mode. Starting with 10.11 (El Capitan), Apple’s own driver seems to be sufficiently comprehensive that many customers will not need to install FTDI’s own VCP unless they wish to use its advanced features such as baud-rate aliasing and configurable latency times.
ls -1 /dev/cu.*
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 09, 2016 03:26PM |
Registered: 8 years ago Posts: 922 |
kextstat | grep -i ftdi 159 0 0xffffff7f838f9000 0x7000 0x7000 com.apple.driver.AppleUSBFTDI (5.0.0) 797D6BEE-10AD-30B0-97AE-157463D700AF <138 39 5 4 3 1>...if the driver has been loaded.
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 09, 2016 11:46PM |
Registered: 7 years ago Posts: 9 |
I’m wondering if this CH34x driver is causing issues somewhere, since I don't know how to uninstall it (or remember when and if I even installed it in the first place!)Quote
The printer kit you have is the new EG-1 v2. It uses the ZRIB control board. You should not need to install anything other than the Arduino IDE software (latest version). It includes the necessary drivers. You can manually install the FTDI drivers found here: [goo.gl]
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 10, 2016 03:24PM |
Registered: 7 years ago Posts: 9 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 11, 2016 08:57AM |
Registered: 8 years ago Posts: 922 |
kextstat | grep -i wch 154 0 0xffffff7f838a6000 0x5000 0x5000 com.wch.usbserial (1) 2A7CE003-3526-32C8-BC4E-62C90DF85FB5 <115 40 4 3>
pkgutil --files com.wch.usbserial usbserial.kext usbserial.kext/Contents usbserial.kext/Contents/Info.plist usbserial.kext/Contents/MacOS usbserial.kext/Contents/MacOS/usbserial usbserial.kext/Contents/Resources usbserial.kext/Contents/Resources/en.lproj usbserial.kext/Contents/Resources/en.lproj/InfoPlist.strings usbserial.kext/Contents/_CodeSignature usbserial.kext/Contents/_CodeSignature/CodeResources
Re: Prusa i3 - can't connect from iMac or MacBook Pro December 11, 2016 02:19PM |
Registered: 7 years ago Posts: 9 |
Re: Prusa i3 - can't connect from iMac or MacBook Pro January 08, 2017 08:05PM |
Registered: 7 years ago Posts: 9 |
Quote
As for when it works when booting the Mac, well that makes senses, since when booting the Mac in is power user mode(root) in the background and loads up the drivers FTDI correctly with theses permissions. But if you unplug the printer, then upon re-connection your user does not have proper permission to load the FTDI drivers correctly.
Quote
An ownership or permissions problem is preventing the system from making the device accessible. Check that the driver is owned by root and wheel. The most common symptom is the group for FTDIUSBSerialDriver is not wheel. To change the group, login as root and perform the following script in a Terminal window
cd /system/library/extensions
chgrp -R wheel FTDIUSBSerialDriver.kext
drwxr-xr-x@ 3 root wheel 102 19 Oct 23:57 AppleUSBFTDI.kext
chgrp: AppleUSBFTDI.kext/Contents/_CodeSignature/CodeResources: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/_CodeSignature: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/Info.plist: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/MacOS/AppleUSBFTDI: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/MacOS: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/Resources/English.lproj/InfoPlist.strings: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/Resources/English.lproj: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/Resources: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents/version.plist: Operation not permitted chgrp: AppleUSBFTDI.kext/Contents: Operation not permitted chgrp: AppleUSBFTDI.kext: Operation not permitted
Re: Prusa i3 - can't connect from iMac or MacBook Pro January 10, 2017 06:50AM |
Registered: 8 years ago Posts: 922 |