mirror of https://github.com/arendst/Tasmota.git
Esp32 s3
This commit is contained in:
parent
405d1e6eb9
commit
4a4d3d1bb7
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"build": {
|
||||||
|
"arduino":{
|
||||||
|
"ldscript": "esp32s3_out.ld"
|
||||||
|
},
|
||||||
|
"core": "esp32",
|
||||||
|
"extra_flags": "-DBOARD_HAS_PSRAM -DESP32_4M -DESP32S3",
|
||||||
|
"f_cpu": "240000000L",
|
||||||
|
"f_flash": "80000000L",
|
||||||
|
"flash_mode": "dout",
|
||||||
|
"mcu": "esp32s3",
|
||||||
|
"variant": "esp32s3",
|
||||||
|
"partitions": "esp32_partition_app1856k_spiffs320k.csv"
|
||||||
|
},
|
||||||
|
"connectivity": [
|
||||||
|
"wifi"
|
||||||
|
],
|
||||||
|
"debug": {
|
||||||
|
"openocd_target": "esp32s3.cfg"
|
||||||
|
},
|
||||||
|
"frameworks": [
|
||||||
|
"espidf",
|
||||||
|
"arduino"
|
||||||
|
],
|
||||||
|
"name": "Espressif Generic ESP32-S3 4M Flash, Tasmota 1856k Code/OTA, 320k FS",
|
||||||
|
"upload": {
|
||||||
|
"flash_size": "4MB",
|
||||||
|
"maximum_ram_size": 327680,
|
||||||
|
"maximum_size": 4194304,
|
||||||
|
"require_upload_port": true,
|
||||||
|
"speed": 460800
|
||||||
|
},
|
||||||
|
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/",
|
||||||
|
"vendor": "Espressif"
|
||||||
|
}
|
|
@ -52,6 +52,13 @@
|
||||||
#define HSPI_HOST SPI3_HOST
|
#define HSPI_HOST SPI3_HOST
|
||||||
#define VSPI_HOST SPI3_HOST
|
#define VSPI_HOST SPI3_HOST
|
||||||
|
|
||||||
|
#elif CONFIG_IDF_TARGET_ESP32S3
|
||||||
|
// SPI_HOST (SPI1_HOST) is not supported by the SPI Master and SPI Slave driver on ESP32-S2 and later
|
||||||
|
#define SPI_HOST SPI1_HOST
|
||||||
|
#define FSPI_HOST SPI2_HOST
|
||||||
|
#define HSPI_HOST SPI3_HOST
|
||||||
|
#define VSPI_HOST SPI3_HOST
|
||||||
|
|
||||||
#elif CONFIG_IDF_TARGET_ESP32C3
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
||||||
#define SPI_HOST SPI1_HOST
|
#define SPI_HOST SPI1_HOST
|
||||||
#define HSPI_HOST SPI2_HOST
|
#define HSPI_HOST SPI2_HOST
|
||||||
|
|
|
@ -52,3 +52,23 @@ debug_init_break = tbreak setup
|
||||||
build_unflags = ${core32solo1.build_unflags}
|
build_unflags = ${core32solo1.build_unflags}
|
||||||
build_flags = ${core32solo1.build_flags}
|
build_flags = ${core32solo1.build_flags}
|
||||||
monitor_filters = esp32_exception_decoder
|
monitor_filters = esp32_exception_decoder
|
||||||
|
|
||||||
|
; *** pre alpha S3 Version
|
||||||
|
[env:tasmota32s3]
|
||||||
|
extends = env:tasmota32_base
|
||||||
|
platform = https://github.com/Jason2866/platform-espressif32.git#IDF44/ESP32-S3
|
||||||
|
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/614/framework-arduinoespressif32-release_v4.4-077f93b411.tar.gz
|
||||||
|
board = esp32s3
|
||||||
|
build_flags = ${env:tasmota32_base.build_flags}
|
||||||
|
lib_extra_dirs =
|
||||||
|
lib/lib_basic
|
||||||
|
lib/lib_ssl
|
||||||
|
lib/libesp32
|
||||||
|
lib_ignore =
|
||||||
|
TTGO TWatch Library
|
||||||
|
NimBLE-Arduino
|
||||||
|
Micro-RTSP
|
||||||
|
epdiy
|
||||||
|
NeoPixelBus
|
||||||
|
SPI
|
||||||
|
SD
|
||||||
|
|
|
@ -22,6 +22,7 @@ lib_ignore =
|
||||||
ESP RainMaker
|
ESP RainMaker
|
||||||
WiFiProv
|
WiFiProv
|
||||||
USB
|
USB
|
||||||
|
SD_MMC
|
||||||
ESP32 Azure IoT Arduino
|
ESP32 Azure IoT Arduino
|
||||||
ESP32 Async UDP
|
ESP32 Async UDP
|
||||||
ESP32 BLE Arduino
|
ESP32 BLE Arduino
|
||||||
|
|
|
@ -144,7 +144,7 @@ void CrashDumpClear(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
|
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
||||||
/**
|
/**
|
||||||
* Save crash information in RTC memory
|
* Save crash information in RTC memory
|
||||||
* This function is called automatically if ESP8266 suffers an exception
|
* This function is called automatically if ESP8266 suffers an exception
|
||||||
|
|
|
@ -126,6 +126,8 @@ String GetDeviceHardware(void) {
|
||||||
#include "esp32/rom/rtc.h"
|
#include "esp32/rom/rtc.h"
|
||||||
#elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2
|
#elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2
|
||||||
#include "esp32s2/rom/rtc.h"
|
#include "esp32s2/rom/rtc.h"
|
||||||
|
#elif CONFIG_IDF_TARGET_ESP32S3 // ESP32-S3
|
||||||
|
#include "esp32s3/rom/rtc.h"
|
||||||
#elif CONFIG_IDF_TARGET_ESP32C3 // ESP32-C3
|
#elif CONFIG_IDF_TARGET_ESP32C3 // ESP32-C3
|
||||||
#include "esp32c3/rom/rtc.h"
|
#include "esp32c3/rom/rtc.h"
|
||||||
#else
|
#else
|
||||||
|
@ -277,6 +279,8 @@ extern "C" {
|
||||||
#include "esp32/rom/spi_flash.h"
|
#include "esp32/rom/spi_flash.h"
|
||||||
#elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2
|
#elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2
|
||||||
#include "esp32s2/rom/spi_flash.h"
|
#include "esp32s2/rom/spi_flash.h"
|
||||||
|
#elif CONFIG_IDF_TARGET_ESP32S3 // ESP32-S3
|
||||||
|
#include "esp32s3/rom/spi_flash.h"
|
||||||
#elif CONFIG_IDF_TARGET_ESP32C3 // ESP32-C3
|
#elif CONFIG_IDF_TARGET_ESP32C3 // ESP32-C3
|
||||||
#include "esp32c3/rom/spi_flash.h"
|
#include "esp32c3/rom/spi_flash.h"
|
||||||
#else
|
#else
|
||||||
|
@ -524,6 +528,7 @@ float CpuTemperature(void) {
|
||||||
return t;
|
return t;
|
||||||
*/
|
*/
|
||||||
#else
|
#else
|
||||||
|
#ifndef CONFIG_IDF_TARGET_ESP32S3
|
||||||
// Currently (20210801) repeated calls to temperatureRead() on ESP32C3 and ESP32S2 result in IDF error messages
|
// Currently (20210801) repeated calls to temperatureRead() on ESP32C3 and ESP32S2 result in IDF error messages
|
||||||
static float t = NAN;
|
static float t = NAN;
|
||||||
if (isnan(t)) {
|
if (isnan(t)) {
|
||||||
|
@ -531,6 +536,7 @@ float CpuTemperature(void) {
|
||||||
}
|
}
|
||||||
return t;
|
return t;
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue