This commit is contained in:
e2002
2024-12-04 17:58:28 +03:00
parent fd6c1eafd0
commit 001fcb4b93
26 changed files with 679 additions and 110 deletions

View File

@@ -1,7 +1,7 @@
#ifndef options_h
#define options_h
#define YOVERSION "0.9.342b"
#define YOVERSION "0.9.350"
/*******************************************************
DO NOT EDIT THIS FILE.
@@ -244,11 +244,11 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
/* RTC */
#define RTC_MODULE_UNDEFINED 0
#define DS3231 1
#define DS1307 2
#define DS3231 1
#define DS1307 2
#ifndef RTC_MODULE
#define RTC_MODULE RTC_MODULE_UNDEFINED /* DS3231 or DS1307 */
#define RTC_MODULE RTC_MODULE_UNDEFINED /* DS3231 or DS1307 */
#endif
#ifndef RTC_SDA
#define RTC_SDA 255
@@ -258,10 +258,24 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#endif
/* ESP DEVBOARD */
#ifndef ARDUINO_ESP32S3_DEV
#if defined(ARDUINO_ESP32S3_DEV) || defined(ARDUINO_ESP32C3_DEV)
#define ESP_S3C3 1
#ifndef USE_BUILTIN_LED
#define USE_BUILTIN_LED true
#endif
#ifndef LED_BUILTIN_S3
#define LED_BUILTIN_S3 255
#endif
#if USE_BUILTIN_LED
#define REAL_LEDBUILTIN LED_BUILTIN
#else
#define REAL_LEDBUILTIN LED_BUILTIN_S3
#endif
#else
#ifndef LED_BUILTIN
#define LED_BUILTIN 255
#endif
#define REAL_LEDBUILTIN LED_BUILTIN
#endif
/* Other settings. You can overwrite them in the myoptions.h file */
#ifndef MUTE_PIN
@@ -325,7 +339,7 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#define SD_AUTOPLAY true // auto play from SD card when inserted
#endif
#ifndef SD_MAX_LEVELS
#define SD_MAX_LEVELS 3 // search depth for files on the SD card
#define SD_MAX_LEVELS 3 // search depth for files on the SD card
#endif
/*
*** ST7735 display submodel ***