added more captures

This commit is contained in:
dekunukem
2021-10-20 22:57:14 +01:00
parent 0b09f5b332
commit 9f4f63ba74
4 changed files with 16 additions and 0 deletions

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -0,0 +1,16 @@
very useful video:
https://youtu.be/wdgULBpRoXk
search for PID ACK for data packet
from keypress to PID ACK on USB line: 10 to 20ms
catting /dev/input/event0 in bash: 490us
printing via python3: 1ms
script below:
fff = open("/dev/input/event0", "rb" )
while 1:
data = fff.read(24)
print(data)