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: apache/mynewt-nimble
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: espressif/esp-nimble
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: nimble-1.6.0-idf
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.

Commits on Feb 14, 2024

  1. esp_nimble: Make changes to nimble code to make it compatible with ID…

    …F and VHCI
    
    1) Modify a few porting functions for FreeRTOS.
    2) Add freertos tasks for BLE host and mesh.
    3) Keep a byte for packet type in transport buffers to make it compatible with ESP32 VHCI interface.
    4) Modify host mutex lock functionality.
    sagb2015 authored and ESPAbhinav committed Feb 14, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    23e580f View commit details
  2. esp-nimble: Fix debugging assertion on mutex for freertos.

    When multiple threads are active, current debugging code requires owner
    of the mutex to be known. Mainstream code does not port these debugs for
    freertos. With this change the debugs are functioning as intended.
    sagb2015 authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    13eb2ff View commit details
  3. Copy the full SHA
    38470b3 View commit details
  4. esp-nimble: Conditionally include nimble config for ESP platform

    This change segregates nimble config for ESP platform from upstream
    config. This should ease process of maintaining esp-nimble repository.
    sagb2015 authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    68e5f51 View commit details
  5. esp-nimble: Add support for logging

    This change adds support for nimble logging using IDF APIs. By default,
    nimble logging level is set to follow global logging configuration.
    sagb2015 authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    2972205 View commit details
  6. NimBLE Bonding: Add NVS support

    - Added NVS support to persist bonding across device reboots.
    - Make minimal changes to `ble_store_config`, which makes it co-exist with `ble_store_ram`.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    6f39612 View commit details
  7. Copy the full SHA
    bd54d21 View commit details
  8. Copy the full SHA
    56f4975 View commit details
  9. NimBLE: Fix warnings for os/queue.h

    When the application includes headers which internally include
    "rom/queue.h" mutliple redefinition warnings are seen for many #defines
    
    Solution: Remove the common #defines in os/queue.h and instead include
    rom/queue.h in it.
    dhrishi authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    6304435 View commit details
  10. NimBLE: Fix compilation warnings and errors

    1. Remove networking macros from endian.h. They are not used in NimBLE (only used in socket transport, which our port does not use)
    
    2. nvs_handle => nvs_handle_t
    
    3. rom/queue.h => sys/queue.h
    dhrishi authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    8956238 View commit details
  11. Copy the full SHA
    c56a983 View commit details
  12. fix -Wstrict-prototypes issues

    antmak authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    aed041f View commit details
  13. NimBLE: Add menuconfig option to select NimBLE stack size

     Add option to select NimBLE host stack size
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    38b5724 View commit details
  14. NimBLE: Add mbedTLS support as an option to Tinycrypt

    - Adds option to use mbedTLS instead of tinycrypt for crypto algorithms,
      includes changes related to NimBLE `ble_mesh` as well.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    e326f38 View commit details
  15. NimBLE: Fix misc warnings and return code in ble_hs_tx_data

    - Previously `ble_hs_tx_data` returned 0 irrespective of error code returned by
      `ble_hci_trans_hs_acl_tx`.
    - Minor changes in `porting/nimble/` and `ble_gattc.c` to remove discard const
      qualifier warnings, fixes #4028.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    fd31133 View commit details
  16. Save the correct key on peer_secs

    This fixes a bond issue
    copercini authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    e769fcc View commit details
  17. NimBLE: Remove unused stuff from log.h

    dhrishi authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    ca983d2 View commit details
  18. Copy the full SHA
    8f8927d View commit details
  19. ESP-NimBLE: Allocate os_msys_init_1_data and os_msys_init_2_data dyna…

    …mically
    
    Allocating buffers dynamically and freeing when the job is done saves static memory
    dhrishi authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    ea41bd0 View commit details
  20. Copy the full SHA
    3b44ea0 View commit details
  21. Copy the full SHA
    5c79268 View commit details
  22. Copy the full SHA
    035365f View commit details
  23. Copy the full SHA
    e5a5f55 View commit details
  24. porting: use macros for log level filtering

    This reduces the size of the compiled binary by 7856 bytes.
    xentec authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    551cc01 View commit details
  25. Copy the full SHA
    6ed6b60 View commit details
  26. NimBLE : Change peer_addr type to PUBLIC in case of Host based privacy

    - When Identity of peer is resolved and peer address is RPA then NimBLE stack
      changes the peer_addr type to PUBLIC_ID(0x02); in Host based privacy it
      should not be done as it can result in mismatch while comparing stored
      addresses especially in case of CCCD storage.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    bc4b41a View commit details
  27. Copy the full SHA
    bd92630 View commit details
  28. Copy the full SHA
    4b421f3 View commit details
  29. Copy the full SHA
    44f86a5 View commit details
  30. add header guards for ble_hs_pvcy

    marcogmaia authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    9fd99b3 View commit details
  31. NimBLE host: Add Non-Resolvable Private address support

    - Add NRPA support to existing Host based Privacy framework
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    7f59d1f View commit details
  32. Copy the full SHA
    31b5f30 View commit details
  33. nimble/porting: Explicitly NULL terminate potential non NULL terminat…

    …ed string buffer
    
    os_mempool.c: Using strncpy, buffer will not be NULL terminated if size of
    source string is same as buffer size. Explicitly added NULL character at the
    end.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    03df51a View commit details
  34. Copy the full SHA
    f16e512 View commit details
  35. NimBLE: Update modlog & logcfg on ESP platform to avoid logging error…

    …s/warnings
    
    * ESP specific patch for nimble 1.3.0 release
    
    * NimBLE: Support configurable logging in NimBLE host.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    6275466 View commit details
  36. Copy the full SHA
    45ae09a View commit details
  37. NimBLE: Fix compilation errors when HOST_BASED_PRIVACY is disabled.

    - When Host based privacy config option is disabled then automatically
      controller based privacy is enabled. Remove compilation errors for this case.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    3005085 View commit details
  38. NimBLE: Make LE data length set API public

    - Helps to set LE data length in controller from host.
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    e1e5efe View commit details
  39. Copy the full SHA
    c142649 View commit details
  40. NimBLE: Free the AES context after use by calling mbetls_aes_free

    * ESP32C3 allocates DMA channel when using HW AES accelerator.
    * Deallocate the DMA channel properly i.e. call `mbedtls_aes_free` after using HW
      AES encryption.
    
    Fixes BT-1435
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    246ec01 View commit details
  41. NimBLE NVS: Fix bug in deletion of peer_dev_record

    - Fix comparison metric while deleting peer_dev_record. Previous to this,
      random address change after reboot used to result in NVS database mismatch
      and hence sometimes caused wrong NVS entry deletion.
    - Closes ESPCS-540
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    1db1eb1 View commit details
  42. NimBLE: Add custom log level support

    Closes espressif/esp-idf#3585
    
    Co-authored by: Switi Mhaiske <switi.mhaiske@espressif.com>
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    df470d3 View commit details
  43. NimBLE: Add workaround in host for BLE Connection establishment error.

    * Reattempt connection on link establishment error
    prasad-alatkar authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    5de85f6 View commit details
  44. Copy the full SHA
    069b95a View commit details
  45. Nimble: Fix crash when attempting to do deinit

    If esp timer is created, but not started, and if we call Nimble deinit , then during deinit, the existing code checks for the
    timer state and returns with a status other than ESP_OK. However, existing ESP_ERROR_CHECK macro treats this as failure and causes crash.
    
    Modified the code to use ESP_ERROR_CHECK_WITHOUT_ABORT instead.
    rahult-github authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    1348149 View commit details
  46. Nimble: Fix logging level mismatch

    Added fix for two issues:
    1. Fix C++ compilation issue due to automatic conversion between int and
    esp_error_level_t
    2. Use correct level macros to use system wide logging scheme
    rahult-github authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    deb0976 View commit details
  47. Nimble: Check stack status before executing stack command

    Added change of checking stack status in the APIs exposed to user
    rahult-github authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    fa10bfe View commit details
  48. Copy the full SHA
    6c499c7 View commit details
  49. NimBLE: Modified timer not started / running warning print

    Existing debug prints can misled user that a crash has happened. Updated the warning print of timer validity.
    rahult-github authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    ca48bb2 View commit details
  50. Merge branch 'wifi_prov_mgr_crash' into 'nimble-1.3.0-idf'

    NimBLE: Fixed wifi_prov_mgr crash after provisioning
    
    See merge request espressif/esp-nimble!119
    IshaESP authored and ESPAbhinav committed Feb 14, 2024
    Copy the full SHA
    474d270 View commit details
