-
save list of devices connected to computer
ls /dev/* > /tmp/usbtmp1
- plug in quadcopter over USB
note: must have [USB to UART drivers] (http://www.silabs.com/products/mcu/pages/usbtouartbridgevcpdrivers.aspx) installed for cleanflight
- save list of devices to a different file
ls /dev/* > /tmp/usbtmp2
- diff the two lists of devices we saved, copy these
note: this may be different for you
diff /tmp/usbtmp1 /tmp/usbtmp2
# > /dev/cu.SLAB_USBtoUART
# > /dev/tty.SLAB_USBtoUART
- symlink both devices, one as com1, and the other as com2
ln -s /dev/cu.SLAB_USBtoUART com1
ln -s /dev/tty.SLAB_USBtoUART com2
- get the full path to your wine binary and your downloaded BlHeliSuite.exe app
/Applications/Wine.app/Contents/Resources/bin/wine /Users/ben/Downloads/BLHeliSuiteBeta144051/BLHeliSuite.exe
- open automator
- new document
- application
- search -> run shell script
- paste full path from previous step
- save somewhere as BLHeli.app
- run the app!
This is awesome; thank you so much for making this! I have been wishing for a way to configure BLHeli without Windows for a while, and I can't believe I forgot about Wine.
Just a small suggestion: step 6 should maybe be