Calibration data typically moves from user-space applications down into the KMDF minidriver, or is processed directly within the driver's I/O queues before hitting the HID class driver. 2. Defining Calibration Paradigms
[SileadTouch_Device.NT.HW] AddReg = SileadTouch_Parameters.AddReg [SileadTouch_Parameters.AddReg] HKR,,"TouchWidth",0x00010001,1920 HKR,,"TouchHeight",0x00010001,1200 HKR,,"SwapX",0x00010001,0 HKR,,"SwapY",0x00010001,1 HKR,,"InvertX",0x00010001,0 HKR,,"InvertY",0x00010001,0 Use code with caution. kmdf hid minidriver for touch i2c device calibration best
// Calibration commands #define CALIBRATION_CMD_GET_SENSITIVITY 0x01 #define CALIBRATION_CMD_SET_OFFSET 0x02 // ... kmdf hid minidriver for touch i2c device calibration best
: Query these values during the driver's EvtDevicePrepareHardware callback phase. kmdf hid minidriver for touch i2c device calibration best

