Changes between Version 3 and Version 4 of ventana/gw5200usb
- Timestamp:
- 07/12/2018 08:25:25 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/gw5200usb
v3 v4 12 12 Setting the GPIO high will route to the Mini-PCIe slot and setting the GPIO low (0) will route it to the front panel connector: 13 13 {{{#!bash 14 echo 2 > /sys/class/gpio/export 15 echo out > /sys/class/gpio/gpio2/direction 16 echo 1 > /sys/class/gpio/gpio2/value 14 echo 2 > /sys/class/gpio/export #take control of GPIO-2 15 echo out > /sys/class/gpio/gpio2/direction #set to an output 16 echo 1 > /sys/class/gpio/gpio2/value #set value high 17 17 }}} 18 18