diff options
author | Keith Packard <keithp@keithp.com> | 2017-04-04 16:05:15 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-04-04 16:05:15 -0700 |
commit | 86d5119f19b5f3131d224982e011fd233b48aa22 (patch) | |
tree | a7dbb710c0393b73de170d115236b508b9e02dcd /src/cortexelf-v1/ao_cortexelf.c | |
parent | 301b724d2169f4ac46d921f518455c783e1dd894 (diff) |
cortexelf-v1: More 1802 noodling
Add code to track the address and data displays, change how 1802 pin
tracking works
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/cortexelf-v1/ao_cortexelf.c')
-rw-r--r-- | src/cortexelf-v1/ao_cortexelf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cortexelf-v1/ao_cortexelf.c b/src/cortexelf-v1/ao_cortexelf.c index 77fbd0c0..decd6ef5 100644 --- a/src/cortexelf-v1/ao_cortexelf.c +++ b/src/cortexelf-v1/ao_cortexelf.c @@ -31,6 +31,8 @@ #include <ao_button.h> #include <ao_event.h> #include <ao_as1107.h> +#include <ao_hex.h> +#include <ao_1802.h> struct ao_task ball_task; @@ -274,6 +276,10 @@ main(void) ao_as1107_init(); + ao_1802_init(); + + ao_hex_init(); + ao_config_init(); ao_add_task(&ball_task, ao_ball, "ball"); |