Skip to content

fix(uart): always applies the user selected UART Clock Source #11747

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

SuGlider
Copy link
Collaborator

Description of Change

The problem affects more often SoC that supports REF_TICK UART Clock source (ESP32 and ESP32-S2).

The implementation has an issue retated to when the user doesn't set any specific UART source clock and the UART changes its baudrate from lower than 250,000 to higher (ESP32/ESP32-S2).

The bug is about not changing the clock source to something faster (APB) in order to get correct clock resolution in order to reach closer enough to the new baudrate selection.

The new behaviour (which was working before) is that is the application doesn't set any specific UART clock rate, it shall follow a rule:

ESP32/ESP32-S2 will use REF_TICK whenever baudrate is lower than 250,000. Other SoC will use XTAL. ESP32/ESP32-S2 will change UART Clock Source to APB when baudrate is higher than 250,000 for a better final result.

If the user application explicitaly changes the UART Clock Source using setClockSource(), this new clock source will be used always, independently from the target SoC and selected baudrate (overriding the rule above).

Test Scenarios

Using ESP32 / ESP32-S2 and setting Debug Level to Verbose - Checking the logs about UART_1 Clock Source.

void setup() {
  Serial.begin(115200);
  delay(1000);
  Serial.println("No USER SET for UART_1 Clock Source");
  Serial.println("==============================");
  Serial.println("Serial1 @ 9600");
  Serial1.begin(9600);
  Serial.println("==============================");
  Serial.println("Serial1 @ 230400");
  Serial1.begin(115200 * 2);
  delay(1000);
  Serial.println("==============================");
  Serial.println("Serial1 @ 460800");
  Serial1.begin(115200 * 4);
  delay(1000);
  Serial.println("==============================");

  Serial1.end();
  
  Serial.println("USER SET for UART_1 Clock Source");
  Serial2.setClockSource(UART_CLK_SRC_APB);  // VALID ONLY FOR ESP32/ESP32-S2
  Serial.println("==============================");
  Serial.println("Serial1 @ 9600");
  Serial1.begin(9600);
  Serial.println("==============================");
  Serial.println("Serial1 @ 230400");
  Serial1.begin(115200 * 2);
  delay(1000);
  Serial.println("==============================");
  Serial.println("Serial1 @ 460800");
  Serial1.begin(115200 * 4);
  delay(1000);
  Serial.println("==============================");

void loop() {
  delay(1000);
}

Related links

Closes #11721

The problem affects more often SoC that supports REF_TICK UART Clock source (ESP32 and ESP32-S2). 

The implementation has an issue retated to when the user doesn't set any specific UART source clock and the UART changes its baudrate from lower than 250,000 to higher (ESP32/ESP32-S2).

The bug is about not changing the clock source to something faster (APB) in order to get correct clock resolution in order to reach closer enough to the new baudrate selection.

The new behaviour (which was working before) is that is the application doesn't set any specific UART clock rate, it shall follow a rule:

ESP32/ESP32-S2 will use REF_TICK whenever baudrate is lower than 250,000. Other SoC will use XTAL.
ESP32/ESP32-S2 will change UART Clock Source to APB when baudrate is higher than 250,000 for a better final result.

If the user application explicitaly changes the UART Clock Source using `setClockSource()`, this new clock source will be used always, independently from the target SoC and selected baudrate (overriding the rule above).
@SuGlider SuGlider added this to the 3.3.0 milestone Aug 20, 2025
@SuGlider SuGlider self-assigned this Aug 20, 2025
@SuGlider SuGlider requested a review from a team as a code owner August 20, 2025 13:42
@SuGlider SuGlider added the Peripheral: UART Related to the UART peripheral or its functionality. label Aug 20, 2025
Copy link
Contributor

Warnings
⚠️

Some issues found for the commit messages in this PR:

  • the commit message "fix(uart): always applies the user selected UART Clock Source":
    • body's lines must not be longer than 100 characters

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 SuGlider, 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 374e2d4

Copy link
Contributor

Test Results

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

Results for commit 374e2d4.

Copy link
Contributor

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
ESP32C5💚 -540💚 -0.020.00000.000.00
ESP32P4💚 -440💚 -0.010.00000.000.00
ESP32S3💚 -360💚 -0.010.00000.000.00
ESP32S2💚 -36⚠️ +12💚 -0.010.00000.000.00
ESP32C3💚 -300💚 -0.010.00000.000.00
ESP32C6💚 -540💚 -0.020.00000.000.00
ESP32H2💚 -320💚 -0.010.00000.000.00
ESP32💚 -440💚 -0.010.00000.000.00
Click to expand the detailed deltas report [usage change in BYTES]
TargetESP32C5ESP32P4ESP32S3ESP32S2ESP32C3ESP32C6ESP32H2ESP32
ExampleFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAM
ArduinoOTA/examples/BasicOTA💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
AsyncUDP/examples/AsyncUDPClient💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
AsyncUDP/examples/AsyncUDPMulticastServer💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
AsyncUDP/examples/AsyncUDPServer💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
BLE/examples/Beacon_Scanner💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -320
BLE/examples/Client💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/EddystoneTLM_Beacon💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -320
BLE/examples/EddystoneURL_Beacon💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/Notify💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/Scan💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/Server💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/Server_multiconnect💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/UART💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/Write💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
BLE/examples/iBeacon💚 -520--💚 -240--💚 -280💚 -520💚 -300💚 -280
DNSServer/examples/CaptivePortal💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
EEPROM/examples/eeprom_class💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
EEPROM/examples/eeprom_extra💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
EEPROM/examples/eeprom_write💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/AnalogOut/LEDCFade💚 -520💚 -440💚 -240💚 -240💚 -300💚 -520💚 -300💚 -280
ESP32/examples/AnalogOut/LEDCGammaFade💚 -520💚 -420------💚 -520💚 -300--
ESP32/examples/AnalogOut/LEDCSingleChannel0000000000000000
ESP32/examples/AnalogOut/LEDCSoftwareFade0000000000000000
ESP32/examples/AnalogOut/SigmaDelta0000000000000000
ESP32/examples/AnalogOut/ledcFrequency0000000000000000
ESP32/examples/AnalogOut/ledcWrite_RGB💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/AnalogRead💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
ESP32/examples/AnalogReadContinuous💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/ArduinoStackSize💚 -540💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/CI/CIBoardsTest💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -440
ESP32/examples/ChipID/GetChipID💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/DeepSleep/TimerWakeUp💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
ESP32/examples/FreeRTOS/BasicMultiThreading💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/FreeRTOS/Mutex💚 -520💚 -420💚 -240💚 -240💚 -280💚 -540💚 -300💚 -280
ESP32/examples/FreeRTOS/Queue💚 -540💚 -420💚 -240💚 -240💚 -280💚 -540💚 -300💚 -280
ESP32/examples/FreeRTOS/Semaphore💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/GPIO/BlinkRGB0000000000000000
ESP32/examples/GPIO/FunctionalInterrupt💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/GPIO/FunctionalInterruptLambda💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/GPIO/FunctionalInterruptStruct💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/GPIO/GPIOInterrupt💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
ESP32/examples/HWCDC_Events💚 -52000💚 -240--💚 -280💚 -520💚 -320--
ESP32/examples/MacAddress/GetMacAddress💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/Legacy_RMT_Driver_Compatible💚 -540💚 -420💚 -240💚 -240💚 -280💚 -540💚 -300💚 -280
ESP32/examples/RMT/RMTCallback💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMTLoopback💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMTReadXJT💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMTWrite_RGB_LED💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMT_CPUFreq_Test💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMT_EndOfTransmissionState💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/RMT/RMT_LED_Blink💚 -540💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/ResetReason/ResetReason💚 -540💚 -420💚 -240💚 -240💚 -280💚 -540💚 -300💚 -280
ESP32/examples/ResetReason/ResetReason2💚 -540💚 -420💚 -240💚 -240💚 -280💚 -540💚 -300💚 -280
ESP32/examples/Serial/BaudRateDetect_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/OnReceiveError_BREAK_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/OnReceive_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/RS485_Echo_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/RxFIFOFull_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/RxTimeout_Demo💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/Serial_All_CPU_Freqs💚 -520💚 -440💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Serial/Serial_STD_Func_OnReceive💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
ESP32/examples/Serial/onReceiveExample💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Template/ExampleTemplate0000000000000000
ESP32/examples/Time/SimpleTime💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
ESP32/examples/Timer/RepeatTimer💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Timer/WatchdogTimer💚 -520💚 -420💚 -240💚 -240💚 -300💚 -520💚 -300💚 -280
ESP32/examples/Utilities/HEXBuilder💚 -520💚 -440💚 -240💚 -240💚 -300💚 -520💚 -300💚 -280
ESP32/examples/Utilities/MD5Builder💚 -520💚 -420💚 -240💚 -240💚 -300💚 -520💚 -300💚 -280
ESP32/examples/Utilities/SHA1Builder💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP_I2S/examples/ES8388_loopback💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP_I2S/examples/Simple_tone💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP_NOW/examples/ESP_NOW_Broadcast_Master💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
ESP_NOW/examples/ESP_NOW_Broadcast_Slave💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
ESP_NOW/examples/ESP_NOW_Network💚 -520--💚 -280💚 -240💚 -280💚 -520--💚 -160
ESP_NOW/examples/ESP_NOW_Serial💚 -520--💚 -240💚 -280💚 -280💚 -520--💚 -280
ESPmDNS/examples/mDNS-SD_Extended💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
ESPmDNS/examples/mDNS_Web_Server💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
Ethernet/examples/ETH_W5500_Arduino_SPI💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Ethernet/examples/ETH_W5500_IDF_SPI💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Ethernet/examples/ETH_WIFI_BRIDGE💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
FFat/examples/FFat_Test💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
FFat/examples/FFat_time💚 -520💚 -420💚 -24000💚 -280💚 -520--💚 -280
HTTPClient/examples/Authorization💚 -520💚 -420💚 -240💚 -320💚 -280💚 -520--💚 -280
HTTPClient/examples/BasicHttpClient💚 -520💚 -420💚 -240💚 -320💚 -280💚 -520--💚 -320
HTTPClient/examples/BasicHttpsClient💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
HTTPClient/examples/HTTPClientEnterprise💚 -520--💚 -240💚 -280💚 -280💚 -520--💚 -280
HTTPClient/examples/ReuseConnection💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
HTTPClient/examples/StreamHttpClient💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
HTTPUpdate/examples/httpUpdate💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -240
HTTPUpdate/examples/httpUpdateSPIFFS💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -240
HTTPUpdate/examples/httpUpdateSecure💚 -520💚 -420💚 -240💚 -120💚 -280💚 -520--💚 -320
HTTPUpdateServer/examples/WebUpdater💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
Insights/examples/DiagnosticsSmokeTest💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -320
Insights/examples/MinimalDiagnostics💚 -520--💚 -280💚 -280💚 -280💚 -520--💚 -320
LittleFS/examples/LITTLEFS_test💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
LittleFS/examples/LITTLEFS_time💚 -520💚 -420💚 -280💚 -240💚 -280💚 -520--💚 -280
Matter/examples/MatterColorLight💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -240
Matter/examples/MatterCommissionTest💚 -520--💚 -320💚 -240💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterComposedLights💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
Matter/examples/MatterContactSensor💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterDimmableLight💚 -520--💚 -200💚 -360💚 -280💚 -540💚 -300💚 -280
Matter/examples/MatterEnhancedColorLight💚 -520--💚 -320💚 -240💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterEvents💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterFan💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterHumiditySensor💚 -520--💚 -280💚 -280💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterLambdaSingleCallbackManyEPs💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterMinimum💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterOccupancySensor💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterOnIdentify💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterOnOffLight💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterOnOffPlugin💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -360
Matter/examples/MatterPressureSensor💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterSmartButon💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Matter/examples/MatterTemperatureLight💚 -520--💚 -240💚 -200💚 -280💚 -520💚 -300💚 -320
Matter/examples/MatterTemperatureSensor💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -400
Matter/examples/MatterThermostat💚 -540--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -320
NetBIOS/examples/ESP_NBNST💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
NetworkClientSecure/examples/WiFiClientInsecure💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
NetworkClientSecure/examples/WiFiClientPSK💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
NetworkClientSecure/examples/WiFiClientSecure💚 -520💚 -420💚 -360💚 -280💚 -280💚 -520--💚 -320
NetworkClientSecure/examples/WiFiClientSecureEnterprise💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
NetworkClientSecure/examples/WiFiClientSecureProtocolUpgrade💚 -520💚 -420💚 -280💚 -240💚 -280💚 -520--💚 -280
NetworkClientSecure/examples/WiFiClientShowPeerCredentials💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
NetworkClientSecure/examples/WiFiClientTrustOnFirstUse💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
OpenThread/examples/CLI/COAP/coap_lamp💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/COAP/coap_switch💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/SimpleCLI💚 -540--------💚 -520💚 -300--
OpenThread/examples/CLI/SimpleNode💚 -520--------💚 -520💚 -320--
OpenThread/examples/CLI/SimpleThreadNetwork/ExtendedRouterNode💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/SimpleThreadNetwork/LeaderNode💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/SimpleThreadNetwork/RouterNode💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/ThreadScan💚 -520--------💚 -520💚 -300--
OpenThread/examples/CLI/onReceive💚 -540--------💚 -520💚 -300--
OpenThread/examples/Native/SimpleThreadNetwork/LeaderNode💚 -520--------💚 -520💚 -300--
OpenThread/examples/Native/SimpleThreadNetwork/RouterNode💚 -520--------💚 -520💚 -300--
PPP/examples/PPP_Basic💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
PPP/examples/PPP_WIFI_BRIDGE💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
Preferences/examples/Prefs2Struct💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Preferences/examples/StartCounter💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
RainMaker/examples/RMakerCustom💚 -520--💚 -240💚 -280💚 -280💚 -520----
RainMaker/examples/RMakerCustomAirCooler💚 -520--💚 -240💚 -240💚 -280💚 -520----
RainMaker/examples/RMakerSonoffDualR3💚 -520--💚 -240💚 -240💚 -280💚 -520----
RainMaker/examples/RMakerSwitch💚 -520--💚 -240💚 -240💚 -280💚 -520----
SD/examples/SD_Test💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
SD/examples/SD_time💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
SPI/examples/SPI_Multiple_Buses0000000000000000
SPIFFS/examples/SPIFFS_Test💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
SPIFFS/examples/SPIFFS_time💚 -520💚 -420💚 -280💚 -280💚 -280💚 -520--💚 -280
TFLiteMicro/examples/hello_world0000000000000000
Ticker/examples/Blinker0000000000000000
Ticker/examples/TickerBasic0000000000000000
Ticker/examples/TickerParameter0000000000000000
Update/examples/AWS_S3_OTA_Update💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
Update/examples/HTTPS_OTA_Update💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
Update/examples/HTTP_Client_AES_OTA_Update💚 -520💚 -420💚 -200💚 -240💚 -280💚 -520--💚 -280
Update/examples/HTTP_Server_AES_OTA_Update💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
Update/examples/OTAWebUpdater💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
Update/examples/SD_Update💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
WebServer/examples/AdvancedWebServer💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/FSBrowser💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/Filters💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WebServer/examples/HelloServer💚 -520💚 -420💚 -280⚠️ +120💚 -280💚 -520--💚 -280
WebServer/examples/HttpAdvancedAuth💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/HttpAuthCallback💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/HttpAuthCallbackInline💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/HttpBasicAuth💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/HttpBasicAuthSHA1💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WebServer/examples/HttpBasicAuthSHA1orBearerToken💚 -520💚 -420💚 -280💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/Middleware💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/MultiHomedServers💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/PathArgServer💚 -520💚 -420💚 -280💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/SDWebServer💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WebServer/examples/SimpleAuthentification💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WebServer/examples/UploadHugeFile💚 -520💚 -420💚 -200💚 -320💚 -280💚 -520--💚 -320
WebServer/examples/WebServer💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WebServer/examples/WebUpdate💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/FTM/FTM_Initiator💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/FTM/FTM_Responder💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/SimpleWiFiServer💚 -520💚 -420💚 -200💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WPS💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiAccessPoint💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiBlueToothSwitch💚 -520--💚 -240--💚 -280💚 -520--💚 -280
WiFi/examples/WiFiClient💚 -520💚 -420💚 -240💚 -320💚 -280💚 -520--💚 -280
WiFi/examples/WiFiClientBasic💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiClientConnect💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiClientEnterprise💚 -520--💚 -240💚 -280💚 -280💚 -520--💚 -160
WiFi/examples/WiFiClientEvents💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiClientStaticIP💚 -520💚 -420💚 -240💚 -320💚 -280💚 -520--💚 -280
WiFi/examples/WiFiExtender💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -360
WiFi/examples/WiFiIPv6💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
WiFi/examples/WiFiMulti💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WiFi/examples/WiFiMultiAdvanced💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -320
WiFi/examples/WiFiScan💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiScanAsync💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiScanDualAntenna💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiScanTime💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiSmartConfig💚 -520--💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFi/examples/WiFiTelnetToSerial💚 -520💚 -420💚 -240💚 -280💚 -280💚 -520--💚 -280
WiFi/examples/WiFiUDPClient💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520--💚 -280
WiFiProv/examples/WiFiProv💚 -520--💚 -240💚 -280💚 -280💚 -520--💚 -280
Wire/examples/WireMaster💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
Wire/examples/WireScan💚 -520💚 -420💚 -240💚 -240💚 -280💚 -520💚 -320💚 -280
Wire/examples/WireSlave💚 -520💚 -420💚 -240💚 -240💚 -300💚 -540💚 -300💚 -280
Wire/examples/WireSlaveFunctionalCallback💚 -520💚 -420💚 -240💚 -240💚 -300💚 -540💚 -300💚 -280
Zigbee/examples/Zigbee_Analog_Input_Output💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Binary_Input💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_CarbonDioxide_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Color_Dimmable_Light💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Color_Dimmer_Switch💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Contact_Switch💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Dimmable_Light💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Electrical_AC_Sensor💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Electrical_DC_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Fan_Control💚 -520--💚 -240💚 -280💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Gateway💚 -520--💚 -240💚 -240💚 -280----💚 -280
Zigbee/examples/Zigbee_Illuminance_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_OTA_Client💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Occupancy_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_On_Off_Light💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_On_Off_MultiSwitch💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_On_Off_Switch💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_PM25_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Power_Outlet💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -30000
Zigbee/examples/Zigbee_Pressure_Flow_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Range_Extender💚 -520--💚 -280💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Scan_Networks💚 -520--------💚 -540💚 -300--
Zigbee/examples/Zigbee_Temp_Hum_Sensor_Sleepy💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Temperature_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Thermostat💚 -520--💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
Zigbee/examples/Zigbee_Vibration_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Wind_Speed_Sensor💚 -520--------💚 -520💚 -300--
Zigbee/examples/Zigbee_Window_Covering💚 -520--------💚 -520💚 -300--
ESP32/examples/DeepSleep/TouchWakeUp--💚 -420💚 -240💚 -240------💚 -280
ESP32/examples/TWAI/TWAIreceive--💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/TWAI/TWAItransmit--💚 -420💚 -240💚 -240💚 -280💚 -520💚 -300💚 -280
ESP32/examples/Touch/TouchInterrupt--💚 -420💚 -240💚 -240------💚 -280
ESP32/examples/Touch/TouchRead--💚 -440💚 -240💚 -240------💚 -280
ESP_I2S/examples/Record_to_WAV--💚 -420💚 -240--------💚 -280
Ethernet/examples/ETH_TLK110--💚 -420----------💚 -280
SD_MMC/examples/SD2USBMSC--💚 -420💚 -240----------
SD_MMC/examples/SDMMC_Test--💚 -420💚 -240--------💚 -280
SD_MMC/examples/SDMMC_time--💚 -420💚 -280--------💚 -280
USB/examples/CompositeDevice--💚 -420💚 -240💚 -240--------
USB/examples/ConsumerControl--000000--------
USB/examples/CustomHIDDevice--💚 -420💚 -240💚 -240--------
USB/examples/FirmwareMSC--💚 -420💚 -240💚 -240--------
USB/examples/Gamepad--💚 -420💚 -240💚 -240--------
USB/examples/HIDVendor--💚 -420💚 -240💚 -240--------
USB/examples/Keyboard/KeyboardLogout--000000--------
USB/examples/Keyboard/KeyboardMessage--000000--------
USB/examples/Keyboard/KeyboardReprogram--000000--------
USB/examples/Keyboard/KeyboardSerial--💚 -420💚 -240💚 -240--------
USB/examples/KeyboardAndMouseControl--💚 -420💚 -240💚 -240--------
USB/examples/MIDI/MidiController--💚 -420💚 -240💚 -240--------
USB/examples/MIDI/MidiInterface--💚 -420💚 -240💚 -240--------
USB/examples/MIDI/MidiMusicBox--💚 -420💚 -240💚 -240--------
USB/examples/MIDI/ReceiveMidi--💚 -420💚 -240💚 -240--------
USB/examples/Mouse/ButtonMouseControl--000000--------
USB/examples/SystemControl--000000--------
USB/examples/USBMSC--💚 -420💚 -240💚 -240--------
USB/examples/USBSerial--💚 -420💚 -240💚 -240--------
USB/examples/USBVendor--💚 -420💚 -240💚 -240--------
ESP32/examples/Camera/CameraWebServer (1)----💚 -240💚 -320------💚 -240
ESP32/examples/Camera/CameraWebServer (2)----💚 -240💚 -240------💚 -280
ESP32/examples/Camera/CameraWebServer (3)----💚 -240----------
ESP32/examples/DeepSleep/ExternalWakeUp----💚 -240💚 -240------💚 -280
ESP_SR/examples/Basic----💚 -240----------
BluetoothSerial/examples/DiscoverConnect--------------💚 -400
BluetoothSerial/examples/GetLocalMAC--------------💚 -200
BluetoothSerial/examples/SerialToSerialBT--------------💚 -200
BluetoothSerial/examples/SerialToSerialBTM--------------💚 -280
BluetoothSerial/examples/SerialToSerialBT_Legacy--------------💚 -280
BluetoothSerial/examples/SerialToSerialBT_SSP--------------💚 -280
BluetoothSerial/examples/bt_classic_device_discovery--------------💚 -280
BluetoothSerial/examples/bt_remove_paired_devices--------------💚 -320
ESP32/examples/DeepSleep/SmoothBlink_ULP_Code--------------💚 -280
Ethernet/examples/ETH_LAN8720--------------💚 -280
SimpleBLE/examples/SimpleBleDevice--------------💚 -160

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Peripheral: UART Related to the UART peripheral or its functionality.
Projects
Development

Successfully merging this pull request may close these issues.

[UART] Large deviation between requested and actual baud on ESP32 (Arduino core 3.2.1) — breaks comms
1 participant