boards/shields/x_nucleo_wb05kn1/doc/index.rst
.. _x-nucleo-wb05kn1:
X-NUCLEO-WB05KN1: BLE expansion board #####################################
Overview
The X-NUCLEO-WB05KN1 is a Bluetooth Low Energy evaluation board which allows the expansion of the STM32 Nucleo boards. The RF module is FCC (FCC ID: YCP-MB203202) and IC certified (IC: 8976A-MB203202).
The X-NUCLEO-WB05KN1 is compatible out of the box with the Arduino UNO R3 connector.
The board interfaces with the host microcontroller via UART (default) or SPI peripheral.
However, the out-of-the-box firmware is not compatible with Zephyr; therefore, a controller-only
image should be flashed on the board using CN8 pin headers.
For more information about how to change the firmware, please refer to UM3406_ section 3.3.
.. note::
The X-CUBE-WB05N_ package provided by ST contains firmware compatible with Zephyr
in the Utilities/BLE_Transparent_Mode_STM32WB05_controller_only directory
(SPI or UART subdirectories depending on which interface you want to use).
.. image:: img/x-nucleo-wb05kn1.webp :align: center :alt: X-NUCLEO-WB05KN1
More information about the board can be found at the
X-NUCLEO-WB05KN1 website_.
Configurations
X-NUCLEO-WB05KN1 can be utilized as a Bluetooth Low-Energy controller shield with a UART or SPI host controller interface (HCI-UART/HCI-SPI).
The UART default settings are:
+----------+-----------------------+ | UART Pin | Arduino Connector Pin | +==========+=======================+ | RX | D0 | +----------+-----------------------+ | TX | D1 | +----------+-----------------------+
The SPI default settings are:
IRQ and reset pins are also necessary in addition to SPI pins.
+----------------+-----------------------+ | SPI Config Pin | Arduino Connector Pin | +================+=======================+ | SCK | D13 | +----------------+-----------------------+ | MISO | D12 | +----------------+-----------------------+ | MOSI | D11 | +----------------+-----------------------+ | CS | D10 | +----------------+-----------------------+ | IRQ | A0 | +----------------+-----------------------+ | RESET | D7 | +----------------+-----------------------+
More information about X-NUCLEO-WB05KN1 can be found here:
X-NUCLEO-WB05KN1 datasheet_Programming
Activate the presence of the shield for the project build by adding the
--shield x_nucleo_wb05kn1_uart or --shield x_nucleo_wb05kn1_spi when you invoke
west build based on UART or SPI interface:
.. zephyr-app-commands:: :app: your_app :board: your_board_name :shield: x_nucleo_wb05kn1_uart :goals: build
Or
.. zephyr-app-commands:: :app: your_app :board: your_board_name :shield: x_nucleo_wb05kn1_spi :goals: build
References
.. target-notes::
.. _X-CUBE-WB05N: https://www.st.com/en/embedded-software/x-cube-wb05n.html
.. _X-NUCLEO-WB05KN1 website: https://www.st.com/en/evaluation-tools/x-nucleo-wb05kn1.html
.. _X-NUCLEO-WB05KN1 datasheet: https://www.st.com/resource/en/datasheet/stm32wb05kn.pdf