X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fcore%2Fao.h;h=1aff3d49e708d3d113a30be13f98d3a2c222462d;hb=81648829defbaf49fc98c4520540f7a20c50c417;hp=87e69e192e7e99a551136184ef1af9549223c101;hpb=4b13d3c659240e5a8347b1ba7ab0bf1d8355eba3;p=fw%2Faltos diff --git a/src/core/ao.h b/src/core/ao.h index 87e69e19..1aff3d49 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -170,6 +170,10 @@ ao_cmd_hex(void); void ao_cmd_decimal(void); +/* Read a single hex nibble off stdin. */ +uint8_t +ao_getnibble(void); + uint8_t ao_match_word(__code char *word); @@ -558,8 +562,10 @@ extern const char const * const ao_state_names[]; union ao_monitor { struct ao_telemetry_raw_recv raw; struct ao_telemetry_all_recv all; +#if LEGACY_MONITOR struct ao_telemetry_orig_recv orig; struct ao_telemetry_tiny_recv tiny; +#endif }; extern __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING];