Buildbotics CNC Controller Firmware Change Log
==============================================
+## v0.3.6
+ - Set max_usb_current=1 in /boot/config.txt from installer #103
+
## v0.3.5
- Fixed dwell (G4)
- Always show limit switch indicators regardless of motor enable
{
"name": "bbctrl",
- "version": "0.3.5",
+ "version": "0.3.6",
"homepage": "http://buildbotics.com/",
"repository": "https://github.com/buildbotics/bbctrl-firmware",
"license": "GPL-3.0+",
./scripts/avr109-flash.py src/avr/bbctrl-avr-firmware.hex
fi
+# Increase USB current
+grep max_usb_current /boot/config.txt >/dev/null
+if [ $? -ne 0 ]; then
+ mount -o remount,rw /boot &&
+ echo max_usb_current=1 >> /boot/config.txt
+ mount -o remount,ro /boot
+fi
+
if $UPDATE_PY; then
rm -rf /usr/local/lib/python*/dist-packages/bbctrl-*
./setup.py install --force