Skip to content
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 155 commits into from
Mar 28, 2025
Merged

Sync to ArduinoBLE master #74

merged 155 commits into from
Mar 28, 2025

Conversation

fpistm
Copy link
Member

@fpistm fpistm commented Mar 21, 2025

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:

  • Steps:
    • git checkout master
    • git merge -s ours main
    • git checkout main
    • git merge 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:

The user can include the file ble_spi_conf.h to define which shield and configuration to use from the following list:

  • X-NUCLEO-IDB05A2
    • IDB05A2_SPI_CLOCK_D3: SPI clock on D3
    • IDB05A2_SPI_CLOCK_D13 SPI clock on D13
  • X-NUCLEO-IDB05A1
    • IDB05A1_SPI_CLOCK_D3: SPI clock on D3
    • IDB05A1_SPI_CLOCK_D13: SPI clock on D13
  • X-NUCLEO-BNRG2A1
    • BNRG2A1_CLOCK_D3: SPI clock on D3
    • BNRG2A1_CLOCK_D13: SPI clock on D13
  • CUSTOM_BLE_SPI: define a custom configuration, it requires below definition:
    • BLE_SPI_MISO: SPI MISO pin
    • BLE_SPI_MOSI: SPI MOSI pin
    • BLE_SPI_CLK: SPI CLocK pin
    • BLE_SPI_CS: SPI Chip Select pin
    • BLE_SPI_IRQ: SPI IRQ pin
    • BLE_SPI_FREQ: SPI bus frequency
    • BLE_SPI_MODE: can be one of the below SPIMode:
      • SPI_MODE0
      • SPI_MODE1
      • SPI_MODE2
      • SPI_MODE0
    • BLE_CHIP_TYPE: can be one of the below BLEChip_t:
      • SPBTLE_RF
      • SPBTLE_1S
      • BLUENRG_M2SP
      • BLUENRG_M0
      • BLUENRG_LP
    • BLE_RESET: BLE reset pin

Examples

To use the X-NUCLEO-IDB05A2 with SPI clock on D3, define in ble_spi_conf.h:

#define IDB05A2_SPI_CLOCK_D3

This is equivalent to the below configuration using the CUSTOM_BLE_SPI:

#define CUSTOM_BLE_SPI
#define BLE_SPI_MISO    D12
#define BLE_SPI_MOSI    D11
#define BLE_SPI_CLK     D3
#define BLE_SPI_CS      A1
#define BLE_SPI_IRQ     A0
#define BLE_SPI_FREQ    8000000
#define BLE_SPI_MODE    SPI_MODE0
#define BLE_CHIP_TYPE   BLUENRG_M0
#define BLE_RESET       D7

Using a SPI BLE module on STM32WB

If required, user can use a compatible BLE module over SPI.

In the ble_spi_conf.h, define USE_BLE_SPI.

Tests

Peripheral:

Hardware BLE EnhancedAdvertising RawDatadAdvertising BatteryMonitor ButtonLED CallbackLED LED
B-L475E-IOT01A SPBTLE_RF
B-L4S5I-IOT01A SPBTLE_RF
NUCLEO-WB15CC STM32WB
P-NUCLEO-WB55RG STM32WB
STEVAL-MKSBOX1V1 SPBTLE_1S
STEVAL-MKBOXPRO BLUENRG_LP
STM32L562E-DK BLUENRG_M0
STM32WB5MM-DK STM32WB
X-NUCLEO-BNRG2A1] on [NUCLEO-L476RG BLUENRG_M2SP 1
X-NUCLEO-IDB05A1 on NUCLEO-L476RG SPBTLE_RF 1
X-NUCLEO-IDB05A2 on NUCLEO-L476RG BLUENRG_M0 1

1: using A2 as AO used for IRQ pin.

Central

Note

SensorTagButton not tested as no TI sensor tag

Hardware BLE LedControl PeripheralExplorer Scan ScanCallback
B-L475E-IOT01A SPBTLE_RF
B-L4S5I-IOT01A SPBTLE_RF
NUCLEO-WB15CC STM32WB
P-NUCLEO-WB55RG STM32WB
STEVAL-MKSBOX1V1 SPBTLE_1S
STM32L562E-DK BLUENRG_M0
STM32WB5MM-DK STM32WB
X-NUCLEO-BNRG2A1] on [NUCLEO-L476RG] BLUENRG_M2SP
X-NUCLEO-IDB05A1 on NUCLEO-L476RG SPBTLE_RF
X-NUCLEO-IDB05A2 on NUCLEO-L476RG BLUENRG_M0

polldo and others added 30 commits November 2, 2020 15:30
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.
With write encryptionn requirement
Write encryption & visible LTK / IRK
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
fpistm and others added 3 commits March 27, 2025 14:42
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]>
fpistm and others added 22 commits March 28, 2025 11:30
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]>
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: 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
@fpistm fpistm merged commit 8fdf958 into main Mar 28, 2025
12 checks passed
@fpistm fpistm deleted the rebase_1.3.7 branch March 28, 2025 10:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request fix 🩹 Bug fix
Projects
Development

Successfully merging this pull request may close these issues.