Skip to content

Commit

Permalink
Merge branch 'feature/write_blob' into 'master'
Browse files Browse the repository at this point in the history
NimBLE: Added support for writing data more than BLE_ATT_ATTR_MAX_LEN

See merge request espressif/esp-idf!22808
  • Loading branch information
rahult-github committed Mar 21, 2023
2 parents 720af16 + e985cc5 commit e32083c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions components/bt/host/nimble/Kconfig.in
Expand Up @@ -655,3 +655,9 @@ config BT_NIMBLE_LEGACY_VHCI_ENABLE
default n
help
This option is used to distinguish whether a previous version of VHCI is being used

config BT_NIMBLE_BLE_GATT_BLOB_TRANSFER
bool "Blob transfer"
help
This option is used when data to be sent is more than 512 bytes. For peripheral role,
BT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.
4 changes: 4 additions & 0 deletions components/bt/host/nimble/port/include/esp_nimble_cfg.h
Expand Up @@ -615,6 +615,10 @@
#define MYNEWT_VAL_BLE_GATT_WRITE_RELIABLE (MYNEWT_VAL_BLE_ROLE_CENTRAL)
#endif

#ifndef MYNEWT_VAL_BLE_GATT_BLOB_TRANSFER
#define MYNEWT_VAL_BLE_GATT_BLOB_TRANSFER (CONFIG_BT_NIMBLE_BLE_GATT_BLOB_TRANSFER)
#endif

#ifndef MYNEWT_VAL_BLE_HOST
#define MYNEWT_VAL_BLE_HOST (1)
#endif
Expand Down

0 comments on commit e32083c

Please sign in to comment.