Showing 308 changed files with 30,111 additions and 4,454 deletions.
50 changes: 0 additions & 50 deletions .github/project.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/project_ports.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10028_blehci/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10028_blehci/target.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .github/targets/nordic_pca10028_boot/README

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10028_boot/pkg.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10028_boot/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10028_boot/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10028_bt5_blehci/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10028_bt5_blehci/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10028_bt5_blehci/target.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056-blehci-usb/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_advertiser/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_advertiser/target.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blecent/target.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blecsc/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blehci/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blehci/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blehci_all_enabled/pkg.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/targets/nordic_pca10056_blehci_all_enabled/syscfg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blehci_all_enabled/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blehci_no_privacy/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_blehci_no_privacy/syscfg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blehci_no_privacy/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blehr/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blehr/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_cdb/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_cdb/syscfg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_cdb/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_ext_adv/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_blemesh_ext_adv/syscfg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_ext_adv/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_light/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_light/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_blemesh_models_example_1/pkg.yml

This file was deleted.

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_models_example_2/pkg.yml

This file was deleted.

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_shell/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_shell/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blemesh_storage/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_blemesh_storage/syscfg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blemesh_storage/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_bleprph/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_bleprph/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_bleprph_oic/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_bleprph_oic/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_blesplit/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_blesplit/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_bleuart/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_bleuart/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_btshell/pkg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_btshell/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_2M/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_btshell_2M/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_2M/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_2M_coded/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_2M_coded/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_2M_coded/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_btshell_all/pkg.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_all/syscfg.h

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_btshell_all/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_btshell_all_v52/pkg.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_btshell_all_v52/syscfg.h

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_btshell_all_v52/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_coded/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_btshell_coded/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_coded/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_ext_adv/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_ext_adv/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_periodic_adv/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_periodic_adv/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_periodic_adv/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_sm_legacy/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_legacy/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_legacy/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_sm_none/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_none/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_none/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_sm_sc/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_sc/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_sc/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_btshell_sm_sc_legacy/pkg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_sc_legacy/syscfg.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/targets/nordic_pca10056_btshell_sm_sc_legacy/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_btshell_xtal_settle_0/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_btshell_xtal_settle_0/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_btshell_xtal_settle_0/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_bttester/pkg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_bttester/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_dtm/pkg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_dtm/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10056_ext_advertiser/pkg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10056_ext_advertiser/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets/nordic_pca10056_scanner/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10056_scanner/target.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/targets/nordic_pca10095_blehci/pkg.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/targets/nordic_pca10095_blehci/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10095_blehci/target.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets/nordic_pca10095_btshell/pkg.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/targets/nordic_pca10095_btshell/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets/nordic_pca10095_btshell/target.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/targets_native/native_btshell/pkg.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/targets_native/native_btshell/syscfg.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/targets_native/native_btshell/target.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/build_ports.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/build_targets.yml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/compliance_check.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/newt_test_all.yml

This file was deleted.

71 changes: 0 additions & 71 deletions .github/workflows/ports_syscfg_check.yml

This file was deleted.

3 changes: 2 additions & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Apache Mynewt NimBLE
Copyright 2015-2023 The Apache Software Foundation
Copyright 2015-2022 The Apache Software Foundation
Modifications Copyright 2017-2022 Espressif Systems (Shanghai) CO., LTD.

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
4 changes: 4 additions & 0 deletions apps/blestress/src/rx_stress.c
Original file line number Diff line number Diff line change
@@ -1087,6 +1087,10 @@ rx_stress_13_gap_event(struct ble_gap_event *event, void *arg)
return 0;
}

om = ble_hs_mbuf_from_flat(test_6_pattern, 10);
rc = ble_gatts_notify_custom(rx_stress_ctx->conn_handle,
hrs_hrm_handle, om);
assert(rc == 0);
return 0;
}

2 changes: 1 addition & 1 deletion apps/bttester/src/btp_gap.c
Original file line number Diff line number Diff line change
@@ -909,7 +909,7 @@ auth_passkey_display(uint16_t conn_handle, unsigned int passkey)
return;
}

rc = ble_hs_hci_rand(&pk.passkey, sizeof(pk.passkey));
rc = ble_hs_hci_util_rand(&pk.passkey, sizeof(pk.passkey));
assert(rc == 0);
/* Max value is 999999 */
pk.passkey %= 1000000;
2 changes: 1 addition & 1 deletion apps/bttester/src/btp_gatt.c
Original file line number Diff line number Diff line change
@@ -665,7 +665,7 @@ discover_destroy(void)
}

static void
read_destroy()
read_destroy(void)
{
gatt_buf_clear();
}
Loading