Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: espressif/arduino-esp32
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.16
Choose a base ref
...
head repository: espressif/arduino-esp32
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release/v2.x
Choose a head ref
  • 18 commits
  • 891 files changed
  • 9 contributors

Commits on May 22, 2024

  1. Configuration menu
    Copy the full SHA
    b0a7973 View commit details
    Browse the repository at this point in the history
  2. Update version to 2.0.17

    me-no-dev committed May 22, 2024
    Configuration menu
    Copy the full SHA
    f364155 View commit details
    Browse the repository at this point in the history
  3. fix: remove "programmer.default" from Nano ESP32 (#9665)

    Setting programmer.default has unfortunately multiple effects:
    - sets the tick by default in the Tool menu in the IDE (which was the
      expected behavior),
    - forces the CLI to use the specified programmer every time an upload is
      attempted (which is confusing users).
    
    For this reason, it is better to remove the "programmer.default" setting
    from the board definition and let the user choose the programmer in the
    IDE menus, as it was before.
    pillo79 authored May 22, 2024
    Configuration menu
    Copy the full SHA
    5e19e08 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. fix(release): Update merge_package.py

    Use packaging.version instead of the deprecated distutils.version
    me-no-dev committed May 27, 2024
    Configuration menu
    Copy the full SHA
    dcc1105 View commit details
    Browse the repository at this point in the history
  2. fix(release): install missing 'packaging' package

    Necessary to combine the json files
    me-no-dev committed May 27, 2024
    Configuration menu
    Copy the full SHA
    557792c View commit details
    Browse the repository at this point in the history
  3. Update .github/workflows/release.yml

    Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
    me-no-dev and lucasssvaz committed May 27, 2024
    Configuration menu
    Copy the full SHA
    dc596f1 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. Configuration menu
    Copy the full SHA
    12d4226 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. Configuration menu
    Copy the full SHA
    a6df1f5 View commit details
    Browse the repository at this point in the history
  2. ci(push): Fix sizes upload if there is no changes (2.x) (#9839)

    * ci(push): Fix sizes upload if there is no changes
    
    * ci(bot): Fix GitHub actions bot commit info
    lucasssvaz authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    4a6ab62 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. IDF release/v4.4 (#9672)

    * Rename esp_ble_gap_ext_adv_reprot_t
    
    * IDF release/v4.4 d0274c0efb
    
    * IDF release/v4.4 79e71e008c
    
    * IDF release/v4.4 1424b2b1e6
    
    * IDF release/v4.4 799e503c47
    
    * IDF release/v4.4 c0e0af03d1
    
    * IDF release/v4.4 1558b05d1c
    
    * IDF release/v4.4 8498af6bd4
    
    * IDF release/v4.4 a9d0f22193
    me-no-dev authored Jun 28, 2024
    Configuration menu
    Copy the full SHA
    b25c1b2 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. [release/2.x] fix(uart): Set back Pin signal polarity (#9952)

    * fix(uart): Set back Pin signal polarity
    
    Fixes a problem related to inverting signal polarity back to normal after a previous inversion.
    
    This shall set the correct polarity in Serial.begin().
    
    * fix(uart): Remove commentary
    
    Removes a commentary with a question about the inversing polarity function.
    
    * fix(uart): Update comment
    
    Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
    Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
    3 people authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    33c9552 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. 3 Configuration menu
    Copy the full SHA
    6bd3274 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    54c4b0c View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Configuration menu
    Copy the full SHA
    bcb92a1 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. digitalPinToInterrupt: fix double pin remapping (#10372)

    The digitalPinToInterrupt() macro currently remaps the pin number to the
    GPIO number. This is not necessary, as most users will then use the
    returned value in attachInterrupt() or other similar API functions,
    which already perform the same remapping.
    
    The first half of the macro (the condition) does indeed require the
    remapping to ensure the check operates on GPIO numbers.
    
    Fixes #10367.
    pillo79 authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    f23914e View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. fix(HardwareSerial): fix pin remapping in begin() (#10380)

    The pin remapping functions have to be called as early as possible in
    the begin() function, to immediately convert the input parameters to the
    GPIO numbers used everywhere in the core.
    
    This issue has always been dormant since the introduction of pin
    remapping in 9b4622d, but was exposed by the recent UART pin detach
    support, which actually disabled the original Serial0 pins.
    
    Move the pin remapping function calls earlier in the begin() function to
    fix this issue.
    pillo79 authored Oct 1, 2024
    Configuration menu
    Copy the full SHA
    8ff2da7 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. fix(uart) 2.0.x Core: fixes serialEventRun() to avoid calling availab…

    …le() if serialEvent() is not declared (#10429)
    
    * fix(uart): applies #10428 to 2.0.x core
    
    * fix(uart): there is no usb serial event in 2.0.x
    SuGlider authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    4301639 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2024

  1. Configuration menu
    Copy the full SHA
    1f03867 View commit details
    Browse the repository at this point in the history
Loading