- introduce caps.has_button_timer

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-03-11 22:41:07 +01:00
committed by Thilo Graf
parent 8095d83353
commit 828b4b439a
2 changed files with 2 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ typedef struct hw_caps
int display_can_set_brightness; int display_can_set_brightness;
int display_can_deepstandby; int display_can_deepstandby;
int display_has_statusline; int display_has_statusline;
int has_button_timer;
char boxvendor[64]; char boxvendor[64];
char boxname[64]; char boxname[64];
char boxarch[64]; char boxarch[64];

View File

@@ -37,6 +37,7 @@ hw_caps_t *get_hwcaps(void)
caps.display_can_deepstandby = 0; caps.display_can_deepstandby = 0;
caps.display_can_set_brightness = 1; caps.display_can_set_brightness = 1;
caps.display_has_statusline = 0; caps.display_has_statusline = 0;
caps.has_button_timer = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
strcpy(caps.boxvendor, "AX-Technologies"); strcpy(caps.boxvendor, "AX-Technologies");
strcpy(caps.boxname, "HD51"); strcpy(caps.boxname, "HD51");