rcinput: fix non existing info key for vu+

Origin commit data
------------------
Branch: ni/coolstream
Commit: ae10e24317
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-10-03 (Thu, 03 Oct 2019)

Origin message was:
------------------
- rcinput: fix non existing info key for vu+

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2019-10-03 01:26:27 +02:00
parent dc5acd1bf4
commit 3fbe67116b
2 changed files with 9 additions and 1 deletions

View File

@@ -9,6 +9,10 @@
cat << EOF
// rcsim.h - automatically created from driver/rcinput.h
#ifndef KEY_NONEXISTING
#define KEY_NONEXISTING 0x0
#endif
#ifndef KEY_GAMES
#define KEY_GAMES 0x1a1 /* Media Select Games */
#endif

View File

@@ -54,6 +54,10 @@
#include <driver/neutrino_msg_t.h>
#ifndef KEY_NONEXISTING
#define KEY_NONEXISTING 0x0
#endif
#ifndef KEY_OK
#define KEY_OK 0x160
#endif
@@ -224,7 +228,7 @@ class CRCInput
RC_radio = KEY_RADIO,
RC_text = KEY_TEXT,
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUULTIMO4K || BOXMODEL_VUZERO4K || BOXMODEL_VUDUO
RC_info = 0xFFFE,
RC_info = KEY_NONEXISTING,
RC_epg = KEY_INFO,
#else
RC_info = KEY_INFO,