diff options
author | Keith Packard <keithp@keithp.com> | 2018-07-04 11:58:40 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-07-04 11:58:40 -0700 |
commit | 38fb80e5e6af87f8c734448e4aa69b2c39854903 (patch) | |
tree | fab055df82e144a2953810049fd68c9d56dbb120 /src/drivers/ao_lco_two.c | |
parent | 2214ad7c0f268be76c0b027eef9d1dc406f23b28 (diff) |
altos: Make LCO search directly drive pad/box displays
Don't use ao_lco_show as that has other logic too.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/drivers/ao_lco_two.c')
-rw-r--r-- | src/drivers/ao_lco_two.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/drivers/ao_lco_two.c b/src/drivers/ao_lco_two.c index 2fa0a21f..6f2d81ff 100644 --- a/src/drivers/ao_lco_two.c +++ b/src/drivers/ao_lco_two.c @@ -46,7 +46,19 @@ ao_lco_wakeup(void) } void -ao_lco_show_display(void) +ao_lco_show_pad(uint8_t pad) +{ + (void) pad; +} + +void +ao_lco_show_box(uint16_t box) +{ + (void) box; +} + +void +ao_lco_show(void) { } |