Skip to content

Commit

Permalink
merged fixes for compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sqfmi committed Jul 4, 2024
1 parent d7bb52d commit b21516f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Watchy",
"version": "1.4.12",
"version": "1.4.13",
"description": "Watchy - An Open Source E-Paper Watch by SQFMI",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Watchy
version=1.4.12
version=1.4.13
author=SQFMI
maintainer=SQFMI
sentence=Watchy - An Open Source E-Paper Watch by SQFMI
Expand Down
2 changes: 2 additions & 0 deletions src/Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
RTC_DATA_ATTR bool displayFullInit = true;

void WatchyDisplay::busyCallback(const void *) {
#ifndef ARDUINO_ESP32S3_DEV
gpio_wakeup_enable((gpio_num_t)DISPLAY_BUSY, GPIO_INTR_LOW_LEVEL);
esp_sleep_enable_gpio_wakeup();
esp_light_sleep_start();
#endif
}

WatchyDisplay::WatchyDisplay() :
Expand Down
3 changes: 1 addition & 2 deletions src/Watchy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ void Watchy::deepSleep() {
esp_sleep_enable_ext1_wakeup(
BTN_PIN_MASK,
ESP_EXT1_WAKEUP_ANY_LOW); // enable deep sleep wake on button press

rtc_clk_32k_enable(true);
//rtc_clk_slow_freq_set(RTC_SLOW_FREQ_32K_XTAL);
struct tm timeinfo;
Expand All @@ -109,7 +108,7 @@ void Watchy::deepSleep() {
BTN_PIN_MASK,
ESP_EXT1_WAKEUP_ANY_HIGH); // enable deep sleep wake on button press
#endif

gpio_deep_sleep_hold_dis();
esp_deep_sleep_start();
}

Expand Down
19 changes: 12 additions & 7 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
#define CONFIG_H

// Versioning
#define WATCHY_LIB_VER "1.4.12"
#define WATCHY_LIB_VER "1.4.13"

//pins
//#if !defined(ARDUINO_WATCHY_V10) && !defined(ARDUINO_WATCHY_V15) && !defined(ARDUINO_WATCHY_V20)

//#pragma message "Please install the latest ESP32 Arduino Core (2.0.5+) and choose Watchy as the target board"
//#pragma message "Hardware revision is not defined at the project level, please define in config.h. Defaulting to ARDUINO_WATCHY_V20"

#ifdef ARDUINO_ESP32S3_DEV //V3

Expand Down Expand Up @@ -42,10 +38,17 @@
#define UP_BTN_MASK (BIT64(0))
#define DOWN_BTN_MASK (BIT64(8))
#define ACC_INT_MASK (BIT64(14))
#define BTN_PIN_MASK MENU_BTN_MASK|BACK_BTN_MASK|DOWN_BTN_MASK
#define BTN_PIN_MASK MENU_BTN_MASK|BACK_BTN_MASK|UP_BTN_MASK|DOWN_BTN_MASK

#else //V1,V1.5,V2

#if !defined(ARDUINO_WATCHY_V10) && !defined(ARDUINO_WATCHY_V15) && !defined(ARDUINO_WATCHY_V20)

#pragma message "Please install the latest ESP32 Arduino Core (2.0.5+) and choose Watchy as the target board"
#pragma message "Hardware revision is not defined at the project level, please define in config.h. Defaulting to ARDUINO_WATCHY_V20"

#define ARDUINO_WATCHY_V20

#define MENU_BTN_PIN 26
#define BACK_BTN_PIN 25
#define DOWN_BTN_PIN 4
Expand Down Expand Up @@ -83,6 +86,8 @@

#endif

#endif

//display
#define DISPLAY_WIDTH 200
#define DISPLAY_HEIGHT 200
Expand Down Expand Up @@ -112,4 +117,4 @@
#define HARDWARE_VERSION_MAJOR 1
#define HARDWARE_VERSION_MINOR 0

#endif
#endif

0 comments on commit b21516f

Please sign in to comment.