I was reading this informative post How to set `com.apple.developer.driverkit.transport.usb` entitlement?
I wanted to ask, where do I get this idVendor
from? What should be its value ?
I was reading this informative post How to set `com.apple.developer.driverkit.transport.usb` entitlement?
I wanted to ask, where do I get this idVendor
from? What should be its value ?
This is the Vendor ID of the device your driver will be driving. Apple asks for this when you request DriverKit entitlements, and you are presumably specifying it in your dext's IOKit personality's matching dictionary.
Note that vendor IDs are conventionally written in hexadecimal, but plists (Info.plist and the entitlements file) use decimal notation for numbers, so make sure you convert the value first.