The I/O Kit is a framework for driver development in the xnu Kernel which drives Apple's Mac OSX and iOS operating systems.
0
votes
0answers
18 views
OS X - broadcasting HID events
Good afternoon everyone.
I have a USB gamepad that I'm attempting to write a user-space driver for. Originally, I wrote the driver to work with Linux (using libusb), and everything seems to work ...
2
votes
0answers
18 views
How to set speaker configuration programatically using Core Audio API on Mac OS X?
I have a 7.1 channel audio output device and a custom kext to drive that. My custom application needs to send 7.1 rear channel audio data to the device but the device receives only 2 channel audio ...
0
votes
1answer
12 views
Notifications from Mac OS on usb device addition/removal
I am writing a method to receive notification from the OS when a USB device is plugged/unplugged. I used the advice on this question
How to know when a HID USB/Bluetooth device is connected in ...
1
vote
1answer
27 views
How can I keep track of a USB device across disconnections?
I've got a bunch of USB serial devices (these to be precise: http://plugable.com/products/PL2303-DB9) and, if at all possible, I would like to "keep track" of them across unplug/replug events (even if ...
0
votes
2answers
82 views
IOKit using dlopen
In my app I'm getting battery infos using this way (via IOKit).
static void print_raw_battery_state(io_registry_entry_t b_reg) {
CFBooleanRef boo;
CFNumberRef n;
int ...
1
vote
0answers
30 views
Sending MCCS commands on Cocoa
I am trying to write a simple Cocoa App for the Mac for one simple purpose: switching my Dell monitor input to another one (so I can switch between PC and MAC). I already found an application for ...
0
votes
1answer
64 views
Writing to USB HID Device with IOKit IOHIDDeviceSetReportWithCallback
I am trying to communicate asynchronously with a USB HID Device using the IOHIDManager from IOKit. I have no problem registering for a callback with IOHIDDeviceRegisterInputReportCallback and setting ...
0
votes
0answers
35 views
Hide Audio device using codeless kext
I am developing a audio driver to do some custom audio processing using audio reflector driver sample code from Apple. Output from audio reflector driver is passed to real USB audio hardware device ...
4
votes
0answers
124 views
Hide USB Audio device on MAC OS X using custom kext
I am developing an application which does custom audio processing and sends the processed audio to the USB headset. My requirement is that the USB headset should not be visible to the user in the list ...
4
votes
2answers
197 views
Can't send data to my Arduino Uno using Cocoa (IOKit)
I'm currently trying to send data to my Arduino via a Mac application. The code in my Arduino Uno looks like this:
void setup()
{
pinMode (2, OUTPUT);
pinMode (3, OUTPUT);
pinMode (4, ...
2
votes
1answer
65 views
Preventing screen dim and display sleep on OS X
I'm making an app for OS X 10.7 and later that plays video. Any document can be taken full-screen using the standard full-screen commands.
I'd like to forestall the automatic screen dim and display ...
0
votes
0answers
99 views
Trace/BPT trap:5
I recently found a page on iPhoneDevWiki regarding the Ambient Light Sensor on iOS http://iphonedevwiki.net/index.php/AppleISL29003. I immediately tried to convert it to a command line tool using ...
1
vote
1answer
65 views
IOHIDEventSystemClientScheduleWithRunLoop with EXC_BAD_ACCESS
I'm trying to get touch events in my application. So I used the IOHIDFamily callback to get the events. My code is like this:
void handle_event(void* target, void* refcon, IOHIDServiceRef service, ...
2
votes
0answers
62 views
Simulating Mac Mouse Events beyond CGCreateMouseEvent
I've been successfully using CG mouse events to simulate mouse down/drag/up events using a specialized hardware controller. However, I come across some applications in which using these CG mouse ...
1
vote
1answer
47 views
OSX Userspace Device FIle
Is there any way to create a block device via user space in OSX (10.8+), without 3rd party libraries (FUSE, etc)?
I am trying to create a userspace tool. The idea is the user supplies a file to the ...
2
votes
1answer
82 views
ld: library not found for -lIOKit
I have added libIOKit.dylib to my project to get imei number and after that it started giving me the below linker error.
ld: library not found for -lIOKit
clang: error: linker command failed with ...
1
vote
1answer
72 views
Figuring out data from IOUSBInterface pipes
I am coding for a Mac app that sends and receives messages to a Personel Video Recorder using with the IOKit. I need to send messages to change its status and it needs to give me info about the video ...
2
votes
2answers
140 views
IOKit and getting unique ID's
I am using: IOServiceGetMatchingServices
kr = IOServiceGetMatchingServices(kIOMasterPortDefault,
IOServiceNameMatching("AppleUSBEHCI"), &io_objects);
I am looking for how I find out information ...
1
vote
1answer
61 views
os x kernel call function on all processors
I am implementing my first driver on OS X (10.8.4). My driver should read MSR (0x198) on each processor every second and print the values to system.log.
I am using IOWorkLoop and IOTimerEventSource ...
1
vote
2answers
72 views
How to go about making app for ipad that makes it into a Mac keyboard
I'm trying to figure out how to go about making an app that will have buttons that will when pressed cause my mac to key a certain character (or modifier). I've already got the buttons laid out ...
2
votes
0answers
152 views
Getting the BSD name of a USB device using IOKit to write to the device?
I am trying to determine the BSD name of virtual serial port using IOKit under MacOS.
I have a USB CDC device that looks like a virtual serial port, and I want to get the BSD device path so that I ...
1
vote
0answers
156 views
Permanent error after import IOkit framework
i'm new in this forum.
I'm trying to work with light sensor in iphone but the only framework that permits it is IOKit.
i tried to add the framework follow this guide:
...
3
votes
1answer
217 views
IOHIDEventSystemCreate on iOS6 failed
IOHIDEventSystemCreate always return NULL on iOS6 (work fine on iOS5).
Anyone know why?
Example on iPhoneDevWiki
#include <IOKit/hid/IOHIDEventSystem.h>
#include <stdio.h>
void ...
2
votes
0answers
148 views
codeless kext on OS X
Ok i am working on a uController project (pointer device), i am trying to write a user space driver IOkit.framework.
using the idProduct and idVendor i can get the IOUSBInterfaceInterface300 obj
the ...
1
vote
0answers
53 views
Distinguish Magic mouse/Trackpad scroll event
Inside an Event Tap I need to distinguish the scroll event that comes from a magic mouse to that which comes from a TrackPad.
Does anyone have a solution to this problem? Is there a way to get the ...
4
votes
1answer
372 views
Can't get started with kext development in OS X
I'm trying to do Apple's "Kernel Extension" Tutorial. I've created a project file, created the Info.plist, built it, used kextlibs to learn the dependencies, added them to the Info.plist, rebuilt, ...
3
votes
1answer
207 views
kext hid under 10.7 unload failed but 10.6 works flawless
I'm working on a virtual USB bus driver for MacOSX (Windows already running) connected via network with a linux box. It works fine under 10.6 and 10.7 with a mass storage device and HID devices like ...
11
votes
2answers
389 views
OSX - disabling system-wide touch gestures
I need to programmatically disable/suppress system-wide touch gestures on Mac OS. I'm referring to gestures such as the 4-finger swipe between spaces, etc.
I've looked to EventTap but that doesn't ...
1
vote
1answer
45 views
Translate OSReturn Value to Human-Readable Definition
I'm using some of the functions from IOKit/kext/KextManager.h to programmatically load kernel a extension, and I'm encountering new error values. For example:
OSReturn osr = ...
1
vote
1answer
29 views
Where are IOSCSIBlockCommandsDevice.cpp and friends?
I am writing a driver which depends on the SCSI part of IOKit (I'm on 10.6, but this applies to 10.7 and 10.8 too), and I have the headers linked into my project with the Kernel framework. While I can ...
1
vote
0answers
173 views
Mountain Lion Login Window CGEvent fails
I have an app which uses CGEvent taps to catch key presses and mouse events.
Example ..
CGEventTapCreate(kCGHIDEventTap, kCGTailAppendEventTap,
1, eventMask, keyUp, ...
4
votes
1answer
735 views
Gamepad & Joystick support on Mac OSX at user space
I have been searching through how to do gamepad & joystick support on Mac for some days and all resources that I found seems to suggest a pre-installed driver along with using Apple's HID API, ...
0
votes
0answers
157 views
Kernel Panics When Loading My IOKit Audio Driver in Mac OS X
I'm writing a Mac virtual audio driver that, when selected, applies signal processing to all applications' audio output. The basic code comes from Apple's AudioReflector example (seemingly no longer ...
2
votes
1answer
410 views
Programmatically “unplug and replug” a USB device to load new driver in OS X?
I'm working on an installer in OS X that installs an IOKit driver for a USB device, and I'm trying to get it to not require a restart at the end. The installer installs the driver correctly and ...
1
vote
1answer
66 views
Kernel module implementation estimate [closed]
I have a very abstract question about a kernel module writing estimate. How much dev-hours/months may required to write or, especially, port an existant kernel driver for a new PCI HBA (let it be ...
0
votes
1answer
87 views
kIOHIDOptionsTypeSeizeDevice causes device to become unresponsive
I'm trying to write a simple command line program which sends keystrokes on a given keyboard to a UDP server. I'm programming on OSX using the IOKit framework and its IOHIDManager class.
For the ...
5
votes
1answer
549 views
Disable ambient-light sensor screen dimming programmatically on OS X
I've been digging around in the kernel code repo for days, but I just can't find this anywhere.
I want to disable/enable/detect the state of the ambient-light sensor based screen dimming that many of ...
1
vote
1answer
228 views
Mac: load Mass Storage Driver Kext for testing
I am writing a customised mass storage kernel extension for Mac, subclassed from the IOSCSIPeripheralDeviceType05 logical unit driver. I have got as far as compiling a .kext file, which passes ...
1
vote
1answer
71 views
Xcode IOKit builds well but makes no Build folder or driver
I am familiar with windows driver developing (WinDDK) but recently changed to Xcode for mac and now I am absolutely newbie in this field.
I am trying to make a sample project from Apple tutorial from ...
1
vote
2answers
738 views
How to create a Audio Device driver to capture sound Mac is playing?
I have created some code to do a screen capture to mov file using AV Foundation and my next step is to also record what sounds Mac is playing for later adding to the recorded video. I have done some ...
0
votes
1answer
181 views
Cocoa get disk in NSArray
hi I'm using DiskArbitration.framework to get list of disks
+(NSArray*)arrayOfDisks {
DASessionRef session = DASessionCreate(kCFAllocatorDefault);
if (session) {
...
1
vote
1answer
167 views
Network driver over ethernet IOKit Cocoa
I have writen an objective-c POS that needs to interact with many ethernet devices like barcode scanner, fuel pump, cash drawer, etc. I know i'll probably have to write drivers in c++ for each device. ...
0
votes
1answer
451 views
IOKit device adding/removal notifications - only fire once?
I have been trying to get notified when a specific USB device is added or removed. I have read 'Accessing Hardware From Applications' document and have a bare-bones demo application, mainly based on ...
0
votes
1answer
365 views
i2c communication in IOKit on Mac OS X
I'm trying to communicate with display over ddc/ci using MacOS X function IOI2CSendRequest.
All works if i just send "set" command, like set brightness. I see that display receive command, because ...
0
votes
1answer
117 views
IONotificationPortDestroy - to call or not to call?
I have code to set up notification for USB device add/remove using XCode 4.3.3 on OS X 10.7.4. For a USB device with myVid and myPid, it is pretty boilerplate:
// Global declarations somewhere near ...
0
votes
2answers
164 views
Call an IOUSBDeviceInterface function on an obj-c object instead of a C structure
Let's say I want to close an USB device. Here is a C structure representing the USB device:
struct __USBDevice {
uint16_t idProduct;
io_service_t usbService;
IOUSBDeviceInterface **deviceHandle;
...
1
vote
1answer
252 views
Read values from custom USB device
I have a USB device (bicycle computer) and want to read from it values (odometer value, average speed, etc.) through the USB port. After some steps I managed to detect the computer and read some ...
0
votes
1answer
88 views
How to identify file being closed is modified or created in action KAUTH_FILEOP_CLOSE from Mac KEXT
Observed that FWRITE or KAUTH_FILEOP_CLOSE_MODIFIED is not consistenly set in action KAUTH_FILEOP_CLOSE during file modification or file copy.
My usecase is - I am trying to figure out whether the ...
2
votes
1answer
915 views
Cocoa: Detecting USB devices by Vendor ID
I'm writing a Foundation tool for Mac and trying to detect when Apple devices are connected and disconnected via USB. I found some help in this post along with the USBPrivateDataSample -- but it seems ...
4
votes
1answer
479 views
MAC address from interface on OS X (C)
This might be a stupid question and I apologize if it's already been addressed here, but I've searched quite a bit without much luck. I'm trying to get my interface's hardware address in C and I'm ...

