-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swapping CTRL + FN #40
Comments
What did you try? |
Looked for the SCANCODE_FN which is 0x0ff so i tried |
The thing about host command 3E0C is that it requires a key matrix position and a new scancode. Since you are targeting a different key (the one labelled ctrl), you will need to update the two parameters here:
...to match the row and column (in that order, in hex!) of the key labelled ctrl. You can figure out where that is here. Instead of "2, 2" that would be "1, c" (row 1, column 12).
But in this case, you should just use the firmware option for it. :) |
Thank you :) |
I'm currently trying to swap the fn and ctrl keys on my framework 13 amd. I was able to map FN to CTRL with
ectool raw 0x3E0C d1,d1,b2,b2,w14
but wasnt able to remap ctrl to fn. Is there any trick?The text was updated successfully, but these errors were encountered: