X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fdrivers%2Fao_lco.h;h=8f77a8e8e7732fd4d8e1012e1f4ddb3054742a70;hb=470be148d9a9dcd45609942d17fcf7c1555375f3;hp=03c810be49fe7f0bfe6a9210323ff342735ad93d;hpb=7b40813fdafce4ebd635aceb4c32355339a4d98d;p=fw%2Faltos diff --git a/src/drivers/ao_lco.h b/src/drivers/ao_lco.h index 03c810be..8f77a8e8 100644 --- a/src/drivers/ao_lco.h +++ b/src/drivers/ao_lco.h @@ -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_ */