libarmbox: introduce has_button_vformat

This commit is contained in:
GetAway
2018-12-01 10:38:17 +01:00
parent d92f990091
commit 2d90952e28
2 changed files with 5 additions and 0 deletions

View File

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

View File

@@ -41,6 +41,7 @@ hw_caps_t *get_hwcaps(void)
caps.display_can_set_brightness = 1;
caps.display_has_statusline = 1;
caps.has_button_timer = 1;
caps.has_button_vformat = 0;
caps.has_HDMI = 1;
strcpy(caps.boxvendor, "VU");
strcpy(caps.boxname, "SOLO4K");
@@ -57,6 +58,7 @@ hw_caps_t *get_hwcaps(void)
caps.display_can_set_brightness = 1;
caps.display_has_statusline = 0;
caps.has_button_timer = 1;
caps.has_button_vformat = 0;
caps.has_HDMI = 1;
strcpy(caps.boxvendor, "AX-Technologies");
strcpy(caps.boxname, "HD51");
@@ -73,6 +75,7 @@ hw_caps_t *get_hwcaps(void)
caps.display_can_set_brightness = 1;
caps.display_has_statusline = 0;
caps.has_button_timer = 1;
caps.has_button_vformat = 0;
caps.has_HDMI = 1;
strcpy(caps.boxvendor, "AX-Technologies");
strcpy(caps.boxname, "HD60");
@@ -89,6 +92,7 @@ hw_caps_t *get_hwcaps(void)
caps.display_can_set_brightness = 1;
caps.display_has_statusline = 0;
caps.has_button_timer = 1;
caps.has_button_vformat = 1;
caps.has_HDMI = 1;
strcpy(caps.boxvendor, "WWIO");
strcpy(caps.boxname, "BRE2ZE4K");