From 0fe4d3a037fd8989227604805a2f130eb67038de Mon Sep 17 00:00:00 2001 From: inmarket Date: Mon, 28 Oct 2013 19:18:24 +1000 Subject: [PATCH] Add readme's to the board directories --- boards/base/Olimex-SAM7EX256-GE12/board.mk | 6 ------ boards/base/Olimex-SAM7EX256-GE12/readme.txt | 15 ++++++++++++--- boards/base/Olimex-SAM7EX256-GE8/board.mk | 6 ------ boards/base/Olimex-SAM7EX256-GE8/readme.txt | 14 ++++++++++++++ 4 files changed, 26 insertions(+), 15 deletions(-) create mode 100644 boards/base/Olimex-SAM7EX256-GE8/readme.txt diff --git a/boards/base/Olimex-SAM7EX256-GE12/board.mk b/boards/base/Olimex-SAM7EX256-GE12/board.mk index 5230b6b4..662178a6 100644 --- a/boards/base/Olimex-SAM7EX256-GE12/board.mk +++ b/boards/base/Olimex-SAM7EX256-GE12/board.mk @@ -1,14 +1,8 @@ GFXINC += $(GFXLIB)/boards/base/Olimex-SAM7EX256-GE12 $(GFXLIB)/boards/base/Olimex-SAM7EX256-GE8 GFXSRC += GFXDEFS += -DGFX_USE_OS_CHIBIOS=TRUE - -#This board has a Nokia6610GE12 display include $(GFXLIB)/drivers/gdisp/Nokia6610GE12/gdisp_lld.mk -#This board supports GADC via the AT91SAM7 driver include $(GFXLIB)/drivers/gadc/AT91SAM7/gadc_lld.mk -#This board supports GINPUT dials via the GADC driver include $(GFXLIB)/drivers/ginput/dial/GADC/ginput_lld.mk -#This board supports GINPUT toggles via the Pal driver include $(GFXLIB)/drivers/ginput/toggle/Pal/ginput_lld.mk -#This board support GAUDIN via the GADC driver include $(GFXLIB)/drivers/gaudin/gadc/gaudin_lld.mk diff --git a/boards/base/Olimex-SAM7EX256-GE12/readme.txt b/boards/base/Olimex-SAM7EX256-GE12/readme.txt index b84e5575..ebf1497a 100644 --- a/boards/base/Olimex-SAM7EX256-GE12/readme.txt +++ b/boards/base/Olimex-SAM7EX256-GE12/readme.txt @@ -1,6 +1,15 @@ -This is the same as the Olimex-SAM7EX256-GE8 board except that it uses the GE12 display controller -instead of the GE8 display controller. +This directory contains the interface for the Olimex SAM7EX256 board +running under ChibiOS. + +On this board uGFX currently supports: + - GDISP via the Nokia6610GE12 display + - GADC via the AT91SAM7 driver + - GINPUT-dials via the GADC driver + - GINPUT-toggles via the Pal driver + - GAUDIN via the GADC driver + +Note there are two variants of this board - one with the GE8 display + and one with the GE12 display. This one is for the GE12 display. See the Olimex-SAM7EX256-GE8 board file directory for example Makefiles etc. Don't forget to change the example Makefile to point the GFX board file to the GE12 instead of the GE8. - diff --git a/boards/base/Olimex-SAM7EX256-GE8/board.mk b/boards/base/Olimex-SAM7EX256-GE8/board.mk index c11a0bbb..6abd9a33 100644 --- a/boards/base/Olimex-SAM7EX256-GE8/board.mk +++ b/boards/base/Olimex-SAM7EX256-GE8/board.mk @@ -1,14 +1,8 @@ GFXINC += $(GFXLIB)/boards/base/Olimex-SAM7EX256-GE8 GFXSRC += GFXDEFS += -DGFX_USE_OS_CHIBIOS=TRUE - -#This board has a Nokia6610GE8 display include $(GFXLIB)/drivers/gdisp/Nokia6610GE8/gdisp_lld.mk -#This board supports GADC via the AT91SAM7 driver include $(GFXLIB)/drivers/gadc/AT91SAM7/gadc_lld.mk -#This board supports GINPUT dials via the GADC driver include $(GFXLIB)/drivers/ginput/dial/GADC/ginput_lld.mk -#This board supports GINPUT toggles via the Pal driver include $(GFXLIB)/drivers/ginput/toggle/Pal/ginput_lld.mk -#This board support GAUDIN via the GADC driver include $(GFXLIB)/drivers/gaudin/gadc/gaudin_lld.mk diff --git a/boards/base/Olimex-SAM7EX256-GE8/readme.txt b/boards/base/Olimex-SAM7EX256-GE8/readme.txt new file mode 100644 index 00000000..01b3f8b4 --- /dev/null +++ b/boards/base/Olimex-SAM7EX256-GE8/readme.txt @@ -0,0 +1,14 @@ +This directory contains the interface for the Olimex SAM7EX256 board +running under ChibiOS. + +On this board uGFX currently supports: + - GDISP via the Nokia6610GE8 display + - GADC via the AT91SAM7 driver + - GINPUT-dials via the GADC driver + - GINPUT-toggles via the Pal driver + - GAUDIN via the GADC driver + +Note there are two variants of this board - one with the GE8 display + and one with the GE12 display. This one is for the GE8 display. + +There is an example Makefile and project in the examples directory.