Make all include paths in ugfx relative.
The only include path now needed is for drivers (in particular GDISP drivers)
This commit is contained in:
parent
a69849177d
commit
c5a86757bd
158 changed files with 284 additions and 314 deletions
boards/base/STM32F746-Discovery
drivers
gadc/AT91SAM7
gaudio
Win32
gadc
pwm
vs1053
gdisp
ED060SC4
HX8347D
ILI9320
ILI9325
ILI9341
ILI93xx
ILI9481
LGDP4532
Nokia6610GE12
Nokia6610GE8
PCD8544
PCF8812
R61505U
RA8875
S6D1121
SPFD54124B
SSD1289
SSD1306
SSD1331
SSD1351
SSD1963
SSD2119
ST7565
STM32F429iDiscovery
STM32LTDC
TLS8204
TestStub
framebuffer
ginput
dial/GADC
toggle/Pal
touch
multiple
src
|
@ -1,4 +1,4 @@
|
|||
#include "gfx.h"
|
||||
#include "../../../gfx.h"
|
||||
#include "stm32f746g_discovery_sdram.h"
|
||||
#include "stm32f7xx_hal_rcc.h"
|
||||
#include "stm32f7xx_hal_dma.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "gfx.h"
|
||||
#include "../../../gfx.h"
|
||||
#include "stm32f7xx.h"
|
||||
|
||||
#if !defined (HSE_VALUE)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "gfx.h"
|
||||
#include "../../../gfx.h"
|
||||
#include "stm32f7xx_hal.h"
|
||||
|
||||
#if GFX_USE_OS_CHIBIOS
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#if GFX_USE_GADC
|
||||
|
||||
#include "src/gadc/gadc_driver.h"
|
||||
#include "../../../src/gadc/gadc_driver.h"
|
||||
|
||||
static uint32_t nextfreq;
|
||||
|
|
@ -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
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#if GFX_USE_GAUDIO && GAUDIO_NEED_PLAY
|
||||
|
||||
/* Include the driver defines */
|
||||
#include "src/gaudio/gaudio_driver_play.h"
|
||||
#include "../../../src/gaudio/gaudio_driver_play.h"
|
||||
|
||||
#undef Red
|
||||
#undef Green
|
|
@ -13,7 +13,7 @@
|
|||
#if GFX_USE_GAUDIO && GAUDIO_NEED_RECORD
|
||||
|
||||
/* Include the driver defines */
|
||||
#include "src/gaudio/gaudio_driver_record.h"
|
||||
#include "../../../src/gaudio/gaudio_driver_record.h"
|
||||
|
||||
#undef Red
|
||||
#undef Green
|
|
@ -1,8 +1,5 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/gaudio/gadc/gaudio_record_lld.c
|
||||
|
||||
# Required include directories
|
||||
GFXINC += $(GFXLIB)/drivers/gaudio/gadc
|
||||
GFXSRC += $(GFXLIB)/drivers/gaudio/gadc/gaudio_record_gadc.c
|
||||
|
||||
# Make sure the GADC sub-system is turned on
|
||||
GFXDEFS += -DGFX_USE_GADC=GAUDIO_NEED_RECORD
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#endif
|
||||
|
||||
/* Include the driver defines */
|
||||
#include "src/gaudio/gaudio_driver_record.h"
|
||||
#include "../../../src/gaudio/gaudio_driver_record.h"
|
||||
|
||||
static void gadcCallbackI(void) {
|
||||
GDataBuffer *pd;
|
|
@ -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
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#if GFX_USE_GAUDIO && GAUDIO_NEED_PLAY
|
||||
|
||||
/* Include the driver defines */
|
||||
#include "src/gaudio/gaudio_driver_play.h"
|
||||
#include "../../../src/gaudio/gaudio_driver_play.h"
|
||||
|
||||
/* Forward definition */
|
||||
static void gaudio_play_pwm_timer_callbackI(void);
|
|
@ -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
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#if GFX_USE_GAUDIO && GAUDIO_NEED_PLAY
|
||||
|
||||
/* Include the driver defines */
|
||||
#include "src/gaudio/gaudio_driver_play.h"
|
||||
#include "../../../src/gaudio/gaudio_driver_play.h"
|
||||
|
||||
/* Include the vs1053 registers */
|
||||
#include "drivers/gaudio/vs1053/vs1053.h"
|
||||
#include "vs1053.h"
|
||||
|
||||
/* Include the board interface */
|
||||
#include "gaudio_play_board.h"
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ED060SC4
|
||||
#include "drivers/gdisp/ED060SC4/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ED060SC4.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_HX8347D
|
||||
#include "drivers/gdisp/HX8347D/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_HX8347D.h"
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
|||
/* Driver local functions. */
|
||||
/*===========================================================================*/
|
||||
|
||||
#include "drivers/gdisp/HX8347D/HX8347D.h"
|
||||
#include "HX8347D.h"
|
||||
|
||||
#define write_reg(g, reg, data) { write_index(g, reg); write_data(g, data); }
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ILI9320
|
||||
#include "drivers/gdisp/ILI9320/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ILI9320.h"
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ILI9325
|
||||
#include "drivers/gdisp/ILI9325/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ILI9325.h"
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ILI9341
|
||||
#include "drivers/gdisp/ILI9341/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ILI9341.h"
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
|||
#define GDISP_INITIAL_BACKLIGHT 100
|
||||
#endif
|
||||
|
||||
#include "drivers/gdisp/ILI9341/ILI9341.h"
|
||||
#include "ILI9341.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local functions. */
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ILI93xx
|
||||
#include "drivers/gdisp/ILI93xx/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ILI93xx.h"
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ILI9481
|
||||
#include "drivers/gdisp/ILI9481/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ILI9481.h"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_LGDP4532
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_LGDP4532.h"
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_Nokia6610GE12
|
||||
#include "drivers/gdisp/Nokia6610GE12/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_Nokia6610GE12.h"
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
/* Driver local definitions. */
|
||||
/*===========================================================================*/
|
||||
|
||||
#include "drivers/gdisp/Nokia6610GE12/GE12.h"
|
||||
#include "GE12.h"
|
||||
|
||||
#define GDISP_SCAN_LINES 132
|
||||
#define GDISP_SLEEP_SIZE 32 /* Sleep mode window lines - this must be 32 on this controller */
|
||||
|
|
|
@ -51,8 +51,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_Nokia6610GE8
|
||||
#include "drivers/gdisp/Nokia6610GE8/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_Nokia6610GE8.h"
|
||||
|
||||
|
@ -60,7 +60,7 @@
|
|||
/* Driver local definitions. */
|
||||
/*===========================================================================*/
|
||||
|
||||
#include "drivers/gdisp/Nokia6610GE8/GE8.h"
|
||||
#include "GE8.h"
|
||||
|
||||
#define GDISP_SCAN_LINES 132
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_PCD8544
|
||||
#include "drivers/gdisp/PCD8544/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
#include "board_PCD8544.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -26,7 +26,7 @@
|
|||
|
||||
#define GDISP_FLG_NEEDFLUSH (GDISP_FLG_DRIVER << 0)
|
||||
|
||||
#include "drivers/gdisp/PCD8544/PCD8544.h"
|
||||
#include "PCD8544.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local routines. */
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_PCF8812
|
||||
#include "drivers/gdisp/PCF8812/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
#include "board_PCF8812.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#define GDISP_FLG_NEEDFLUSH (GDISP_FLG_DRIVER << 0)
|
||||
|
||||
#include "drivers/gdisp/PCF8812/PCF8812.h"
|
||||
#include "PCF8812.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local routines. */
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_R61505U
|
||||
#include "drivers/gdisp/R61505U/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_R61505U.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP /*|| defined(__DOXYGEN__)*/
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_RA8875
|
||||
#include "drivers/gdisp/RA8875/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
/* include the users board interface */
|
||||
#include "board_RA8875.h"
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_S6D1121
|
||||
#include "drivers/gdisp/S6D1121/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_S6D1121.h"
|
||||
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
#undef GDISP_SCREEN_WIDTH
|
||||
#endif
|
||||
|
||||
#include "drivers/gdisp/SPFD54124B/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SPFD54124B.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD1289
|
||||
#include "drivers/gdisp/SSD1289/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SSD1289.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD1306
|
||||
#include "drivers/gdisp/SSD1306/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SSD1306.h"
|
||||
#include <string.h> // for memset
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
#define GDISP_FLG_NEEDFLUSH (GDISP_FLG_DRIVER<<0)
|
||||
|
||||
#include "drivers/gdisp/SSD1306/SSD1306.h"
|
||||
#include "SSD1306.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local functions. */
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD1331
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SSD1331.h"
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD1351
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SSD1351.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD1963
|
||||
#include "drivers/gdisp/SSD1963/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#define CALC_PERIOD(w,b,f,p) (p+b+w+f)
|
||||
#define CALC_FPR(w,h,hb,hf,hp,vb,vf,vp,fps) ((fps * CALC_PERIOD(w,hb,hf,hp) * CALC_PERIOD(h,vb,vf,vp) * 1048576)/100000000)
|
||||
|
@ -69,7 +69,7 @@ typedef struct LCD_Parameters {
|
|||
/* Driver local functions. */
|
||||
/*===========================================================================*/
|
||||
|
||||
#include "drivers/gdisp/SSD1963/ssd1963.h"
|
||||
#include "ssd1963.h"
|
||||
|
||||
#define dummy_read(g) { volatile uint16_t dummy; dummy = read_data(g); (void) dummy; }
|
||||
#define write_reg(g, reg, data) { write_index(g, reg); write_data(g, data); }
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_SSD2119
|
||||
#include "drivers/gdisp/SSD2119/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_SSD2119.h"
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
|||
#define GDISP_NO_DMA_FROM_STACK FALSE
|
||||
#endif
|
||||
|
||||
#include "drivers/gdisp/SSD2119/ssd2119.h"
|
||||
#include "ssd2119.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local functions. */
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_ST7565
|
||||
#include "drivers/gdisp/ST7565/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "board_ST7565.h"
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
|||
|
||||
#define GDISP_FLG_NEEDFLUSH (GDISP_FLG_DRIVER<<0)
|
||||
|
||||
#include "drivers/gdisp/ST7565/st7565.h"
|
||||
#include "st7565.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver config defaults for backward compatibility. */
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_STM32F429iDiscovery
|
||||
#include "drivers/gdisp/STM32F429iDiscovery/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "stm32_ltdc.h"
|
||||
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
#endif
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_STM32LTDC
|
||||
#include "drivers/gdisp/STM32LTDC/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#include "stm32_ltdc.h"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_TLS8204
|
||||
#include "drivers/gdisp/TLS8204/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
#include "board_TLS8204.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -26,7 +26,7 @@
|
|||
|
||||
#define GDISP_FLG_NEEDFLUSH (GDISP_FLG_DRIVER << 0)
|
||||
|
||||
#include "drivers/gdisp/TLS8204/TLS8204.h"
|
||||
#include "TLS8204.h"
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Driver local routines. */
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#if GFX_USE_GDISP /*|| defined(__DOXYGEN__)*/
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_TestStub
|
||||
#include "drivers/gdisp/TestStub/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
#ifndef GDISP_SCREEN_HEIGHT
|
||||
#define GDISP_SCREEN_HEIGHT 128
|
||||
|
|
|
@ -15,8 +15,8 @@ typedef struct fbInfo {
|
|||
} fbInfo;
|
||||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_framebuffer
|
||||
#include "drivers/gdisp/framebuffer/gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
#include "board_framebuffer.h"
|
||||
|
||||
typedef struct fbPriv {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#if GFX_USE_GINPUT && GINPUT_NEED_DIAL
|
||||
|
||||
#include "src/ginput/ginput_driver_dial.h"
|
||||
#include "../../../../src/ginput/ginput_driver_dial.h"
|
||||
|
||||
#if GINPUT_DIAL_NUM_PORTS >= 5
|
||||
#error "GINPUT: Dial - GADC driver currently only supports 4 devices"
|
|
@ -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
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#if (GFX_USE_GINPUT && GINPUT_NEED_TOGGLE) /*|| defined(__DOXYGEN__)*/
|
||||
|
||||
#include "src/ginput/ginput_driver_toggle.h"
|
||||
#include "../../../../src/ginput/ginput_driver_toggle.h"
|
||||
|
||||
GINPUT_TOGGLE_DECLARE_STRUCTURE();
|
||||
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/ADS7843/gmouse_lld_ADS7843.c
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#if (GFX_USE_GINPUT && GINPUT_NEED_MOUSE)
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_ADS7843
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_ADS7843_board.h"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/FT5x06/gmouse_lld_FT5x06.c
|
||||
|
|
|
@ -10,13 +10,13 @@
|
|||
#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_FT5x06
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_FT5x06_board.h"
|
||||
|
||||
// Hardware definitions
|
||||
#include "drivers/ginput/touch/FT5x06/ft5x06.h"
|
||||
#include "ft5x06.h"
|
||||
|
||||
static bool_t MouseInit(GMouse* m, unsigned driverinstance) {
|
||||
if (!init_board(m, driverinstance))
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/MAX11802/gmouse_lld_MAX11802.c
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_MAX11802
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Hardware definitions
|
||||
#include "drivers/ginput/touch/MAX11802/max11802.h"
|
||||
#include "max11802.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_MAX11802_board.h"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/MCU/gmouse_lld_MCU.c
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_MCU
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_MCU_board.h"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/STMPE610/gmouse_lld_STMPE610.c
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_STMPE610
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Hardware definitions
|
||||
#include "drivers/ginput/touch/STMPE610/stmpe610.h"
|
||||
#include "stmpe610.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_STMPE610_board.h"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
# List the required driver.
|
||||
GFXSRC += $(GFXLIB)/drivers/ginput/touch/STMPE811/gmouse_lld_STMPE811.c
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE
|
||||
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_STMPE811
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Hardware definitions
|
||||
#include "drivers/ginput/touch/STMPE811/stmpe811.h"
|
||||
#include "stmpe811.h"
|
||||
|
||||
// Get the hardware interface
|
||||
#include "gmouse_lld_STMPE811_board.h"
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_Win32
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
// Configuration parameters for this driver
|
||||
#ifndef GDISP_SCREEN_WIDTH
|
||||
|
@ -82,7 +82,7 @@
|
|||
|
||||
#if GINPUT_NEED_TOGGLE
|
||||
/* Include toggle support code */
|
||||
#include "src/ginput/ginput_driver_toggle.h"
|
||||
#include "../../../src/ginput/ginput_driver_toggle.h"
|
||||
|
||||
// Hack until toggle use gdriver.
|
||||
static GDisplay *toggleWindow;
|
||||
|
@ -91,7 +91,7 @@
|
|||
#if GINPUT_NEED_MOUSE
|
||||
// Include mouse support code
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_Win32
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Forward definitions
|
||||
static bool_t Win32MouseInit(GMouse *m, unsigned driverinstance);
|
||||
|
@ -132,14 +132,14 @@
|
|||
|
||||
#if GINPUT_NEED_KEYBOARD
|
||||
#define GKEYBOARD_DRIVER_VMT GKEYBOARDVMT_Win32
|
||||
#include "src/ginput/ginput_driver_keyboard.h"
|
||||
#include "../../../src/ginput/ginput_driver_keyboard.h"
|
||||
|
||||
#if !GKEYBOARD_WIN32_NO_LAYOUT
|
||||
#if GKEYBOARD_LAYOUT_OFF
|
||||
#error "The Win32 keyboard driver is using the layout engine. Please set GKEYBOARD_LAYOUT_OFF=FALSE or GKEYBOARD_WIN32_NO_LAYOUT=TRUE."
|
||||
#endif
|
||||
|
||||
#include "src/ginput/ginput_keyboard_microcode.h"
|
||||
#include "../../../src/ginput/ginput_keyboard_microcode.h"
|
||||
|
||||
// Forward definitions
|
||||
extern uint8_t GKEYBOARD_WIN32_DEFAULT_LAYOUT[];
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_X11
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
|
||||
// Configuration parameters for this driver
|
||||
#ifndef GDISP_FORCE_24BIT
|
||||
|
@ -56,7 +56,7 @@
|
|||
#if GINPUT_NEED_MOUSE
|
||||
// Include mouse support code
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_X11
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Forward definitions
|
||||
static bool_t XMouseInit(GMouse *m, unsigned driverinstance);
|
||||
|
@ -98,7 +98,7 @@
|
|||
#if GINPUT_NEED_KEYBOARD
|
||||
// Include mouse support code
|
||||
#define GKEYBOARD_DRIVER_VMT GKEYBOARDVMT_X
|
||||
#include "src/ginput/ginput_driver_keyboard.h"
|
||||
#include "../../../src/ginput/ginput_driver_keyboard.h"
|
||||
|
||||
#if !GKEYBOARD_X_NO_LAYOUT
|
||||
#if GKEYBOARD_LAYOUT_OFF
|
||||
|
@ -108,7 +108,7 @@
|
|||
// Forward definitions
|
||||
extern uint8_t GKEYBOARD_X_DEFAULT_LAYOUT[];
|
||||
|
||||
#include "src/ginput/ginput_keyboard_microcode.h"
|
||||
#include "../../../src/ginput/ginput_keyboard_microcode.h"
|
||||
#include <X11/keysym.h>
|
||||
|
||||
// This is the layout code for the English US keyboard.
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#define GDISP_DRIVER_VMT GDISPVMT_uGFXnet
|
||||
#include "gdisp_lld_config.h"
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "../../../src/gdisp/gdisp_driver.h"
|
||||
#include "uGFXnetProtocol.h"
|
||||
|
||||
#ifndef GDISP_SCREEN_WIDTH
|
||||
|
@ -39,7 +39,7 @@
|
|||
#if GINPUT_NEED_MOUSE
|
||||
// Include mouse support code
|
||||
#define GMOUSE_DRIVER_VMT GMOUSEVMT_uGFXnet
|
||||
#include "src/ginput/ginput_driver_mouse.h"
|
||||
#include "../../../src/ginput/ginput_driver_mouse.h"
|
||||
|
||||
// Forward definitions
|
||||
static bool_t NMouseInit(GMouse *m, unsigned driverinstance);
|
||||
|
|
|
@ -288,9 +288,7 @@
|
|||
// GADC //
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
//#define GFX_USE_GADC FALSE
|
||||
|
||||
//#define GADC_MAX_LOWSPEED_DEVICES 4
|
||||
|
||||
// #define GADC_MAX_LOWSPEED_DEVICES 4
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// GAUDIO //
|
||||
|
@ -299,7 +297,6 @@
|
|||
// #define GAUDIO_NEED_PLAY FALSE
|
||||
// #define GAUDIO_NEED_RECORD FALSE
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// GMISC //
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GADC
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#ifndef _GADC_H
|
||||
#define _GADC_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GADC || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef _GADC_LLD_H
|
||||
#define _GADC_LLD_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GADC || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GAUDIO
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#ifndef _GAUDIO_H
|
||||
#define _GAUDIO_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GAUDIO || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef _GAUDIO_PLAY_LLD_H
|
||||
#define _GAUDIO_PLAY_LLD_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if (GFX_USE_GAUDIO && GAUDIO_NEED_PLAY) || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef _GAUDIO_RECORD_LLD_H
|
||||
#define _GAUDIO_RECORD_LLD_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if (GFX_USE_GAUDIO && GAUDIO_NEED_RECORD) || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef _GDISP_H
|
||||
#define _GDISP_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
/* This type definition is defined here as it gets used in other gfx sub-systems even
|
||||
* if GFX_USE_GDISP is FALSE.
|
||||
|
@ -153,6 +153,7 @@ extern GDisplay *GDISP;
|
|||
// Pull in the default hardware configuration for a single controller.
|
||||
// If we have multiple controllers the settings must be set in the
|
||||
// users gfxconf.h file.
|
||||
// Use the compiler include path to find it
|
||||
#include "gdisp_lld_config.h"
|
||||
|
||||
// Unless the user has specified a specific pixel format, use
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef _GDISP_COLORS_H
|
||||
#define _GDISP_COLORS_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#if GFX_USE_GDISP
|
||||
|
||||
// Include the GDRIVER infrastructure
|
||||
#include "src/gdriver/gdriver.h"
|
||||
#include "../gdriver/gdriver.h"
|
||||
|
||||
// Are we currently compiling the driver itself?
|
||||
#if defined(GDISP_DRIVER_VMT)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_TEXT
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE && GDISP_NEED_IMAGE_BMP
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE && GDISP_NEED_IMAGE_GIF
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE && GDISP_NEED_IMAGE_JPG
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE && GDISP_NEED_IMAGE_NATIVE
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_IMAGE && GDISP_NEED_IMAGE_PNG
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDISP && GDISP_NEED_PIXMAP
|
||||
|
||||
|
@ -39,8 +39,8 @@
|
|||
#error "GDISP Pixmap: Pixmap's do not currently support the specified GDISP_LLD_PIXELFORMAT"
|
||||
#endif
|
||||
|
||||
#include "src/gdisp/gdisp_driver.h"
|
||||
#include "src/gdriver/gdriver.h"
|
||||
#include "gdisp_driver.h"
|
||||
#include "../gdriver/gdriver.h"
|
||||
|
||||
typedef struct pixmap {
|
||||
#if GDISP_NEED_PIXMAP_IMAGE
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* Configuration settings related to GFX *
|
||||
*******************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../../gfx.h"
|
||||
|
||||
#if !GFX_USE_GDISP || !GDISP_NEED_TEXT
|
||||
#define MF_NO_COMPILE // Don't compile any font code
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GDRIVER
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GEVENT || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef _GEVENT_H
|
||||
#define _GEVENT_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GEVENT || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef _GFILE_H
|
||||
#define _GFILE_H
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE || defined(__DOXYGEN__)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
/* disk I/O modules and attach it to FatFs module with common interface. */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_FATFS && GFX_USE_OS_CHIBIOS
|
||||
|
||||
|
|
|
@ -5,15 +5,15 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_FATFS
|
||||
|
||||
#include "gfile_fatfs_wrapper.h"
|
||||
|
||||
// Include the source we want
|
||||
#include "3rdparty/fatfs-0.10b/src/ff.c"
|
||||
#include "3rdparty/fatfs-0.10b/src/option/unicode.c"
|
||||
#include "../../3rdparty/fatfs-0.10b/src/ff.c"
|
||||
#include "../../3rdparty/fatfs-0.10b/src/option/unicode.c"
|
||||
|
||||
// Extra operating system support
|
||||
#if _FS_REENTRANT
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
#include "ffconf.h"
|
||||
|
||||
// Prevent preprocessor redefinition warnings
|
||||
#include "3rdparty/fatfs-0.10b/src/integer.h"
|
||||
#include "../../3rdparty/fatfs-0.10b/src/integer.h"
|
||||
#if defined(_T) && !defined(_INC_TCHAR)
|
||||
#define _INC_TCHAR
|
||||
#endif
|
||||
|
||||
// Include the fatfs API
|
||||
#include "3rdparty/fatfs-0.10b/src/ff.h"
|
||||
#include "../../3rdparty/fatfs-0.10b/src/ff.h"
|
||||
|
||||
// Include the fatfs diskio API
|
||||
#include "3rdparty/fatfs-0.10b/src/diskio.h"
|
||||
#include "../../3rdparty/fatfs-0.10b/src/diskio.h"
|
||||
|
||||
#endif //_FATFS_WRAPPER
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The ChibiOS FileStream file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_CHIBIOSFS && GFX_USE_OS_CHIBIOS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The FATFS file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_FATFS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The virtual memory file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_MEMFS
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// We need to include stdio.h below. Turn off GFILE_NEED_STDIO just for this file to prevent conflicts
|
||||
#define GFILE_NEED_STDIO_MUST_BE_OFF
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_NATIVEFS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The PETITFS file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_PETITFS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The RAM file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_RAMFS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The ROM file-system
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_ROMFS
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* The virtual string file
|
||||
********************************************************/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_STRINGS
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
/* disk I/O modules and attach it to FatFs module with common interface. */
|
||||
/*-----------------------------------------------------------------------*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_PETITFS && GFX_USE_OS_CHIBIOS
|
||||
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
* http://ugfx.org/license.html
|
||||
*/
|
||||
|
||||
#include "gfx.h"
|
||||
#include "../../gfx.h"
|
||||
|
||||
#if GFX_USE_GFILE && GFILE_NEED_PETITFS
|
||||
|
||||
#include "gfile_petitfs_wrapper.h"
|
||||
|
||||
// Include the source we want
|
||||
#include "3rdparty/petitfs-0.03/src/pff.c"
|
||||
#include "../../3rdparty/petitfs-0.03/src/pff.c"
|
||||
|
||||
#endif // GFX_USE_GFILE && GFILE_NEED_PETITFS
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue