Jason2866
Jason2866
@earlephilhower Since Arduino Core is using as much as possible IDF calls some routines and functions have changed. The function / define SPECIAL is not valid anymore. See PR https://github.com/espressif/arduino-esp32/pull/6527...
Tests do fail after successfull build ``` testing x86_64-apple-darwin21.4-clang++ -stdlib=libc++ -std=c++11 ... failed (ignored) testing x86_64h-apple-darwin21.4-clang ... ld: -platform_version min version malformed: '10.9.0' clang: error: linker command failed with exit...
issue https://github.com/espressif/arduino-esp32/issues/6572#issuecomment-1203630400 similar the fix for the S3 esp32-s3-devkitc-1.json
since this prevents to use a factory firmware which should be placed at address 0x10000. The flash address for the user firmware (ota_0) is read from the [partition.csv](https://github.com/arendst/Tasmota/blob/development/partitions/esp32_partition_app1856k_fs1344k.csv). A [flash_extra_images](https://github.com/arendst/Tasmota/blob/development/boards/esp32_4M.json)...
- [x] **Feature Request**. Start by telling us what problem you’re trying to solve. Often a solution already exists! Don’t send pull requests to implement new features without first getting...
LittleFs uses as default `64` https://github.com/joltwallet/esp_littlefs/blob/master/Kconfig#L24 For mklittlefs the setting is `32` https://github.com/BrianPugh/mklittlefs/blob/a14dabe444e9a265aab04d085d8ca8f8536d799b/Makefile#L75 Which generates compability problems. ESP8266 uses `32` in general. What is the reason for choosing `64` for...
``` esptool.js v0.1-dev Serial port WebSerial VendorID 0x303a ProductID 0x1001 Connecting.... Detecting chip type... ESP32-C3 Chip is ESP32-C3 (revision 3) Features: Wi-Fi Crystal is 40MHz MAC: 84:f7:03:a0:ee:ec Uploading stub... Running...
repeated calls to temperatureRead() on ESP32C3 and ESP32S2 are not resulting in IDF error messages anymore. The PR removes the workaround. ## Checklist: - [x] The pull request is done...
for ESP32-S3 devices with flash type `opi`. This prevents errors in compile since platformio searches for the bootloader `bootloader_dout_80m.bin` which does not exists and would be wrong. With the change...