Skip to content

Conversation

@lucasssvaz
Copy link
Member

Description of Change

This pull request adds support for the ESP32-C61 target across the Arduino-ESP32 codebase. The changes ensure that ESP32-C61 is correctly handled in build scripts, documentation, hardware abstraction, and board-specific logic. Additionally, the CPU frequency management code is refactored for better maintainability and extensibility.

ESP32-C61 Support

  • Added ESP32-C61 to the list of supported targets in build scripts (.github/scripts/find_all_boards.sh, .github/workflows/build_component.yml) and ensured it is properly skipped where required for library builds. [1] [2] [3] [4]
  • Updated documentation (README.md) to mention ESP32-C61 support and its requirements.
  • Added ESP32-C61-specific hardware definitions for UART pins in HardwareSerial.h, and updated related logic for RX/TX pin mappings. [1] [2]
  • Added ESP32-C61-specific handling for flash chip speed and mode in Esp.cpp, including magic flash frequency mapping and register usage. [1] [2] [3]
  • Updated chip debug reporting for ESP32-C61 to use the correct EFUSE register macros.

CPU Frequency Management Refactor

  • Refactored esp32-hal-cpu.c to introduce a generic clock source name lookup and supported frequency reporting, improving clarity and extensibility for all ESP32 targets. [1] [2] [3]
  • Updated frequency setting logic to use new helpers and provide more informative error messages when an unsupported frequency is requested. [1] [2]

General Board Handling Improvements

  • Improved board filtering logic to skip ESP32-C61 in build scripts where static libraries are not built for this target.
  • Ensured ESP32-C61 is included in all relevant lists and cases for board variants and build targets. [1] [2] [3]

Code Organization and Maintainability

  • Reorganized hardware abstraction header and source files to keep board-specific logic grouped and consistent, including clock source arrays and conditional compilation. [1] [2] [3]

Minor Fixes and Cleanups

  • Adjusted conditional compilation for register includes and macros to ensure compatibility and reduce redundancy. [1] [2]

Test Scenarios

Locally

Related links

espressif/esp32-arduino-lib-builder#331

@github-actions
Copy link
Contributor

github-actions bot commented Nov 12, 2025

Warnings
⚠️

Some issues found for the commit messages in this PR:

  • the commit message "Update CMakeLists.txt":
    • summary looks empty
    • type/action looks empty

Please fix these commit messages - here are some basic tips:

  • follow Conventional Commits style
  • correct format of commit message should be: <type/action>(<scope/component>): <summary>, for example fix(esp32): Fixed startup timeout issue
  • allowed types are: change,ci,docs,feat,fix,refactor,remove,revert,test
  • sufficiently descriptive message summary should be between 10 to 72 characters and start with upper case letter
  • avoid Jira references in commit messages (unavailable/irrelevant for our customers)

TIP: Install pre-commit hooks and run this check when committing (uses the Conventional Precommit Linter).

👋 Hello lucasssvaz, we appreciate your contribution to this project!


📘 Please review the project's Contributions Guide for key guidelines on code, documentation, testing, and more.

🖊️ Please also make sure you have read and signed the Contributor License Agreement for this project.

Click to see more instructions ...


This automated output is generated by the PR linter DangerJS, which checks if your Pull Request meets the project's requirements and helps you fix potential issues.

DangerJS is triggered with each push event to a Pull Request and modify the contents of this comment.

Please consider the following:
- Danger mainly focuses on the PR structure and formatting and can't understand the meaning behind your code or changes.
- Danger is not a substitute for human code reviews; it's still important to request a code review from your colleagues.
- Resolve all warnings (⚠️ ) before requesting a review from human reviewers - they will appreciate it.
- To manually retry these Danger checks, please navigate to the Actions tab and re-run last Danger workflow.

Review and merge process you can expect ...


We do welcome contributions in the form of bug reports, feature requests and pull requests.

1. An internal issue has been created for the PR, we assign it to the relevant engineer.
2. They review the PR and either approve it or ask you for changes or clarifications.
3. Once the GitHub PR is approved we do the final review, collect approvals from core owners and make sure all the automated tests are passing.
- At this point we may do some adjustments to the proposed change, or extend it by adding tests or documentation.
4. If the change is approved and passes the tests it is merged into the default branch.

