Created
October 4, 2013 08:51
-
-
Save joshbode/6822969 to your computer and use it in GitHub Desktop.
Custom USB Device ID for RAVEn USB Smart Meter Device. FTDI plist (/System/Library/Extensions/FTDIUSBSerialDriver.kext/Contents/Info.plist)
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <!-- SNIP --> | |
| <key>IOKitPersonalities</key> | |
| <dict> | |
| <!-- SNIP --> | |
| <key>RFA-Z106-RA-PC RAVEn</key> | |
| <dict> | |
| <key>CFBundleIdentifier</key> | |
| <string>com.FTDI.driver.FTDIUSBSerialDriver</string> | |
| <key>ConfigData</key> | |
| <dict> | |
| <key>BaudRates</key> | |
| <dict> | |
| <key>BAUDALL</key> | |
| <integer>115200</integer> | |
| </dict> | |
| <key>PortName</key> | |
| <string>raven</string> | |
| </dict> | |
| <key>IOClass</key> | |
| <string>FTDIUSBSerialDriver</string> | |
| <key>IOProviderClass</key> | |
| <string>IOUSBInterface</string> | |
| <key>bConfigurationValue</key> | |
| <integer>1</integer> | |
| <key>bInterfaceNumber</key> | |
| <integer>0</integer> | |
| <key>idProduct</key> | |
| <integer>35368</integer> | |
| <key>idVendor</key> | |
| <integer>1027</integer> | |
| </dict> | |
| </dict> | |
| <!-- SNIP --> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment