telelco-v3.0: Add info page
[fw/altos] / src / drivers / ao_lco.h
index 8f77a8e8e7732fd4d8e1012e1f4ddb3054742a70..f931872b5b0ac14fcb61a35d2b7b2dc3fbc181fa 100644 (file)
@@ -39,7 +39,7 @@ extern uint8_t        ao_lco_drag_race;       /* true when drag race mode enabled */
 #endif
 
 extern uint8_t ao_lco_pad;             /* Currently selected pad */
-extern uint16_t        ao_lco_box;             /* Currently selected box */
+extern int16_t ao_lco_box;             /* Currently selected box */
 
 extern uint8_t ao_lco_armed;           /* armed mode active */
 extern uint8_t ao_lco_firing;          /* fire button pressed */
@@ -50,13 +50,33 @@ extern struct ao_pad_query  ao_pad_query;   /* Last received QUERY from pad */
 #define AO_LCO_BOX_DRAG                0               /* Box number to enable drag race mode (old LCO bits) */
 #define AO_LCO_BOX_FIRST       AO_LCO_BOX_DRAG
 #else
-#define AO_LCO_LCO_VOLTAGE     0               /* Box number to show LCO voltage */
-#define AO_LCO_BOX_FIRST       AO_LCO_LCO_VOLTAGE
+# define AO_LCO_LCO_VOLTAGE    0               /* Box number to show LCO voltage */
+# ifdef AO_LCO_HAS_INFO
+#  define AO_LCO_INFO          -3
+#  ifndef AO_LCO_BOX_FIRST
+#   define AO_LCO_BOX_FIRST AO_LCO_INFO
+#  endif
+# endif
+# ifdef AO_LCO_HAS_BACKLIGHT
+#   define AO_LCO_BACKLIGHT    -2
+#   ifndef AO_LCO_BOX_FIRST
+#    define AO_LCO_BOX_FIRST AO_LCO_BACKLIGHT
+#   endif
+# endif
+# ifdef AO_LCO_HAS_CONTRAST
+#  define AO_LCO_CONTRAST      -1
+#  ifndef AO_LCO_BOX_FIRST
+#   define AO_LCO_BOX_FIRST    AO_LCO_CONTRAST
+#  endif
+# endif
+# ifndef AO_LCO_BOX_FIRST
+#  define AO_LCO_BOX_FIRST     AO_LCO_LCO_VOLTAGE
+# endif
 #endif
 #define AO_LCO_PAD_VOLTAGE     0               /* Pad number to show box voltage */
 
 static inline bool
-ao_lco_box_pseudo(uint16_t box)
+ao_lco_box_pseudo(int16_t box)
 {
        switch (box) {
 #ifdef AO_LCO_LCO_VOLTAGE
@@ -66,13 +86,25 @@ ao_lco_box_pseudo(uint16_t box)
 #ifdef AO_LCO_DRAG_RACE_BOX
        case AO_LCO_BOX_DRAG:
                return true;
+#endif
+#ifdef AO_LCO_CONTRAST
+       case AO_LCO_CONTRAST:
+               return true;
+#endif
+#ifdef AO_LCO_BACKLIGHT
+       case AO_LCO_BACKLIGHT:
+               return true;
+#endif
+#ifdef AO_LCO_INFO
+       case AO_LCO_INFO:
+               return true;
 #endif
        default:
                return false;
        }
 }
 
-extern uint16_t        ao_lco_min_box, ao_lco_max_box;
+extern int16_t ao_lco_min_box, ao_lco_max_box;
 
 #define AO_LCO_MASK_SIZE(n)    (((n) + 7) >> 3)
 #define AO_LCO_MASK_ID(n)      ((n) >> 3)
@@ -91,10 +123,10 @@ void
 ao_lco_update(void);
 
 uint8_t
-ao_lco_pad_present(uint16_t box, uint8_t pad);
+ao_lco_pad_present(int16_t box, uint8_t pad);
 
 uint8_t
-ao_lco_pad_first(uint16_t box);
+ao_lco_pad_first(int16_t box);
 
 void
 ao_lco_set_pad(uint8_t new_pad);
@@ -103,7 +135,7 @@ void
 ao_lco_step_pad(int8_t dir);
 
 void
-ao_lco_set_box(uint16_t new_box);
+ao_lco_set_box(int16_t new_box);
 
 void
 ao_lco_step_box(int8_t dir);
@@ -160,7 +192,7 @@ void
 ao_lco_show_pad(uint8_t pad);
 
 void
-ao_lco_show_box(uint16_t box);
+ao_lco_show_box(int16_t box);
 
 void
 ao_lco_show(void);
@@ -169,7 +201,23 @@ void
 ao_lco_init(void);
 
 uint8_t
-ao_lco_box_present(uint16_t box);
+ao_lco_box_present(int16_t box);
+
+#ifdef AO_LCO_HAS_CONTRAST
+void
+ao_lco_set_contrast(int32_t contrast);
+
+int32_t
+ao_lco_get_contrast(void);
+#endif
+
+#ifdef AO_LCO_HAS_BACKLIGHT
+void
+ao_lco_set_backlight(int32_t backlight);
+
+int32_t
+ao_lco_get_backlight(void);
+#endif
 
 #ifdef AO_LCO_SEARCH_API
 
@@ -177,10 +225,10 @@ void
 ao_lco_search_start(void);
 
 void
-ao_lco_search_box_check(uint16_t box);
+ao_lco_search_box_check(int16_t box);
 
 void
-ao_lco_search_box_present(uint16_t box);
+ao_lco_search_box_present(int16_t box);
 
 void
 ao_lco_search_done(void);