Thanks to visit codestin.com
Credit goes to github.com

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: h2zero/esp-nimble-cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: syscode1/esp-nimble-cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Sep 18, 2025

  1. NimBLEClient::handleGapEvent() {

      case BLE_GAP_EVENT_PASSKEY_ACTION:
        } else if (event->passkey.params.action == BLE_SM_IOACT_INPUT || event->passkey.params.action == BLE_SM_IOACT_DISP) {
         ...
        }
    }
    
    Add BLE_SM_IOACT_DISP action. This action is necessary when using NimBLEDevice::setSecurityIOCap(BLE_HS_IO_DISPLAY_ONLY).
    syscode1 committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    6077421 View commit details
    Browse the repository at this point in the history
  2. NimBLERemoteCharacteristic::getProperties(),

    NimBLERemoteCharacteristic::retrieveDescriptors2() added.
    syscode1 committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    9ac9a72 View commit details
    Browse the repository at this point in the history
  3. NimBLEServerCallbacks::onPassKeyRequest(),

    NimBLEServer::handleGapEvent() {
                } else if(event->passkey.params.action == BLE_SM_IOACT_INPUT) {
                    NIMBLE_LOGI(LOG_TAG, "BLE_SM_IOACT_INPUT!!!!");
                    pServer->m_pServerCallbacks->onPassKeyRequest(peerInfo);
                }
    }
    added.
    This function/action is necessary when using NimBLEDevice::setSecurityIOCap(BLE_HS_IO_KEYBOARD_ONLY).
    syscode1 committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    bf35fb8 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2025

  1. add NimBLERemoteCharacteristic::retrieveDescriptors2(), NimBLERemoteC…

    …haracteristic::getProperties() to NimBLERemoteCharacteristic.h
    syscode1 committed Sep 19, 2025
    Configuration menu
    Copy the full SHA
    4b9a77e View commit details
    Browse the repository at this point in the history
Loading