altos: Add SPI bus parameter to ao_spi_speed
[fw/altos] / src / drivers / ao_lco.h
index 03c810be49fe7f0bfe6a9210323ff342735ad93d..8f77a8e8e7732fd4d8e1012e1f4ddb3054742a70 100644 (file)
@@ -46,8 +46,32 @@ extern uint8_t       ao_lco_firing;          /* fire button pressed */
 
 extern struct ao_pad_query     ao_pad_query;   /* Last received QUERY from pad */
 
+#ifdef AO_LCO_DRAG_RACE_BOX
+#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
+#endif
 #define AO_LCO_PAD_VOLTAGE     0               /* Pad number to show box voltage */
 
+static inline bool
+ao_lco_box_pseudo(uint16_t box)
+{
+       switch (box) {
+#ifdef AO_LCO_LCO_VOLTAGE
+       case AO_LCO_LCO_VOLTAGE:
+               return true;
+#endif
+#ifdef AO_LCO_DRAG_RACE_BOX
+       case AO_LCO_BOX_DRAG:
+               return true;
+#endif
+       default:
+               return false;
+       }
+}
+
 extern uint16_t        ao_lco_min_box, ao_lco_max_box;
 
 #define AO_LCO_MASK_SIZE(n)    (((n) + 7) >> 3)
@@ -81,6 +105,9 @@ ao_lco_step_pad(int8_t dir);
 void
 ao_lco_set_box(uint16_t new_box);
 
+void
+ao_lco_step_box(int8_t dir);
+
 void
 ao_lco_set_armed(uint8_t armed);
 
@@ -144,4 +171,20 @@ ao_lco_init(void);
 uint8_t
 ao_lco_box_present(uint16_t box);
 
+#ifdef AO_LCO_SEARCH_API
+
+void
+ao_lco_search_start(void);
+
+void
+ao_lco_search_box_check(uint16_t box);
+
+void
+ao_lco_search_box_present(uint16_t box);
+
+void
+ao_lco_search_done(void);
+
+#endif /* AO_LCO_SEARCH_API */
+
 #endif /* _AO_LCO_H_ */