rcinput: add RC_f1..10 keys

Origin commit data
------------------
Branch: ni/coolstream
Commit: 852eba8dee
Author: vanhofen <vanhofen@gmx.de>
Date: 2022-07-15 (Fri, 15 Jul 2022)

Origin message was:
------------------
- rcinput: add RC_f1..10 keys

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2022-07-15 22:07:54 +02:00
parent 9f7607880a
commit ebd514e1ce
2 changed files with 31 additions and 0 deletions

View File

@@ -1721,6 +1721,26 @@ const char * CRCInput::getSpecialKeyName(const unsigned int key)
return "play / pause";
case RC_pvr:
return "pvr";
case RC_f1:
return "f1";
case RC_f2:
return "f2";
case RC_f3:
return "f3";
case RC_f4:
return "f4";
case RC_f5:
return "f5";
case RC_f6:
return "f6";
case RC_f7:
return "f7";
case RC_f8:
return "f8";
case RC_f9:
return "f9";
case RC_f10:
return "f10";
default:
printf("unknown key: %d (0x%x) \n", key, key);
return "unknown";