diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-20 21:02:59 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-20 21:02:59 -0800 |
commit | c5734e9e38bc583aff305e3c534cfb8b9088bc71 (patch) | |
tree | f02f3dafea7e704a7164011700c56289ab9fed0a /src/stm-vga/Makefile | |
parent | 83cfc271e37f568cb1d821cf6a96750f3ca3854c (diff) |
altos/draw: Add a reasonable API for drawing, add lines.lisp
Also, move the demo drawing into the stm-vga app and out of the vga
driver.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm-vga/Makefile')
-rw-r--r-- | src/stm-vga/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/stm-vga/Makefile b/src/stm-vga/Makefile index 5db8c641..2a600330 100644 --- a/src/stm-vga/Makefile +++ b/src/stm-vga/Makefile @@ -14,6 +14,7 @@ INC = \ ao_product.h \ ao_vga.h \ ao_draw.h \ + ao_draw_int.h \ ao_font.h # @@ -32,16 +33,19 @@ ALTOS_SRC = \ ao_timer.c \ ao_lcd_stm.c \ ao_lcd_font.c \ + ao_vga.c \ ao_blt.c \ + ao_copy.c \ + ao_rect.c \ ao_text.c \ + ao_line.c \ ao_mutex.c \ ao_dma_stm.c \ ao_adc_stm.c \ ao_data.c \ ao_i2c_stm.c \ ao_usb_stm.c \ - ao_exti_stm.c \ - ao_vga.c + ao_exti_stm.c PRODUCT=StmVga-v0.0 IDPRODUCT=0x000a |