rcinput: add RC_back

Origin commit data
------------------
Branch: ni/coolstream
Commit: c58d74674b
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-07-13 (Tue, 13 Jul 2021)

Origin message was:
------------------
- rcinput: add RC_back

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-07-13 23:37:43 +02:00
parent 93c66140cd
commit 7924a24177
2 changed files with 3 additions and 0 deletions

View File

@@ -1589,6 +1589,8 @@ const char * CRCInput::getSpecialKeyName(const unsigned int key)
return "standby"; return "standby";
case RC_home: case RC_home:
return "home"; return "home";
case RC_back:
return "back";
case RC_setup: case RC_setup:
return "setup"; return "setup";
case RC_red: case RC_red:

View File

@@ -207,6 +207,7 @@ class CRCInput
RC_plus = KEY_VOLUMEUP, /* /include/linux/input.h: #define KEY_VOLUMEUP 115 */ RC_plus = KEY_VOLUMEUP, /* /include/linux/input.h: #define KEY_VOLUMEUP 115 */
RC_standby = KEY_POWER, /* /include/linux/input.h: #define KEY_POWER 116 */ RC_standby = KEY_POWER, /* /include/linux/input.h: #define KEY_POWER 116 */
RC_help = KEY_HELP, /* /include/linux/input.h: #define KEY_HELP 138 */ RC_help = KEY_HELP, /* /include/linux/input.h: #define KEY_HELP 138 */
RC_back = KEY_BACK, /* /include/linux/input.h: #define KEY_BACK 158 */
RC_home = KEY_HOME, /* /include/linux/input.h: #define KEY_HOME 102 */ RC_home = KEY_HOME, /* /include/linux/input.h: #define KEY_HOME 102 */
RC_setup = KEY_MENU, /* /include/linux/input.h: #define KEY_SETUP 141 */ RC_setup = KEY_MENU, /* /include/linux/input.h: #define KEY_SETUP 141 */
RC_topleft = KEY_TOPLEFT, RC_topleft = KEY_TOPLEFT,