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: arduino-libraries/ArduinoBLE
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.3.1
Choose a base ref
...
head repository: arduino-libraries/ArduinoBLE
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.3.2
Choose a head ref
  • 9 commits
  • 18 files changed
  • 5 contributors

Commits on Jun 9, 2022

  1. Fix Long Term Key Request Negative Reply Command

    Kindly See the Docs, https://www.bluetooth.com/specifications/specs/core-specification-4-2/
    In Pg. No: 1316/2772, you Can See "7.8.26 LE Long Term Key Request Negative Reply Command".
    Kindly See the OFC Code, it is 0x001B.
    laviator98 authored Jun 9, 2022
    Configuration menu
    Copy the full SHA
    9bf21b7 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2022

  1. Configuration menu
    Copy the full SHA
    fae1e36 View commit details
    Browse the repository at this point in the history
  2. Support esp32, esp32-C3, esp32-S3 (#252)

    * add esp32 support
    
    * Update HCIVirtualTransport.cpp
    
    * Update HCIVirtualTransport.cpp
    
    add ESP32-C3 support
    
    * Revert "Update HCIVirtualTransport.cpp"
    
    This reverts commit 9af9bea.
    
    * Update HCIVirtualTransport.cpp
    
    * Update library.properties
    
    * fix crash on restart
    
    * Update ATT.cpp
    
    spelling
    
    * support more espressif chips
    
    * Create compile-for-esp.yaml
    
    don't know what I'm doing
    
    * skip failing examples
    
    * Update compile-for-esp.yaml
    
    * Update compile-for-esp.yaml
    
    * Update compile-for-esp.yaml
    
    * Update compile-for-esp.yaml
    
    * Update compile-for-esp.yaml
    
    * Update compile-examples.yml
    
    * Delete compile-for-esp.yaml
    dominsch authored Aug 23, 2022
    Configuration menu
    Copy the full SHA
    991f076 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

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

Commits on Aug 31, 2022

  1. Fix memory leak on end() -> begin() -> end()

    Only tested in Peripheral mode, with services and characteristics allocated:
    * as global objects (arduino way)
    * in function stack
    * in heap
    
    On mbed-enabled platforms, the memory check can be activated via
    
    ```
    
      ....
      mbed_stats_heap_t heap_stats;
      mbed_stats_heap_get(&heap_stats);
      Serial.print("Heap size: ");
      Serial.print(heap_stats.current_size);
      Serial.print(" / ");
      Serial.println(heap_stats.reserved_size);
      ....
    ```
    facchinm committed Aug 31, 2022
    Configuration menu
    Copy the full SHA
    6e97bf2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #259 from grobx/arduino/master

    Fix hard fault when str is NULL
    facchinm authored Aug 31, 2022
    Configuration menu
    Copy the full SHA
    2a1cf72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5fc368 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2022

  1. Merge pull request #260 from facchinm/fix_end_hang

    Fix memory leak on end() -> begin() -> end()
    facchinm authored Sep 5, 2022
    Configuration menu
    Copy the full SHA
    5954d96 View commit details
    Browse the repository at this point in the history
  2. Release 1.3.2

    facchinm authored Sep 5, 2022
    Configuration menu
    Copy the full SHA
    dd56eb7 View commit details
    Browse the repository at this point in the history
Loading