Changes between Version 13 and Version 14 of USB
- Timestamp:
- 11/05/2019 06:36:16 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
USB
v13 v14 305 305 === Switched Socket Power === 306 306 307 GW53xx and GW54xx boards with -G and later revisions have a p rogrammable load switch added that can enable and disable power on a single slot by toggling a GPIO.307 GW53xx and GW54xx boards with -G and later revisions have a power switch added that can enable and disable power on a single slot by toggling a GPIO. Power is enabled by default. 308 308 309 309 On both GW53xx and GW54xx this is GPIO79 (GPIO bank 3, DIO 15), pad PAD_EIM_DA15__GPIO3_IO15. 310 310 311 312 311 To toggle this GPIO: 312 313 {{{#!bash 314 echo 79 > /sys/class/gpio/export 315 echo out > /sys/class/gpio/gpio79/direction 316 echo 0 > /sys/class/gpio/gpio79/value # '0' will disable power, '1' will enable power. 317 }}} 313 318 314 319