forked from arduino-libraries/ArduinoBLE
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync to ArduinoBLE master #74
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
While the old way of preparing advertising data is still supported, an alternative enhanced method to build advertising packets is now available. It consists in defining and configuring an object of type 'BLEAdvertisingData' to build the desired packet. When it has been configured, by setting the appropriate parameters, it can be used to populate the advertising data packet or the scan response data packet. Following this way, the user can decide in which packet each parameter should be put. Also, it is now possible to configure an advertising packet (advertising or scan response) by passing a raw data packet. If an advertising packet has a raw data parameter set, all its other parameters will be ignored. Also, advertising parameters such as manufacturer data, service data or raw data should have a GLOBAL scope, because they are passed as pointers and are not copied internally.
Initial - encrypted read
With write encryptionn requirement
Write encryption & visible LTK / IRK
Fixed packet fragmentation
Android bugfix
Fix timing issue during pairing, add pairing control/status methods
Secure random & reject unknown LTK
Pairing code & IOCaps set via implementation of callbacks
Add Nano RP2040 Connect to "smoke test" examples compilation CI workflow
align with ArduinoBLE master 9e523b5 Steps: git checkout master git merge -s ours main git checkout main git merge master
To support to STBTLE-RF, STBTLE-1S, BLUENRG-M2SP, BLUENRG-LP and BLUENRG-M0. Signed-off-by: Carlo Parata <[email protected]> Co-authored-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
cparata
approved these changes
Mar 28, 2025
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
to support the shared memory transport layer for the STM32WB built-in chip. It also Allows HCI SPI Transport with STM32WBxx Signed-off-by: Francois Ramu <[email protected]> Co-Authored-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Alexandre Bourdiol <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Carlo Parata <[email protected]>
On STM32WB, Cube FW version 1.14.1, messages ACI_GATT_INIT and ACI_GAP_INIT are not available on HCI only BLE firmware (stm32wb5x_BLE_HCILayer_fw.bin) This imply to move Random Address to host instead of relying on controller Signed-off-by: Alexandre Bourdiol <[email protected]>
Signed-off-by: Lorenzo Bini <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Frederic Pillon <[email protected]>
Signed-off-by: Carlo Parata <[email protected]> Co-Auhthored-by: Frederic Pillon <[email protected]>
Signed-off-by: Arkadiusz Ambroziak <[email protected]> Co-Auhthored-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
See LE_META_EVENT supported. Note: Value should be 0x3B3 but set to 0x1B3 to explicitly ignore ENHANCED_CONN_COMPLETE event Signed-off-by: Frederic Pillon <[email protected]>
… processing during ATTClass::discoverDescriptors causes crashing I've highlighted this issue on 9th July ... this is an issue of causing __CRASHES__ if using ArduinoBLE to connect as central and the response to ATT_OP_FIND_INFO_RESP includes 128-bit UUIDs.
Signed-off-by: Frederic Pillon <[email protected]>
Now correctly acceses the existing variables and uses an unsigned int for size comparison fpistm: changed the uint type to uint32_t to avoid build issue with below target: - arduino:megaavr:uno2018 - arduino:renesas_uno:unor4wif
Signed-off-by: Frederic Pillon <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR syncs the STM32duinoBLE library to ArduinoBLE master:
arduino-libraries@9e523b5
To ease future update, this update does not simply do a merge.
First the STM32duinoBLE main was merged to be the same than ArduinoBLE master:
Then all changes made in STM32duinoBLE were grouped in several commits per topics.
Some fixes/improvements has been added.
Including PR not merged yet from ArduinoBLE:
Finally, the way a HCITransport was selected has not been preserved to be aligned with ArduinoBLE, moreover it ease support of new board and avoid to modify all sketches to add the new support.
See below:
Tests
Peripheral:
SPBTLE_RF
SPBTLE_RF
STM32WB
STM32WB
SPBTLE_1S
BLUENRG_LP
BLUENRG_M0
STM32WB
BLUENRG_M2SP
SPBTLE_RF
BLUENRG_M0
1: using A2 as AO used for IRQ pin.
Central
Note
SensorTagButton not tested as no TI sensor tag
SPBTLE_RF
SPBTLE_RF
STM32WB
STM32WB
SPBTLE_1S
BLUENRG_M0
STM32WB
BLUENRG_M2SP
SPBTLE_RF
BLUENRG_M0