Browse Source
The only include path now needed is for drivers (in particular GDISP drivers)remotes/origin_old/ugfx_release_2.6
158 changed files with 284 additions and 314 deletions
@ -1,5 +1,2 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/gadc/AT91SAM7/gadc_lld.c |
|||
|
|||
# Required include directories
|
|||
GFXINC += $(GFXLIB)/drivers/gadc/AT91SAM7 |
|||
GFXSRC += $(GFXLIB)/drivers/gadc/AT91SAM7/gadc_lld_AT91SAM7.c |
|||
|
@ -1,6 +1,4 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/Win32/gaudio_record_lld.c \
|
|||
$(GFXLIB)/drivers/gaudio/Win32/gaudio_play_lld.c |
|||
|
|||
GFXINC += $(GFXLIB)/drivers/gaudio/Win32 |
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/Win32/gaudio_record_Win32.c \
|
|||
$(GFXLIB)/drivers/gaudio/Win32/gaudio_play_Win32.c |
|||
GFXLIBS += winmm |
|||
|
@ -1,5 +1,2 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/pwm/gaudio_play_lld.c |
|||
|
|||
# Required include directories
|
|||
GFXINC += $(GFXLIB)/drivers/gaudio/pwm |
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/pwm/gaudio_play_pwm.c |
|||
|
@ -1,7 +1,2 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/vs1053/gaudio_play_lld.c |
|||
|
|||
# Required include directories
|
|||
GFXINC += $(GFXLIB)/drivers/gaudio/vs1053 |
|||
|
|||
#GFXDEFS += -DGFX_USE_GTIMER=GFX_USE_GAUDIO
|
|||
GFXSRC += $(GFXLIB)/drivers/gaudio/vs1053/gaudio_play_vs1053.c |
|||
|
@ -1,5 +1,2 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/dial/GADC/ginput_lld_dial.c |
|||
|
|||
# Required include directories
|
|||
GFXINC += $(GFXLIB)/drivers/ginput/dial/GADC |
|||
GFXSRC += $(GFXLIB)/drivers/ginput/dial/GADC/ginput_lld_dial_GADC.c |
|||
|
@ -1,5 +1,2 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/toggle/Pal/ginput_lld_toggle.c |
|||
|
|||
# Required include directories
|
|||
GFXINC += $(GFXLIB)/drivers/ginput/toggle/Pal |
|||
GFXSRC += $(GFXLIB)/drivers/ginput/toggle/Pal/ginput_lld_toggle_Pal.c |
|||
|
@ -1,24 +1,24 @@ |
|||
/*
|
|||
* This file is subject to the terms of the GFX License. If a copy of |
|||
* the license was not distributed with this file, you can obtain one at: |
|||
* |
|||
* http://ugfx.org/license.html
|
|||
*/ |
|||
|
|||
#include "gfx.h" |
|||
|
|||
#if (GFX_USE_GINPUT && GINPUT_NEED_TOGGLE) /*|| defined(__DOXYGEN__)*/ |
|||
|
|||
#include "src/ginput/ginput_driver_toggle.h" |
|||
|
|||
GINPUT_TOGGLE_DECLARE_STRUCTURE(); |
|||
|
|||
void ginput_lld_toggle_init(const GToggleConfig *ptc) { |
|||
palSetGroupMode(((IOBus *)ptc->id)->portid, ptc->mask, 0, ptc->mode); |
|||
} |
|||
|
|||
unsigned ginput_lld_toggle_getbits(const GToggleConfig *ptc) { |
|||
return palReadBus((IOBus *)ptc->id); |
|||
} |
|||
|
|||
#endif /* GFX_USE_GINPUT && GINPUT_NEED_TOGGLE */ |
|||
/*
|
|||
* This file is subject to the terms of the GFX License. If a copy of |
|||
* the license was not distributed with this file, you can obtain one at: |
|||
* |
|||
* http://ugfx.org/license.html
|
|||
*/ |
|||
|
|||
#include "gfx.h" |
|||
|
|||
#if (GFX_USE_GINPUT && GINPUT_NEED_TOGGLE) /*|| defined(__DOXYGEN__)*/ |
|||
|
|||
#include "../../../../src/ginput/ginput_driver_toggle.h" |
|||
|
|||
GINPUT_TOGGLE_DECLARE_STRUCTURE(); |
|||
|
|||
void ginput_lld_toggle_init(const GToggleConfig *ptc) { |
|||
palSetGroupMode(((IOBus *)ptc->id)->portid, ptc->mask, 0, ptc->mode); |
|||
} |
|||
|
|||
unsigned ginput_lld_toggle_getbits(const GToggleConfig *ptc) { |
|||
return palReadBus((IOBus *)ptc->id); |
|||
} |
|||
|
|||
#endif /* GFX_USE_GINPUT && GINPUT_NEED_TOGGLE */ |
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/ADS7843/gmouse_lld_ADS7843.c |
|||
|
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/FT5x06/gmouse_lld_FT5x06.c |
|||
|
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/MAX11802/gmouse_lld_MAX11802.c |
|||
|
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/MCU/gmouse_lld_MCU.c |
|||
|
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/STMPE610/gmouse_lld_STMPE610.c |
|||
|
@ -1,2 +1 @@ |
|||
# List the required driver.
|
|||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/STMPE811/gmouse_lld_STMPE811.c |
|||
|