-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Control the state of unused pins with "defaultout" and "defaultoe".
Unused pins were forced to input state until now. This is still the default behaviour, but it can be changed with the "defaultout" and "defaultoe" attributes now: <FTDI vendor="0x0403" product="0x6010"> <Device single="true" pinMask="fffffffe" defaultout="00000001" defaultoe="00000001"/> </FTDI> Both are 8 digit hex numbers like "pinMask" defining the output and output enable values for the pins in the form AABBCCDD With AA = the value for the AD pins BB = the value for the AC pins CC = the value for the BD pins DD = the value for the BC pins Please note that only pins which are 0 in the pin mask can be controlled with defaultout and defaultoe. Example: Set out=1 and oe=1 for BC0 pinMask="fffffffe" defaultout="00000001" defaultoe="00000001"
- Loading branch information
1 parent
8e7a75a
commit 37d6721
Showing
3 changed files
with
149 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters