Update driver path

This commit is contained in:
fvanroie 2021-02-17 03:41:37 +01:00
parent 79467a8846
commit b4a901ef9a
4 changed files with 19 additions and 19 deletions

View File

@ -11,15 +11,15 @@
#elif TOUCH_DRIVER == 2046
#include "indev/XPT2046.h"
#elif TOUCH_DRIVER == 0x2046B
#include "hasp_drv_xpt2046.h"
#include "drv/touch/hasp_drv_xpt2046.h"
#elif TOUCH_DRIVER == 911
#include "hasp_drv_gt911.h"
#include "drv/touch/hasp_drv_gt911.h"
#elif TOUCH_DRIVER == 0xADC
#include "hasp_drv_ft6336u.h"
#include "drv/touch/hasp_drv_ft6336u.h"
#elif TOUCH_DRIVER == 5206
#include "hasp_drv_ft5206.h"
#include "drv/touch/hasp_drv_ft5206.h"
#elif TOUCH_DRIVER == 6336
#include "hasp_drv_ft6336u.h"
#include "drv/touch/hasp_drv_ft6336u.h"
#else
//#include "tp_i2c.h"
//#include "ft6x36.h"

View File

@ -8,7 +8,7 @@
#define FT5206_address 0x38
#include "log/hasp_debug.h" // for TAG_DRVR
#include "hasp_debug.h" // for TAG_DRVR
bool FT5206_getXY(int16_t * touchX, int16_t * touchY, bool debug);
void FT5206_init();

View File

@ -6,7 +6,7 @@
#if TOUCH_DRIVER == 6336
#include "log/hasp_debug.h" // for TAG_DRVR
#include "hasp_debug.h" // for TAG_DRVR
bool FT6336U_getXY(int16_t * touchX, int16_t * touchY, bool debug);
void FT6336U_init();

View File

@ -6,7 +6,7 @@
#if TOUCH_DRIVER == 911
#include "log/hasp_debug.h" // for TAG_DRVR
#include "hasp_debug.h" // for TAG_DRVR
bool GT911_getXY(int16_t * touchX, int16_t * touchY, bool debug);
void GT911_init();