Develop arm win11 i8042 keyboard driver code:0xC0000E5
Hi:
I already in test mode.
testsigning on
nointegritychecks on
I am trying to develop a i8042 ps2 keyboard driver. On the first step, I just use a basic KMDF framework. And I fill the inf file with:
Class = Keyboard ; TODO: specify appropriate Class
ClassGuid = {4d36e96b-e325-11ce-bfc1-08002be10318} ; TODO: specify appropriate ClassGuid
However, It can't be successfully installed. The problem status: 0xC0000E5.
But I changed
Class = Display ; TODO: specify appropriate Class
ClassGuid = {4d36e968-e325-11ce-bfc1-08002be10318} ; TODO: specify appropriate ClassGuid
It is successfully installed.
Does windows allow us to develop a keyboard(i8042) driver?
Besides, Another question, does arm win11 already include standard i8042 driver?
Thank you.