cdsteinkuehler / beaglebone-universal-io

Device tree overlay and support scripts for using most available hardware I/O on the BeagleBone without editing dts files or rebuilding the kernel
GNU General Public License v2.0
127 stars 54 forks source link

Config-pin Pull-up for GPIO HIGH+ appears inverted #59

Open AlanH70 opened 4 years ago

AlanH70 commented 4 years ago

In the utility config-pin, function config_pin(), case $2: "# GPIO with pull-up enabled" for configuration state HIGH+, code line 989 is : MODE=gpio_pd;

Should that setting not be : MODE=gpio_pu; as in the other 3 pull-up enabled states above it?

Trying to initialize some GPIO pins at boot as pulled-up outputs via a systemd startup script, Ubuntu 18.04 on Beaglebone Black.