Generated by 🚫 dangerJS against 205aadc

@lucasssvaz lucasssvaz added Type: Chip support Concerns support for a specific SoC. Status: Blocked upstream 🛑 PR is waiting on upstream changes to be merged first labels Nov 12, 2025
@lucasssvaz lucasssvaz self-assigned this Nov 12, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Nov 12, 2025

Test Results

 76 files   76 suites   17m 23s ⏱️
 38 tests  38 ✅ 0 💤 0 ❌
241 runs  241 ✅ 0 💤 0 ❌

Results for commit 205aadc.

♻️ This comment has been updated with latest results.

Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
@github-actions
Copy link
Contributor

github-actions bot commented Nov 12, 2025

Memory usage test (comparing PR against master branch)

The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.

MemoryFLASH [bytes]FLASH [%]RAM [bytes]RAM [%]
TargetDECINCDECINCDECINCDECINC
ESP32C50⚠️ +100.000.00000.000.00
ESP32P4000.000.00000.000.00
ESP32S3💚 -600💚 -0.020.00000.000.00
ESP32S2💚 -680💚 -0.030.00000.000.00
ESP32C3💚 -420💚 -0.020.00000.000.00
ESP32C6💚 -440💚 -0.020.00000.000.00
ESP32H20⚠️ +100.000.00000.000.00
ESP32💚 -1200💚 -0.040.00000.000.00
Click to expand the detailed deltas report [usage change in BYTES]
TargetESP32C5ESP32P4ESP32S3ESP32S2ESP32C3ESP32C6ESP32H2ESP32
ExampleFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAM
libraries/ArduinoOTA/examples/BasicOTA⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/AsyncUDP/examples/AsyncUDPClient⚠️ +10000💚 -440💚 -520💚 -400💚 -400--💚 -1000
libraries/AsyncUDP/examples/AsyncUDPMulticastServer⚠️ +10000💚 -480💚 -520💚 -400💚 -400--💚 -840
libraries/AsyncUDP/examples/AsyncUDPServer⚠️ +10000💚 -520💚 -520💚 -400💚 -400--💚 -1000
libraries/BLE/examples/Beacon_Scanner⚠️ +10000💚 -440--💚 -400💚 -40000💚 -960
libraries/BLE/examples/Client⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Client_multiconnect⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1080
libraries/BLE/examples/Client_secure_static_passkey⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/EddystoneTLM_Beacon⚠️ +10000💚 -440--💚 -400💚 -40000💚 -920
libraries/BLE/examples/EddystoneURL_Beacon⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1040
libraries/BLE/examples/Notify⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Scan⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Server⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Server_multiconnect⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Server_secure_authorization⚠️ +100--💚 -440--💚 -400💚 -40000--
libraries/BLE/examples/Server_secure_static_passkey⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1080
libraries/BLE/examples/UART⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1000
libraries/BLE/examples/Write⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1080
libraries/BLE/examples/iBeacon⚠️ +10000💚 -440--💚 -400💚 -40000💚 -1120
libraries/DNSServer/examples/CaptivePortal⚠️ +10000💚 -480💚 -520💚 -400💚 -400--💚 -920
libraries/EEPROM/examples/eeprom_class⚠️ +10000💚 -440💚 -480💚 -400💚 -400⚠️ +100💚 -1000
libraries/EEPROM/examples/eeprom_extra⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/EEPROM/examples/eeprom_write⚠️ +10000💚 -440💚 -560💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogOut/LEDCFade⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogOut/LEDCGammaFade⚠️ +10000------💚 -40000--
libraries/ESP32/examples/AnalogOut/LEDCSingleChannel⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogOut/LEDCSoftwareFade⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogOut/SigmaDelta⚠️ +10000💚 -440💚 -480💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/AnalogOut/ledcFrequency⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogOut/ledcWrite_RGB⚠️ +10000💚 -440💚 -640💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogRead⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/AnalogReadContinuous⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/ArduinoStackSize⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/ArduinoWaitTimeBeforeStartingSketch⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/CI/CIBoardsTest⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/ChipID/GetChipID⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/DeepSleep/TimerWakeUp⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/ESP32/examples/FreeRTOS/BasicMultiThreading⚠️ +10000💚 -440💚 -480💚 -400💚 -44000💚 -1000
libraries/ESP32/examples/FreeRTOS/Mutex⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/FreeRTOS/Queue⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/FreeRTOS/Semaphore⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/GPIO/BlinkRGB⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/GPIO/FunctionalInterrupt⚠️ +10000💚 -440💚 -680💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/GPIO/FunctionalInterruptLambda⚠️ +10000💚 -440💚 -520💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/GPIO/FunctionalInterruptStruct⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/GPIO/GPIOInterrupt⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/HWCDC_Events⚠️ +10000💚 -440--💚 -400💚 -40000--
libraries/ESP32/examples/MacAddress/GetMacAddress⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/RMT/Legacy_RMT_Driver_Compatible⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/RMT/RMTCallback⚠️ +10000💚 -440💚 -480💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/RMT/RMTLoopback⚠️ +10000💚 -440💚 -520💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/RMT/RMTReadXJT⚠️ +10000💚 -440💚 -560💚 -420💚 -40000💚 -1000
libraries/ESP32/examples/RMT/RMTWrite_RGB_LED⚠️ +10000💚 -440💚 -520💚 -400💚 -42000💚 -1000
libraries/ESP32/examples/RMT/RMT_CPUFreq_Test⚠️ +10000💚 -440💚 -560💚 -400💚 -40000💚 -1040
libraries/ESP32/examples/RMT/RMT_EndOfTransmissionState⚠️ +10000💚 -440💚 -480💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/RMT/RMT_LED_Blink⚠️ +10000💚 -440💚 -480💚 -420💚 -42000💚 -1000
libraries/ESP32/examples/ResetReason/ResetReason⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/ResetReason/ResetReason2⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/BaudRateDetect_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/OnReceiveError_BREAK_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/OnReceive_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/RS485_Echo_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/RxFIFOFull_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/RxTimeout_Demo⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/Serial_All_CPU_Freqs⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/ESP32/examples/Serial/Serial_STD_Func_OnReceive⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Serial/onReceiveExample⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Template/ExampleTemplate⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Time/SimpleTime⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/ESP32/examples/Timer/RepeatTimer⚠️ +10000💚 -440💚 -560💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Timer/WatchdogTimer⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP_I2S/examples/ES8388_loopback⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP_I2S/examples/Simple_tone⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP_NOW/examples/ESP_NOW_Broadcast_Master⚠️ +100--💚 -400💚 -560💚 -400💚 -400--💚 -880
libraries/ESP_NOW/examples/ESP_NOW_Broadcast_Slave⚠️ +100--💚 -440💚 -360💚 -400💚 -400--💚 -960
libraries/ESP_NOW/examples/ESP_NOW_Network⚠️ +100--💚 -40000💚 -400💚 -400--💚 -1040
libraries/ESP_NOW/examples/ESP_NOW_Serial⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -1080
libraries/ESPmDNS/examples/mDNS-SD_Extended⚠️ +10000💚 -480💚 -520💚 -400💚 -400--💚 -1000
libraries/ESPmDNS/examples/mDNS_Web_Server⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1120
libraries/Ethernet/examples/ETH_W5500_Arduino_SPI⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -880
libraries/Ethernet/examples/ETH_W5500_IDF_SPI⚠️ +10000💚 -440💚 -480💚 -420💚 -40000💚 -1000
libraries/Ethernet/examples/ETH_WIFI_BRIDGE⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -920
libraries/FFat/examples/FFat_Test⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/FFat/examples/FFat_time⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/Authorization⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/BasicHttpClient⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/BasicHttpsClient⚠️ +10000💚 -440💚 -440💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/CustomHeaders⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/HTTPClientEnterprise⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -840
libraries/HTTPClient/examples/ReuseConnection⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -1000
libraries/HTTPClient/examples/StreamHttpClient⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -960
libraries/HTTPUpdate/examples/httpUpdate⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/HTTPUpdate/examples/httpUpdateSPIFFS⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/HTTPUpdate/examples/httpUpdateSecure⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -920
libraries/HTTPUpdateServer/examples/WebUpdater⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/Hash/examples/HEX⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Hash/examples/MD5⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Hash/examples/PBKDF2_HMAC⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Hash/examples/SHA1⚠️ +10000💚 -440💚 -560💚 -400💚 -40000💚 -1000
libraries/Hash/examples/SHA2⚠️ +10000💚 -440💚 -520💚 -400💚 -40000💚 -1000
libraries/Hash/examples/SHA3⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Hash/examples/SHA3Stream⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Insights/examples/DiagnosticsSmokeTest⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -960
libraries/Insights/examples/MinimalDiagnostics⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/LittleFS/examples/LITTLEFS_test⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/LittleFS/examples/LITTLEFS_time⚠️ +10000💚 -320💚 -480💚 -400💚 -400--💚 -1000
libraries/Matter/examples/MatterColorLight⚠️ +100--💚 -440💚 -520💚 -400💚 -40000💚 -1080
libraries/Matter/examples/MatterCommissionTest⚠️ +100--💚 -560💚 -520💚 -400💚 -40000💚 -600
libraries/Matter/examples/MatterComposedLights⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/Matter/examples/MatterContactSensor⚠️ +100--💚 -440💚 -480💚 -420💚 -40000💚 -1040
libraries/Matter/examples/MatterDimmableLight⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/Matter/examples/MatterEnhancedColorLight⚠️ +100--💚 -440💚 -520💚 -400💚 -40000💚 -1040
libraries/Matter/examples/MatterEvents⚠️ +100--💚 -440💚 -480💚 -400💚 -44000💚 -1120
libraries/Matter/examples/MatterFan⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/Matter/examples/MatterHumiditySensor⚠️ +100--💚 -440💚 -440💚 -400💚 -40000💚 -1000
libraries/Matter/examples/MatterLambdaSingleCallbackManyEPs⚠️ +100--💚 -480💚 -480💚 -400💚 -40000💚 -1080
libraries/Matter/examples/MatterMinimum⚠️ +100--💚 -440💚 -480💚 -400💚 -42000💚 -1080
libraries/Matter/examples/MatterOccupancySensor⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -960
libraries/Matter/examples/MatterOnIdentify⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Matter/examples/MatterOnOffLight⚠️ +100--💚 -480💚 -480💚 -400💚 -40000💚 -800
libraries/Matter/examples/MatterOnOffPlugin⚠️ +100--💚 -480💚 -480💚 -400💚 -40000💚 -1040
libraries/Matter/examples/MatterPressureSensor⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Matter/examples/MatterSmartButton⚠️ +100--💚 -240💚 -480💚 -400💚 -40000💚 -960
libraries/Matter/examples/MatterTemperatureLight⚠️ +100--💚 -440💚 -520💚 -400💚 -40000💚 -1080
libraries/Matter/examples/MatterTemperatureSensor⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -960
libraries/Matter/examples/MatterThermostat⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/NetBIOS/examples/ESP_NBNST⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -840
libraries/NetworkClientSecure/examples/WiFiClientInsecure⚠️ +10000💚 -520💚 -480💚 -400💚 -400--💚 -1080
libraries/NetworkClientSecure/examples/WiFiClientPSK⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -1000
libraries/NetworkClientSecure/examples/WiFiClientSecure⚠️ +10000💚 -440💚 -520💚 -400💚 -400--💚 -1000
libraries/NetworkClientSecure/examples/WiFiClientSecureEnterprise⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -880
libraries/NetworkClientSecure/examples/WiFiClientSecureProtocolUpgrade⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -1000
libraries/NetworkClientSecure/examples/WiFiClientShowPeerCredentials⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/NetworkClientSecure/examples/WiFiClientTrustOnFirstUse⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -1120
libraries/OpenThread/examples/CLI/COAP/coap_lamp⚠️ +100--------💚 -42000--
libraries/OpenThread/examples/CLI/COAP/coap_switch⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/SimpleCLI⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/SimpleNode⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/SimpleThreadNetwork/ExtendedRouterNode⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/SimpleThreadNetwork/LeaderNode⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/SimpleThreadNetwork/RouterNode⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/ThreadScan⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/CLI/onReceive⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/Native/SimpleThreadNetwork/LeaderNode⚠️ +100--------💚 -40000--
libraries/OpenThread/examples/Native/SimpleThreadNetwork/RouterNode⚠️ +100--------💚 -40000--
libraries/PPP/examples/PPP_Basic⚠️ +10000💚 -520💚 -360💚 -400💚 -40000💚 -920
libraries/PPP/examples/PPP_WIFI_BRIDGE⚠️ +10000💚 -440💚 -360💚 -400💚 -400--💚 -1000
libraries/Preferences/examples/Prefs2Struct⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Preferences/examples/StartCounter⚠️ +10000💚 -440💚 -680💚 -400💚 -40000💚 -1000
libraries/RainMaker/examples/RMakerCustom⚠️ +100--💚 -440💚 -520💚 -400💚 -400----
libraries/RainMaker/examples/RMakerCustomAirCooler⚠️ +100--💚 -440💚 -520💚 -400💚 -400----
libraries/RainMaker/examples/RMakerSonoffDualR3⚠️ +100--💚 -320💚 -520💚 -400💚 -400----
libraries/RainMaker/examples/RMakerSwitch⚠️ +100--💚 -440💚 -480💚 -400💚 -400----
libraries/SD/examples/SD_Test⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/SD/examples/SD_time⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/SPI/examples/SPI_Multiple_Buses⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/SPIFFS/examples/SPIFFS_Test⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/SPIFFS/examples/SPIFFS_time⚠️ +10000💚 -560💚 -480💚 -400💚 -400--💚 -1000
libraries/TFLiteMicro/examples/hello_world⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Ticker/examples/Blinker⚠️ +10000💚 -440💚 -520💚 -400💚 -40000💚 -1000
libraries/Ticker/examples/TickerBasic⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Ticker/examples/TickerParameter⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Update/examples/AWS_S3_OTA_Update⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1080
libraries/Update/examples/HTTPS_OTA_Update⚠️ +10000💚 -520💚 -560💚 -400💚 -400--💚 -1000
libraries/Update/examples/HTTP_Client_AES_OTA_Update⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -960
libraries/Update/examples/HTTP_Server_AES_OTA_Update⚠️ +10000💚 -480💚 -440💚 -400💚 -400--💚 -1080
libraries/Update/examples/OTAWebUpdater⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/Update/examples/SD_Update⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/WebServer/examples/AdvancedWebServer⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/ChunkWriting⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/FSBrowser⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/WebServer/examples/Filters⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1080
libraries/WebServer/examples/HelloServer⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1080
libraries/WebServer/examples/HttpAdvancedAuth⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/HttpAuthCallback⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/HttpAuthCallbackInline⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/HttpBasicAuth⚠️ +10000💚 -440💚 -520💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/HttpBasicAuthSHA1⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -560
libraries/WebServer/examples/HttpBasicAuthSHA1orBearerToken⚠️ +10000💚 -480💚 -560💚 -400💚 -400--💚 -1040
libraries/WebServer/examples/Middleware⚠️ +100--💚 -440💚 -520💚 -400💚 -400--💚 -1120
libraries/WebServer/examples/MultiHomedServers⚠️ +10000💚 -600💚 -560💚 -400💚 -400--💚 -1080
libraries/WebServer/examples/PathArgServer⚠️ +10000💚 -360💚 -480💚 -400💚 -400--💚 -1040
libraries/WebServer/examples/SDWebServer⚠️ +10000💚 -320💚 -480💚 -400💚 -400--💚 -1160
libraries/WebServer/examples/SimpleAuthentification⚠️ +10000💚 -520💚 -520💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/UploadHugeFile⚠️ +10000💚 -440💚 -560💚 -400💚 -400--💚 -960
libraries/WebServer/examples/WebServer⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WebServer/examples/WebUpdate⚠️ +10000💚 -440💚 -200💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/FTM/FTM_Initiator⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/FTM/FTM_Responder⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/SimpleWiFiServer⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WPS⚠️ +100--💚 -440💚 -440💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiAccessPoint⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiBlueToothSwitch⚠️ +100--💚 -440--💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiClient⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiClientBasic⚠️ +10000💚 -520💚 -400💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiClientConnect⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/WiFiClientEnterprise⚠️ +100--💚 -440💚 -240💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiClientEvents⚠️ +10000💚 -440💚 -520💚 -400💚 -400--💚 -1080
libraries/WiFi/examples/WiFiClientStaticIP⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiExtender⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1200
libraries/WiFi/examples/WiFiIPv6⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiMulti⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/WiFiMultiAdvanced⚠️ +10000💚 -480💚 -560💚 -400💚 -400--💚 -800
libraries/WiFi/examples/WiFiScan⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiScanAsync⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/WiFiScanDualAntenna⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -880
libraries/WiFi/examples/WiFiScanTime⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1040
libraries/WiFi/examples/WiFiSmartConfig⚠️ +100--💚 -480💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFi/examples/WiFiTelnetToSerial⚠️ +10000💚 -440💚 -480💚 -400💚 -400--💚 -1080
libraries/WiFi/examples/WiFiUDPClient⚠️ +10000💚 -480💚 -480💚 -400💚 -400--💚 -1000
libraries/WiFiProv/examples/WiFiProv⚠️ +100--💚 -440💚 -480💚 -400💚 -400--💚 -960
libraries/Wire/examples/WireMaster⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Wire/examples/WireScan⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Wire/examples/WireSlave⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Wire/examples/WireSlaveFunctionalCallback⚠️ +10000💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Analog_Input_Output⚠️ +100--💚 -480💚 -320💚 -400💚 -40000💚 -1040
libraries/Zigbee/examples/Zigbee_Binary_Input_Output⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_CarbonDioxide_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Color_Dimmable_Light⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Color_Dimmer_Switch⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1040
libraries/Zigbee/examples/Zigbee_Contact_Switch⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Dimmable_Light⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor⚠️ +100--💚 -480💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Fan_Control⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1080
libraries/Zigbee/examples/Zigbee_Gateway⚠️ +100--💚 -440💚 -480💚 -400----💚 -1000
libraries/Zigbee/examples/Zigbee_Illuminance_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Multistate_Input_Output⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_OTA_Client⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Occupancy_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_On_Off_Light⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_On_Off_MultiSwitch⚠️ +100--💚 -480💚 -480💚 -400💚 -40000💚 -1120
libraries/Zigbee/examples/Zigbee_On_Off_Switch⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1080
libraries/Zigbee/examples/Zigbee_PM25_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Power_Outlet⚠️ +100--💚 -440💚 -520💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Pressure_Flow_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Range_Extender⚠️ +100--💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Scan_Networks⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Temp_Hum_Sensor_Sleepy⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Temperature_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Thermostat⚠️ +100--💚 -520💚 -480💚 -400💚 -40000💚 -1000
libraries/Zigbee/examples/Zigbee_Vibration_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Wind_Speed_Sensor⚠️ +100--------💚 -40000--
libraries/Zigbee/examples/Zigbee_Window_Covering⚠️ +100--------💚 -40000--
libraries/ESP32/examples/DeepSleep/TouchWakeUp--00💚 -440💚 -480------💚 -1000
libraries/ESP32/examples/TWAI/TWAIreceive--00💚 -440💚 -480💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/TWAI/TWAItransmit--00💚 -440💚 -600💚 -400💚 -40000💚 -1000
libraries/ESP32/examples/Touch/TouchButton--00💚 -440💚 -480------💚 -1000
libraries/ESP32/examples/Touch/TouchInterrupt--00💚 -440💚 -480------💚 -1000
libraries/ESP32/examples/Touch/TouchRead--00💚 -440💚 -480------💚 -1000
libraries/ESP_I2S/examples/Record_to_WAV--00💚 -440--------💚 -1000
libraries/ESP_SR/examples/Basic--00💚 -440----------
libraries/Ethernet/examples/ETH_TLK110--00----------💚 -1000
libraries/SD_MMC/examples/SD2USBMSC--00💚 -440----------
libraries/SD_MMC/examples/SDMMC_Test--00💚 -440--------💚 -1000
libraries/SD_MMC/examples/SDMMC_time--00💚 -440--------💚 -1080
libraries/USB/examples/CompositeDevice--00💚 -480💚 -480--------
libraries/USB/examples/ConsumerControl--00💚 -440💚 -480--------
libraries/USB/examples/CustomHIDDevice--00💚 -440💚 -520--------
libraries/USB/examples/FirmwareMSC--00💚 -440💚 -480--------
libraries/USB/examples/Gamepad--00💚 -440💚 -480--------
libraries/USB/examples/HIDVendor--00💚 -440💚 -520--------
libraries/USB/examples/Keyboard/KeyboardLogout--00💚 -440💚 -480--------
libraries/USB/examples/Keyboard/KeyboardMessage--00💚 -440💚 -480--------
libraries/USB/examples/Keyboard/KeyboardReprogram--00💚 -440💚 -480--------
libraries/USB/examples/Keyboard/KeyboardSerial--00💚 -440💚 -480--------
libraries/USB/examples/KeyboardAndMouseControl--00💚 -440💚 -480--------
libraries/USB/examples/MIDI/MidiController--00💚 -440💚 -480--------
libraries/USB/examples/MIDI/MidiInterface--00💚 -440💚 -480--------
libraries/USB/examples/MIDI/MidiMusicBox--00💚 -440💚 -480--------
libraries/USB/examples/MIDI/ReceiveMidi--00💚 -440💚 -480--------
libraries/USB/examples/Mouse/ButtonMouseControl--00💚 -440💚 -480--------
libraries/USB/examples/SystemControl--00💚 -440💚 -480--------
libraries/USB/examples/USBMSC--00💚 -440💚 -480--------
libraries/USB/examples/USBSerial--00💚 -440💚 -480--------
libraries/USB/examples/USBVendor--00💚 -440💚 -480--------
libraries/ESP32/examples/Camera/CameraWebServer----💚 -440💚 -520------💚 -1120
ESP32/examples/Camera/CameraWebServer (2)----💚 -440💚 -560------💚 -1000
ESP32/examples/Camera/CameraWebServer (3)----💚 -440----------
libraries/ESP32/examples/DeepSleep/ExternalWakeUp----💚 -440💚 -480------💚 -1000
libraries/BluetoothSerial/examples/DiscoverConnect--------------💚 -1080
libraries/BluetoothSerial/examples/GetLocalMAC--------------💚 -1040
libraries/BluetoothSerial/examples/SerialToSerialBT--------------💚 -1000
libraries/BluetoothSerial/examples/SerialToSerialBTM--------------💚 -960
libraries/BluetoothSerial/examples/SerialToSerialBT_Legacy--------------💚 -1000
libraries/BluetoothSerial/examples/SerialToSerialBT_SSP--------------💚 -1080
libraries/BluetoothSerial/examples/bt_classic_device_discovery--------------💚 -920
libraries/BluetoothSerial/examples/bt_remove_paired_devices--------------💚 -1040
libraries/ESP32/examples/DeepSleep/SmoothBlink_ULP_Code--------------💚 -1000
libraries/Ethernet/examples/ETH_LAN8720--------------💚 -1000
libraries/SimpleBLE/examples/SimpleBleDevice--------------💚 -1000

Copy link
Collaborator

@SuGlider SuGlider left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No OpenThread for the C61.

Co-authored-by: Sugar Glider <rodrigo.garcia@espressif.com>
@Jason2866
Copy link
Collaborator

@lucasssvaz adding c61 in cores/esp32/esp32-hal-psram.c is missing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Status: Blocked upstream 🛑 PR is waiting on upstream changes to be merged first Type: Chip support Concerns support for a specific SoC.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants