Skip to content
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

feat(uart): only enable on_receive task if necessary #10423

Closed
wants to merge 1 commit into from

Conversation

SuGlider
Copy link
Collaborator

@SuGlider SuGlider commented Oct 5, 2024

Description of Change

The onReceive Task was created by default when Serial.begin() is executed. This creates a additonal Task that degrades the performance of the whole arduino sketch.

This will be done now only if onReceive() is called.

Tests scenarios

uint32_t  Loopcounter = 0;
static uint32_t msTick;      

void setup() 
{
 Serial.begin(115200);                     // Setup the serial port to 115200 baud //
 msTick = millis(); 

 Serial0.begin(115200); // THIS Line starts UART Arduino Driver and also starts an additional Task that "eats" CPU time...
}

void loop() 
{
 Loopcounter++;
 EverySecondCheck();
}

//--------------------------------------------//
// COMMON Update routine done every second
//--------------------------------------------
void EverySecondCheck(void)
{
 uint32_t msLeap = millis() - msTick;     // 
 if (msLeap >999)                         // Every second enter the loop
 {
  msTick = millis();
 Serial.printf("Loops per second: %u\n",Loopcounter);
 Loopcounter = 0;
 }  
}

Related links

closes #10397
closes #10420

The onReceive Task was created by default when Serial.begin() is executed. This creates a additonal Task that degrades the performance of the whole arduino sketch.

This will be done now only if onReceive() is called.
@SuGlider SuGlider added this to the 3.0.5 milestone Oct 5, 2024
@SuGlider SuGlider self-assigned this Oct 5, 2024
Copy link
Contributor

github-actions bot commented Oct 5, 2024

Warnings
⚠️

Some issues found for the commit messages in this PR:

  • the commit message "feat(uart): only enable on_receive task if necessary":
    • 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 20 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!


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 5e472cb

Copy link
Contributor

github-actions bot commented Oct 5, 2024

Test Results

 56 files   -  96   56 suites   - 96   4m 12s ⏱️ - 34m 32s
 21 tests  -  15   21 ✅ ± 0  0 💤 ±0  0 ❌ ±0 
135 runs   - 111  135 ✅  - 39  0 💤 ±0  0 ❌ ±0 

Results for commit 5e472cb. ± Comparison against base commit 8ce5f77.

This pull request removes 15 tests.
performance.coremark.test_coremark ‑ test_coremark
performance.fibonacci.test_fibonacci ‑ test_fibonacci
performance.linpack_double.test_linpack_double ‑ test_linpack_double
performance.linpack_float.test_linpack_float ‑ test_linpack_float
performance.psramspeed.test_psramspeed ‑ test_psramspeed
performance.ramspeed.test_ramspeed ‑ test_ramspeed
performance.superpi.test_superpi ‑ test_superpi
test_touch_errors
test_touch_interrtupt
test_touch_read
…

@SuGlider
Copy link
Collaborator Author

SuGlider commented Oct 5, 2024

After testing it .... everything point to the UART Driver itself!

@SuGlider SuGlider closed this Oct 5, 2024
Copy link
Contributor

github-actions bot commented Oct 5, 2024

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
ESP32S3💚 -640‼️ +2091K💚 -0.23‼️ +215.050‼️ +15K0.00‼️ +26.21
ESP32S2💚 -744‼️ +3K💚 -0.29⚠️ +0.340⚠️ +240.00⚠️ +0.05
ESP32C3💚 -7940💚 -0.310.00000.000.00
ESP32C6💚 -7860💚 -0.370.00000.000.00
ESP32H2💚 -7920💚 -0.310.00000.000.00
ESP32💚 -648‼️ +11K💚 -0.22‼️ +1.080⚠️ +640.00⚠️ +0.11
Click to expand the detailed deltas report [usage change in BYTES]
TargetESP32S3ESP32S2ESP32C3ESP32C6ESP32H2ESP32
ExampleFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAM
ArduinoOTA/examples/BasicOTA💚 -2320💚 -2400💚 -2680💚 -2680--💚 -2520
AsyncUDP/examples/AsyncUDPClient💚 -2360💚 -2320💚 -2680💚 -2680--💚 -2520
AsyncUDP/examples/AsyncUDPMulticastServer💚 -2200💚 -2400💚 -2680💚 -2680--💚 -2480
AsyncUDP/examples/AsyncUDPServer💚 -2160💚 -2320💚 -2680💚 -2680--💚 -2480
BLE/examples/BLE5_extended_scan💚 -4280--💚 -4240💚 -4240💚 -4240--
BLE/examples/BLE5_multi_advertising💚 -4320--💚 -4280💚 -4360💚 -4280--
BLE/examples/BLE5_periodic_advertising💚 -4160--💚 -4280💚 -4360💚 -4280--
BLE/examples/BLE5_periodic_sync💚 -4080--💚 -4280💚 -4280💚 -4280--
BLE/examples/Beacon_Scanner💚 -4160--💚 -4220💚 -4300💚 -4220💚 -4200
BLE/examples/Client💚 -4240--💚 -4240💚 -4320💚 -4240💚 -4280
BLE/examples/EddystoneTLM_Beacon💚 -4320--💚 -4220💚 -4220💚 -4220💚 -4200
BLE/examples/EddystoneURL_Beacon💚 -4160--💚 -4240💚 -4320💚 -4240💚 -4040
BLE/examples/Notify💚 -3800--💚 -4220💚 -4300💚 -4220💚 -4280
BLE/examples/Scan💚 -4000--💚 -4220💚 -4220💚 -4220💚 -4280
BLE/examples/Server💚 -4120--💚 -4280💚 -4360💚 -4280💚 -4200
BLE/examples/Server_multiconnect💚 -4120--💚 -4220💚 -4300💚 -4220💚 -4360
BLE/examples/UART💚 -4360--💚 -4220💚 -4300💚 -4220💚 -3960
BLE/examples/Write💚 -4040--💚 -4280💚 -4360💚 -4280💚 -4080
BLE/examples/iBeacon💚 -4120--💚 -4220💚 -4300💚 -4220💚 -4480
DNSServer/examples/CaptivePortal💚 -2480💚 -2520💚 -2680💚 -2680--💚 -2480
EEPROM/examples/eeprom_class💚 -6400💚 -7320💚 -7720💚 -7720💚 -7720💚 -6480
EEPROM/examples/eeprom_extra💚 -6400💚 -7320💚 -7760💚 -7700💚 -7700💚 -6480
EEPROM/examples/eeprom_write💚 -6240💚 -7320💚 -7800💚 -7680💚 -7760💚 -6480
ESP32/examples/AnalogOut/LEDCFade💚 -6400💚 -7320💚 -7740💚 -7640💚 -7720💚 -6480
ESP32/examples/AnalogOut/LEDCSingleChannel000000000000
ESP32/examples/AnalogOut/LEDCSoftwareFade000000000000
ESP32/examples/AnalogOut/SigmaDelta000000000000
ESP32/examples/AnalogOut/ledcFrequency000000000000
ESP32/examples/AnalogOut/ledcWrite_RGB💚 -6400💚 -7320💚 -7720💚 -7640💚 -7700💚 -6480
ESP32/examples/AnalogRead💚 -6240💚 -7320💚 -7720💚 -7700💚 -7720💚 -6480
ESP32/examples/AnalogReadContinuous💚 -6400💚 -7320💚 -7740💚 -7720💚 -7700💚 -6480
ESP32/examples/ArduinoStackSize💚 -6400💚 -7320💚 -7740💚 -7640💚 -7720💚 -6480
ESP32/examples/CI/CIBoardsTest💚 -4040💚 -4000💚 -4340💚 -4340💚 -4340💚 -4120
ESP32/examples/Camera/CameraWebServer‼️ +2091K‼️ +15K‼️ +3K⚠️ +24------‼️ +11K⚠️ +64
ESP32/examples/ChipID/GetChipID💚 -6400💚 -7320💚 -7820💚 -7720💚 -7780💚 -6480
ESP32/examples/DeepSleep/ExternalWakeUp💚 -6400💚 -7320------💚 -6480
ESP32/examples/DeepSleep/TimerWakeUp💚 -6400💚 -7320💚 -7760💚 -7680--💚 -6480
ESP32/examples/DeepSleep/TouchWakeUp💚 -4080💚 -4000------💚 -6480
ESP32/examples/FreeRTOS/BasicMultiThreading💚 -4040💚 -4000💚 -4380💚 -4360💚 -4380💚 -6480
ESP32/examples/FreeRTOS/Mutex💚 -6240💚 -7320💚 -7800💚 -7680💚 -7780💚 -6480
ESP32/examples/FreeRTOS/Queue💚 -4040💚 -4000💚 -4360💚 -4260💚 -4340💚 -4120
ESP32/examples/FreeRTOS/Semaphore💚 -6400💚 -7320💚 -7800💚 -7700💚 -7780💚 -6480
ESP32/examples/GPIO/BlinkRGB000000000000
ESP32/examples/GPIO/FunctionalInterrupt💚 -4080💚 -4000💚 -4460💚 -4420💚 -4420💚 -6480
ESP32/examples/GPIO/FunctionalInterruptStruct💚 -4080💚 -4000💚 -4360💚 -4220💚 -4300💚 -6480
ESP32/examples/GPIO/GPIOInterrupt💚 -4080💚 -4000💚 -4340💚 -4220💚 -4320💚 -6480
ESP32/examples/HWCDC_Events💚 -4040--💚 -4360💚 -4220💚 -4300--
ESP32/examples/MacAddress/GetMacAddress💚 -6240💚 -7320💚 -7840💚 -7840💚 -7820💚 -6480
ESP32/examples/RMT/Legacy_RMT_Driver_Compatible💚 -6400💚 -7320💚 -7820💚 -7700💚 -7780💚 -6480
ESP32/examples/RMT/RMTCallback💚 -4040💚 -4000💚 -4340💚 -4320💚 -4320💚 -4120
ESP32/examples/RMT/RMTLoopback💚 -4040💚 -4000💚 -4400💚 -4300💚 -4360💚 -4120
ESP32/examples/RMT/RMTReadXJT💚 -4040💚 -4000💚 -4340💚 -4220💚 -4280💚 -4120
ESP32/examples/RMT/RMTWrite_RGB_LED💚 -4040💚 -4000💚 -4320💚 -4200💚 -4280💚 -4120
ESP32/examples/RMT/RMT_CPUFreq_Test💚 -4040💚 -4000💚 -4420💚 -4320💚 -4420💚 -4120
ESP32/examples/RMT/RMT_EndOfTransmissionState💚 -4040💚 -4000💚 -4360💚 -4240💚 -4300💚 -4120
ESP32/examples/RMT/RMT_LED_Blink💚 -4040💚 -4000💚 -4440💚 -4340💚 -4460💚 -4120
ESP32/examples/ResetReason/ResetReason💚 -6400💚 -7320💚 -7740💚 -7660💚 -7720💚 -6480
ESP32/examples/ResetReason/ResetReason2💚 -6400💚 -7320💚 -7740💚 -7620💚 -7700💚 -6480
ESP32/examples/Serial/BaudRateDetect_Demo💚 -6400💚 -7320💚 -7740💚 -7680💚 -7720💚 -6480
ESP32/examples/Serial/OnReceiveError_BREAK_Demo💚 -240💚 -240💚 -180💚 -180💚 -180💚 -240
ESP32/examples/Serial/OnReceive_Demo💚 -240💚 -240💚 -180💚 -180💚 -180💚 -240
ESP32/examples/Serial/RS485_Echo_Demo💚 -6400💚 -7320💚 -7740💚 -7640💚 -7700💚 -6480
ESP32/examples/Serial/RxFIFOFull_Demo💚 -6400💚 -7320💚 -7800💚 -7700💚 -7780💚 -6480
ESP32/examples/Serial/RxTimeout_Demo💚 -6400💚 -7320💚 -7740💚 -7640💚 -7740💚 -6480
ESP32/examples/Serial/Serial_All_CPU_Freqs💚 -6400💚 -7320💚 -7940💚 -7860💚 -7920💚 -6480
ESP32/examples/Serial/Serial_STD_Func_OnReceive💚 -240💚 -240💚 -180💚 -180💚 -180💚 -240
ESP32/examples/Serial/onReceiveExample💚 -240💚 -240💚 -180💚 -180💚 -180💚 -240
ESP32/examples/TWAI/TWAIreceive💚 -4040💚 -4000💚 -4420💚 -4300💚 -4380💚 -4120
ESP32/examples/TWAI/TWAItransmit💚 -4040💚 -4000💚 -4420💚 -4300💚 -4380💚 -4120
ESP32/examples/Template/ExampleTemplate000000000000
ESP32/examples/Time/SimpleTime💚 -4200💚 -4160💚 -4340💚 -4380--💚 -4320
ESP32/examples/Timer/RepeatTimer💚 -4080💚 -4000💚 -4360💚 -4240💚 -4320💚 -6480
ESP32/examples/Timer/WatchdogTimer💚 -4080💚 -4000💚 -4360💚 -4220💚 -4320💚 -6480
ESP32/examples/Touch/TouchButtonV2💚 -4080💚 -4000--------
ESP32/examples/Touch/TouchInterrupt💚 -4080💚 -4000------💚 -6480
ESP32/examples/Touch/TouchRead💚 -4080💚 -4000------💚 -6480
ESP32/examples/Utilities/HEXBuilder💚 -6400💚 -7320💚 -7760💚 -7740💚 -7740💚 -6480
ESP32/examples/Utilities/MD5Builder💚 -6400💚 -7320💚 -7780💚 -7760💚 -7760💚 -6480
ESP32/examples/Utilities/SHA1Builder💚 -6400💚 -7440💚 -7840💚 -7820💚 -7820💚 -6480
ESP_I2S/examples/ES8388_loopback💚 -4040💚 -4000💚 -4360💚 -4300💚 -4320💚 -4120
ESP_I2S/examples/Record_to_WAV💚 -4040--------💚 -4120
ESP_I2S/examples/Simple_tone💚 -4040💚 -4000💚 -4300💚 -4220💚 -4300💚 -4120
ESP_NOW/examples/ESP_NOW_Broadcast_Master💚 -4280💚 -4080💚 -4340💚 -4280--💚 -4280
ESP_NOW/examples/ESP_NOW_Broadcast_Slave💚 -4120💚 -3920💚 -4340💚 -4280--💚 -3920
ESP_NOW/examples/ESP_NOW_Network💚 -4240💚 -4040💚 -4340💚 -4260--💚 -4560
ESP_NOW/examples/ESP_NOW_Serial💚 -4160💚 -4120💚 -4340💚 -4260--💚 -4400
ESP_SR/examples/Basic💚 -4040----------
ESPmDNS/examples/mDNS-SD_Extended💚 -4240💚 -4280💚 -4340💚 -4260--💚 -4280
ESPmDNS/examples/mDNS_Web_Server💚 -4280💚 -4280💚 -4340💚 -4340--💚 -4240
Ethernet/examples/ETH_W5500_Arduino_SPI💚 -4080💚 -4080💚 -4340💚 -4340💚 -4340💚 -4120
Ethernet/examples/ETH_W5500_IDF_SPI💚 -4040💚 -4120💚 -4360💚 -4360💚 -4360💚 -4120
Ethernet/examples/ETH_WIFI_BRIDGE💚 -4280💚 -4040💚 -4340💚 -4260--💚 -4280
FFat/examples/FFat_Test💚 -6400💚 -7320💚 -7680💚 -7780💚 -7680💚 -6480
FFat/examples/FFat_time💚 -4240💚 -4200💚 -4340💚 -4260--💚 -4160
HTTPClient/examples/Authorization💚 -2440💚 -2320💚 -2680💚 -2680--💚 -2560
HTTPClient/examples/BasicHttpClient💚 -2440💚 -2320💚 -2680💚 -2680--💚 -2560
HTTPClient/examples/BasicHttpsClient💚 -2440💚 -2400💚 -2680💚 -2680--💚 -2400
HTTPClient/examples/HTTPClientEnterprise💚 -4160💚 -4040💚 -4340💚 -4340--💚 -4280
HTTPClient/examples/ReuseConnection💚 -2200💚 -2400💚 -2680💚 -2680--💚 -2520
HTTPClient/examples/StreamHttpClient💚 -2400💚 -2320💚 -2680💚 -2680--💚 -2560
HTTPUpdate/examples/httpUpdate💚 -2440💚 -2200💚 -2680💚 -2680--💚 -2520
HTTPUpdate/examples/httpUpdateSPIFFS💚 -2440💚 -2520💚 -2680💚 -2680--💚 -2560
HTTPUpdate/examples/httpUpdateSecure💚 -2360💚 -2240💚 -2680💚 -2680--💚 -2480
HTTPUpdateServer/examples/WebUpdater💚 -2480💚 -2600💚 -2680💚 -2680--💚 -2480
Insights/examples/DiagnosticsSmokeTest💚 -4200💚 -4160💚 -4260💚 -4300--💚 -4280
Insights/examples/MinimalDiagnostics💚 -4160💚 -4200💚 -4300💚 -4260--💚 -4440
LittleFS/examples/LITTLEFS_test💚 -6240💚 -7320💚 -7680💚 -7760💚 -7660💚 -6480
LittleFS/examples/LITTLEFS_time💚 -4240💚 -4240💚 -4340💚 -4260--💚 -3880
NetBIOS/examples/ESP_NBNST💚 -2520💚 -2360💚 -2680💚 -2680--💚 -2560
NetworkClientSecure/examples/WiFiClientInsecure💚 -4240💚 -4200💚 -4340💚 -4340--💚 -4280
NetworkClientSecure/examples/WiFiClientPSK💚 -4160💚 -4200💚 -4340💚 -4340--💚 -4320
NetworkClientSecure/examples/WiFiClientSecure💚 -4200💚 -4240💚 -4340💚 -4340--💚 -4320
NetworkClientSecure/examples/WiFiClientSecureEnterprise💚 -4160💚 -4200💚 -4340💚 -4340--💚 -4240
NetworkClientSecure/examples/WiFiClientSecureProtocolUpgrade💚 -4240💚 -4240💚 -4340💚 -4340--💚 -4280
NetworkClientSecure/examples/WiFiClientShowPeerCredentials💚 -4200💚 -4040💚 -4340💚 -4340--💚 -4360
NetworkClientSecure/examples/WiFiClientTrustOnFirstUse💚 -4160💚 -4240💚 -4340💚 -4340--💚 -4240
PPP/examples/PPP_Basic💚 -2360💚 -2320💚 -2680💚 -2680💚 -2680💚 -2400
PPP/examples/PPP_WIFI_BRIDGE💚 -2440💚 -2480💚 -2680💚 -2680--💚 -2600
Preferences/examples/Prefs2Struct💚 -6400💚 -7320💚 -7820💚 -7780💚 -7760💚 -6480
Preferences/examples/StartCounter💚 -6400💚 -7440💚 -7820💚 -7800💚 -7760💚 -6480
RainMaker/examples/RMakerCustom💚 -3520💚 -4040💚 -4300💚 -4300--💚 -4520
RainMaker/examples/RMakerCustomAirCooler💚 -4240💚 -4000💚 -4300💚 -4300--💚 -4200
RainMaker/examples/RMakerSonoffDualR3💚 -4200💚 -4160💚 -4300💚 -4300--💚 -4520
RainMaker/examples/RMakerSwitch💚 -4120💚 -3880💚 -4360💚 -4320--💚 -4440
SD/examples/SD_Test💚 -4040💚 -4000💚 -4260💚 -4340💚 -4260💚 -6480
SD/examples/SD_time💚 -4240💚 -4120💚 -4340💚 -4340--💚 -4320
SD_MMC/examples/SD2USBMSC💚 -4080----------
SD_MMC/examples/SDMMC_Test💚 -4040--------💚 -4120
SD_MMC/examples/SDMMC_time💚 -4160--------💚 -4320
SPI/examples/SPI_Multiple_Buses000000000000
SPIFFS/examples/SPIFFS_Test💚 -6400💚 -7320💚 -7700💚 -7780💚 -7700💚 -6480
SPIFFS/examples/SPIFFS_time💚 -4240💚 -3840💚 -4340💚 -4340--💚 -4720
SimpleBLE/examples/SimpleBleDevice💚 -4200--💚 -4360💚 -4320💚 -4320💚 -4280
TFLiteMicro/examples/hello_world000000000000
Ticker/examples/Blinker000000000000
Ticker/examples/TickerBasic000000000000
Ticker/examples/TickerParameter000000000000
USB/examples/CompositeDevice💚 -4040💚 -4000--------
USB/examples/ConsumerControl0000--------
USB/examples/CustomHIDDevice💚 -4040💚 -4000--------
USB/examples/FirmwareMSC💚 -4040💚 -4000--------
USB/examples/Gamepad💚 -4040💚 -4000--------
USB/examples/HIDVendor💚 -4040💚 -4000--------
USB/examples/Keyboard/KeyboardLogout0000--------
USB/examples/Keyboard/KeyboardMessage0000--------
USB/examples/Keyboard/KeyboardReprogram0000--------
USB/examples/Keyboard/KeyboardSerial💚 -4040💚 -4000--------
USB/examples/KeyboardAndMouseControl💚 -4040💚 -4000--------
USB/examples/MIDI/MidiController💚 -4040💚 -4000--------
USB/examples/MIDI/MidiInterface💚 -4040💚 -4000--------
USB/examples/MIDI/MidiMusicBox💚 -4040💚 -4000--------
USB/examples/MIDI/ReceiveMidi💚 -4040💚 -4000--------
USB/examples/Mouse/ButtonMouseControl0000--------
USB/examples/SystemControl0000--------
USB/examples/USBMSC💚 -4040💚 -4000--------
USB/examples/USBSerial💚 -4040💚 -4000--------
USB/examples/USBVendor💚 -4040💚 -4000--------
Update/examples/AWS_S3_OTA_Update💚 -2440💚 -2360💚 -2680💚 -2680--💚 -2360
Update/examples/HTTPS_OTA_Update💚 -4240💚 -4240💚 -4280💚 -4280--💚 -4240
Update/examples/HTTP_Client_AES_OTA_Update💚 -2440💚 -2360💚 -2680💚 -2680--💚 -2400
Update/examples/HTTP_Server_AES_OTA_Update💚 -2320💚 -2120💚 -2680💚 -2680--💚 -2560
Update/examples/OTAWebUpdater💚 -2400💚 -1880💚 -2680💚 -2680--💚 -2520
Update/examples/SD_Update💚 -2320💚 -2280💚 -2680💚 -2680💚 -2680💚 -4760
WebServer/examples/AdvancedWebServer💚 -2440💚 -2360💚 -2680💚 -2680--💚 -2560
WebServer/examples/FSBrowser💚 -2440💚 -2600💚 -2680💚 -2680--💚 -2520
WebServer/examples/Filters💚 -2400💚 -2440💚 -2680💚 -2680--💚 -2560
WebServer/examples/HelloServer💚 -2440💚 -2480💚 -2680💚 -2680--💚 -2400
WebServer/examples/HttpAdvancedAuth💚 -2440💚 -2520💚 -2680💚 -2680--💚 -2520
WebServer/examples/HttpAuthCallback💚 -2400💚 -2400💚 -2680💚 -2680--💚 -2560
WebServer/examples/HttpAuthCallbackInline💚 -2440💚 -2440💚 -2680💚 -2680--💚 -2520
WebServer/examples/HttpBasicAuth💚 -2320💚 -2400💚 -2680💚 -2680--💚 -2520
WebServer/examples/HttpBasicAuthSHA1💚 -2360💚 -2320💚 -2680💚 -2680--💚 -2520
WebServer/examples/HttpBasicAuthSHA1orBearerToken💚 -2320💚 -2400💚 -2680💚 -2680--💚 -2440
WebServer/examples/MultiHomedServers💚 -2400💚 -2440💚 -2680💚 -2680--💚 -2480
WebServer/examples/PathArgServer💚 -2440💚 -2280💚 -2680💚 -2680--💚 -2520
WebServer/examples/SDWebServer💚 -2520💚 -2360💚 -2680💚 -2680--💚 -2480
WebServer/examples/SimpleAuthentification💚 -2440💚 -2320💚 -2680💚 -2680--💚 -2640
WebServer/examples/UploadHugeFile💚 -2400💚 -2680💚 -2680💚 -2680--💚 -2480
WebServer/examples/WebServer💚 -2400💚 -2480💚 -2680💚 -2680--💚 -2560
WebServer/examples/WebUpdate💚 -2400💚 -2440💚 -2680💚 -2680--💚 -2440
WiFi/examples/FTM/FTM_Initiator💚 -3880💚 -3880💚 -4340💚 -4260--💚 -4280
WiFi/examples/FTM/FTM_Responder💚 -4120💚 -4040💚 -4380💚 -4300--💚 -4240
WiFi/examples/SimpleWiFiServer💚 -4240💚 -4320💚 -4340💚 -4260--💚 -4320
WiFi/examples/WPS💚 -4240💚 -3880💚 -4340💚 -4260--💚 -4240
WiFi/examples/WiFiAccessPoint💚 -4280💚 -4120💚 -4340💚 -4260--💚 -4360
WiFi/examples/WiFiBlueToothSwitch💚 -4240--💚 -4360💚 -4380--💚 -4200
WiFi/examples/WiFiClient💚 -4240💚 -4080💚 -4360💚 -4360--💚 -4120
WiFi/examples/WiFiClientBasic💚 -2400💚 -2280💚 -2700💚 -2700--💚 -2120
WiFi/examples/WiFiClientConnect💚 -4200💚 -4080💚 -4360💚 -4260--💚 -4280
WiFi/examples/WiFiClientEnterprise💚 -4160💚 -4000💚 -4360💚 -4280--💚 -4280
WiFi/examples/WiFiClientEvents💚 -4240💚 -4040💚 -4340💚 -4260--💚 -4240
WiFi/examples/WiFiClientStaticIP💚 -4280💚 -4080💚 -4360💚 -4360--💚 -4120
WiFi/examples/WiFiExtender💚 -4080💚 -4000💚 -4340💚 -4260--💚 -4080
WiFi/examples/WiFiIPv6💚 -4080💚 -4080💚 -4360💚 -4280--💚 -4360
WiFi/examples/WiFiMulti💚 -2480💚 -2280💚 -2680💚 -2680--💚 -2560
WiFi/examples/WiFiMultiAdvanced💚 -2440💚 -2360💚 -2680💚 -2680--💚 -2520
WiFi/examples/WiFiScan💚 -4080💚 -4200💚 -4360💚 -4340--💚 -4280
WiFi/examples/WiFiScanAsync💚 -4080💚 -4240💚 -4340💚 -4360--💚 -4240
WiFi/examples/WiFiScanDualAntenna💚 -3880💚 -4080💚 -4340💚 -4280--💚 -4360
WiFi/examples/WiFiScanTime💚 -4120💚 -4200💚 -4360💚 -4360--💚 -4240
WiFi/examples/WiFiSmartConfig💚 -4200💚 -4080💚 -4380💚 -4300--💚 -4440
WiFi/examples/WiFiTelnetToSerial💚 -2520💚 -2320💚 -2680💚 -2680--💚 -2480
WiFi/examples/WiFiUDPClient💚 -4160💚 -3920💚 -4380💚 -4300--💚 -3960
WiFiProv/examples/WiFiProv💚 -4200💚 -4120💚 -4340💚 -4380--💚 -4360
Wire/examples/WireMaster💚 -4040💚 -4000💚 -4340💚 -4200💚 -4280💚 -4120
Wire/examples/WireScan💚 -4040💚 -4000💚 -4340💚 -4200💚 -4280💚 -4120
Wire/examples/WireSlave💚 -4040💚 -4000💚 -4360💚 -4220💚 -4300💚 -4120
OpenThread/examples/COAP/coap_lamp------💚 -4380💚 -4320--
OpenThread/examples/COAP/coap_switch------💚 -4320💚 -4320--
OpenThread/examples/SimpleCLI------💚 -4280💚 -4220--
OpenThread/examples/SimpleNode------💚 -4320💚 -4340--
OpenThread/examples/SimpleThreadNetwork/ExtendedRouterNode------💚 -4320💚 -4360--
OpenThread/examples/SimpleThreadNetwork/LeaderNode------💚 -4300💚 -4220--
OpenThread/examples/SimpleThreadNetwork/RouterNode------💚 -4300💚 -4220--
OpenThread/examples/ThreadScan------💚 -4320💚 -4240--
OpenThread/examples/onReceive------💚 -4220💚 -4220--
Zigbee/examples/Zigbee_Color_Dimmable_Light------0000--
Zigbee/examples/Zigbee_Color_Dimmer_Switch------💚 -4340💚 -4340--
Zigbee/examples/Zigbee_On_Off_Light------0000--
Zigbee/examples/Zigbee_On_Off_Switch------💚 -4260💚 -4320--
Zigbee/examples/Zigbee_Scan_Networks------💚 -7660💚 -7740--
Zigbee/examples/Zigbee_Temperature_Sensor------💚 -4340💚 -4340--
Zigbee/examples/Zigbee_Thermostat------💚 -4320💚 -4320--
BluetoothSerial/examples/DiscoverConnect----------💚 -2480
BluetoothSerial/examples/GetLocalMAC----------💚 -2440
BluetoothSerial/examples/SerialToSerialBT----------💚 -2520
BluetoothSerial/examples/SerialToSerialBTM----------💚 -2600
BluetoothSerial/examples/SerialToSerialBT_Legacy----------00
BluetoothSerial/examples/SerialToSerialBT_SSP----------💚 -2640
BluetoothSerial/examples/bt_classic_device_discovery----------💚 -2600
BluetoothSerial/examples/bt_remove_paired_devices----------💚 -2200
ESP32/examples/DeepSleep/SmoothBlink_ULP_Code----------💚 -6480
ESP32/examples/Touch/TouchButton----------💚 -6480
Ethernet/examples/ETH_LAN8720----------💚 -4160
Ethernet/examples/ETH_TLK110----------💚 -4160

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