Gunjan Sinha
Gunjan Sinha

Reputation: 51

How to Write a driverkit extension for Mac OS catalina

I am trying to write a driver kit extension for one of devices. I have not got Information on How to write a driverkit extension for mac os Catalina. The only Documentation which I got is

DriverKit Reference: https://developer.apple.com/documentation/driverkit?language=objc

& the WWDC Video: https://developer.apple.com/videos/play/wwdc2019/702/

Is there a Sample on how to Write a driver Kit extension and a System extension for installing it. Thanks in advance.

Upvotes: 5

Views: 2322

Answers (2)

John_K
John_K

Reputation: 21

Apple finally added two examples of HIDDriverkit DEXTs and companion applications on Dec 16 2020.

Upvotes: 1

tejusadiga2004
tejusadiga2004

Reputation: 311

If you just want to open the device with exclusive access and perform Device IO, you may not need to write the Driver Kit driver. Instead, you can use IOUSBHost framework

Info on using the IOUSBHost framework

Upvotes: -1

Related Questions