I want to manipulate my gpios on Beaglebone black... Example:
GPIO.setup("P8_11", GPIO.IN)
it gives back the error mentioned in the title:
ValueError: Set gpio mode failed, missing file or invalid permissions.
Thanks for help
I want to manipulate my gpios on Beaglebone black... Example:
GPIO.setup("P8_11", GPIO.IN)
it gives back the error mentioned in the title:
ValueError: Set gpio mode failed, missing file or invalid permissions.
Thanks for help
This seems to be a problem with u-boot on the BBB. The following hack worked for me:
sudo dd if=/dev/zero of=/dev/mmcblk1 bs=1M count=100
Run that on the BBB, then do a hard reset. This solution came from this GitHub issue.