lib update: trackball behavior fix

This commit is contained in:
mverch67 2024-07-04 12:45:50 +02:00
parent b4eb8d1f01
commit 41628736a6
3 changed files with 7 additions and 2 deletions

@ -1 +1 @@
Subproject commit 5aa10bd54abd7fe0a63570e4672c3c8d7d39a49b Subproject commit ca5a3e359f572f326f9a8cfdcd2da2aa9de4e3f3

View File

@ -369,6 +369,9 @@ esp_sleep_wakeup_cause_t doLightSleep(uint64_t sleepMsec) // FIXME, use a more r
gpio_wakeup_enable(pin, GPIO_INTR_LOW_LEVEL); gpio_wakeup_enable(pin, GPIO_INTR_LOW_LEVEL);
esp_sleep_enable_gpio_wakeup(); esp_sleep_enable_gpio_wakeup();
#endif #endif
#ifdef INPUTDRIVER_ENCODER_BTN
gpio_wakeup_enable((gpio_num_t)INPUTDRIVER_ENCODER_BTN, GPIO_INTR_LOW_LEVEL);
#endif
#ifdef T_WATCH_S3 #ifdef T_WATCH_S3
gpio_wakeup_enable((gpio_num_t)SCREEN_TOUCH_INT, GPIO_INTR_LOW_LEVEL); gpio_wakeup_enable((gpio_num_t)SCREEN_TOUCH_INT, GPIO_INTR_LOW_LEVEL);
#endif #endif

View File

@ -27,8 +27,10 @@
#define SLEEP_TIME 120 #define SLEEP_TIME 120
#ifndef HAS_TFT
#define BUTTON_PIN 0 #define BUTTON_PIN 0
// #define BUTTON_NEED_PULLUP // #define BUTTON_NEED_PULLUP
#endif
#define GPS_RX_PIN 44 #define GPS_RX_PIN 44
#define GPS_TX_PIN 43 #define GPS_TX_PIN 43
@ -60,7 +62,7 @@
#define TB_DOWN 15 #define TB_DOWN 15
#define TB_LEFT 1 #define TB_LEFT 1
#define TB_RIGHT 2 #define TB_RIGHT 2
#define TB_PRESS BUTTON_PIN #define TB_PRESS 0 // BUTTON_PIN
// microphone // microphone
#define ES7210_SCK 47 #define ES7210_SCK 47