small fix

This commit is contained in:
BPanther
2021-05-09 21:25:43 +02:00
committed by Thilo Graf
parent 9a2ecf9ebd
commit 2b3b31cb6e
4 changed files with 7 additions and 3 deletions

View File

@@ -274,7 +274,7 @@ typedef enum {
FP_LED_3_ON = 0x83, FP_LED_3_ON = 0x83,
FP_LED_1_OFF = 0x01, FP_LED_1_OFF = 0x01,
FP_LED_2_OFF = 0x02, FP_LED_2_OFF = 0x02,
FP_LED_3_OFF = 0x03, FP_LED_3_OFF = 0x03
} fp_led_ctrl_t; } fp_led_ctrl_t;
typedef struct { typedef struct {

View File

@@ -17,6 +17,4 @@ typedef struct hal_libversion_t
void hal_get_lib_version(hal_libversion_t *ver); void hal_get_lib_version(hal_libversion_t *ver);
#endif //__VERSION_HAL_H__ #endif //__VERSION_HAL_H__

View File

@@ -34,6 +34,7 @@ hw_caps_t *get_hwcaps(void)
caps.can_shutdown = 1; caps.can_shutdown = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
caps.can_cec = 0; caps.can_cec = 0;
caps.has_fan = 0; caps.has_fan = 0;
caps.has_CI = 2; caps.has_CI = 2;
@@ -51,6 +52,7 @@ hw_caps_t *get_hwcaps(void)
caps.can_shutdown = 1; caps.can_shutdown = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
caps.can_cec = 1; caps.can_cec = 1;
caps.has_fan = 0; caps.has_fan = 0;
caps.has_CI = 2; caps.has_CI = 2;
@@ -68,6 +70,7 @@ hw_caps_t *get_hwcaps(void)
caps.can_shutdown = 1; caps.can_shutdown = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
caps.can_cec = 1; caps.can_cec = 1;
caps.has_fan = 0; caps.has_fan = 0;
caps.has_CI = 2; caps.has_CI = 2;
@@ -102,6 +105,7 @@ hw_caps_t *get_hwcaps(void)
caps.can_shutdown = 1; caps.can_shutdown = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
caps.can_cec = 1; caps.can_cec = 1;
caps.has_fan = 0; caps.has_fan = 0;
caps.has_CI = 2; caps.has_CI = 2;
@@ -119,6 +123,7 @@ hw_caps_t *get_hwcaps(void)
caps.can_shutdown = 1; caps.can_shutdown = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
caps.can_cec = 0; caps.can_cec = 0;
caps.has_fan = 0; caps.has_fan = 0;
caps.has_CI = 2; caps.has_CI = 2;

View File

@@ -45,6 +45,7 @@ hw_caps_t *get_hwcaps(void)
caps.has_button_timer = 1; caps.has_button_timer = 1;
caps.has_HDMI = 1; caps.has_HDMI = 1;
caps.has_SCART = 1; caps.has_SCART = 1;
// caps.has_SCART_input = 1;
strcpy(caps.startup_file, ""); strcpy(caps.startup_file, "");
strcpy(caps.boxvendor, "VU+"); strcpy(caps.boxvendor, "VU+");
strcpy(caps.boxname, "DUO"); strcpy(caps.boxname, "DUO");