This commit is contained in:
e2002
2023-06-06 13:55:13 +03:00
parent 2f71c1859c
commit caa5cb78c7
8 changed files with 141 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
#ifndef options_h
#define options_h
#define YOVERSION "0.9.242"
#define YOVERSION "0.9.250"
/*******************************************************
DO NOT EDIT THIS FILE.
@@ -121,9 +121,6 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#endif
/* SDCARD */
#ifndef SDC_SPI
#define SDC_SPI 18, 19, 23 // SDCARD SPI pins (SCK, MISO, MOSI)
#endif
#ifndef SDC_CS
#define SDC_CS 255 // SDCARD CS pin
#endif
@@ -245,6 +242,21 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#define LCD_D7 255
#endif
/* RTC */
#define RTC_MODULE_UNDEFINED 0
#define DS3231 1
#define DS1307 2
#ifndef RTC_MODULE
#define RTC_MODULE RTC_MODULE_UNDEFINED /* DS3231 or DS1307 */
#endif
#ifndef RTC_SDA
#define RTC_SDA 255
#endif
#ifndef RTC_SCL
#define RTC_SCL 255
#endif
/* ESP DEVBOARD */
#ifndef LED_BUILTIN
#define LED_BUILTIN 255