Support and General Use > User Interface and Voice
Fuze+ how to change the WPS bottom left and right hotkeys?!?!
(1/1)
thegreatyashu:
By default on the fuze+, if you hold the bottom left in the WPS, you get the speed/pitch menu. This is REALLY REALLY annoying because of the touch pad. This menu comes up ALL THE TIME. I am always accidentally changing the pitch or the speed. There is no option to change this menu or turn it off. It seems hard coded. It is not controlled by the hotkey selection in the settings, nor is the bottom right "hold" menu either (it brings up the file/song tag info).
How do you change button mapping?
cela:
Just comment out the buttons in the the source code and make your own build.
I also comment out the volume control on the touchpad too so I don't accidently touch that and set it too high.
The side volume control is enough for me.
File to change is keymap-fuzeplus.c as below.
--- Code: --- { ACTION_WPS_VOLUP, BUTTON_VOL_UP, BUTTON_NONE },
{ ACTION_WPS_VOLUP, BUTTON_VOL_UP|BUTTON_REPEAT, BUTTON_NONE },
//{ ACTION_WPS_VOLUP, BUTTON_UP, BUTTON_NONE },
//{ ACTION_WPS_VOLUP, BUTTON_UP|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_WPS_VOLDOWN, BUTTON_VOL_DOWN, BUTTON_NONE },
{ ACTION_WPS_VOLDOWN, BUTTON_VOL_DOWN|BUTTON_REPEAT, BUTTON_NONE },
//{ ACTION_WPS_VOLDOWN, BUTTON_DOWN, BUTTON_NONE },
//{ ACTION_WPS_VOLDOWN, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
{ ACTION_WPS_MENU, BUTTON_BACK, BUTTON_NONE },
//{ ACTION_WPS_BROWSE, BUTTON_SELECT|BUTTON_REL, BUTTON_SELECT },
//{ ACTION_WPS_PITCHSCREEN, BUTTON_BOTTOMLEFT|BUTTON_REPEAT, BUTTON_BOTTOMLEFT },
//{ ACTION_WPS_QUICKSCREEN, BUTTON_BOTTOMLEFT|BUTTON_REL, BUTTON_BOTTOMLEFT },
//{ ACTION_WPS_ID3SCREEN, BUTTON_BOTTOMRIGHT|BUTTON_REPEAT, BUTTON_BOTTOMRIGHT },
--- End code ---
These changes make the touchpad far more manageable for me.
Navigation
[0] Message Index
Go to full version