Difference between revisions of "STM32StepByStep:Step4 Sensors usage"

[quality revision] [pending revision]
m
m (Compile and run the example)
 

Sensors usage with B-L475E-IOT01A and with B-U585I-IOT02AClock.png60min

Target description
The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit and in B-U585I-IOT02A Discovery kit. Configuration of the temperature sensor is described step by step.
After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board and on B-U585I-IOT02A board.
The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.

Prerequisites
You have gone through:

Hardware

  • STM32L4 Discovery kit IoT node[1] (B-L475E-IOT01A )
  • B-U585I-IOT02A Discovery kit IoT node[2] (B-U585I-IOT02A )
  • USB cable Type-A to Micro-B

Literature


1 Sensors usage with B-L475E-IOT01A[edit]

1.1 Hardware description[edit]

The main sensors available in the STM32L4 Discovery kit IoT node (B-L475E-IOT01A) are:

  • Capacitive digital sensor for relative humidity and temperature (HTS221)
  • 260-1260 hPa absolute digital output barometer (LPS22HB)
  • 3D accelerometer and 3D gyroscope (LSM6DSL)
  • High-performance 3-axis magnetometer (LIS3MDL).

IoTNode Board Sensor.pngIoTNode Board Sensor.png

1.2 Example: Get temperature values using the HTS221 sensor and display them on a terminal[edit]

The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.

1.2.1 Create a working project with STM32CubeMX[edit]

The starting point is the project generated with STM32CubeMX described in the Step3 tutorial titled Introduction to the UART I/F on B-L475E-IOT01A.
Follow the steps described there and call the generated project L4_IOT_Sensors.

1.2.2 Copy BSP drivers to your project[edit]

The BSP (board support package) drivers are available in the STM32CubeL4 package. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeL4 package is downloaded by default in the STM32CubeMX repository (C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_L4_Vx.xx.x).
BSP location and content in the tree:
Folder tree.png

Info white.png Information
STM32CubeL4 used version is 1.11.0, but it can increase over time.

Here are the steps to follow in order to copy the BSP drivers into your project:

  • Copy the STM32CubeL4/Drivers/BSP/B-L475E-IOT01 folder
  • In the generated project, create a folder L4_IOT_Sensors/Drivers/BSP. Paste the copied folder there.
  • Copy the STM32CubeL4/Drivers/BSP/Components folder. Paste it under L4_IOT_Sensors/Drivers/BSP/Components.
  • Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed
    • Under L4_IOT_Sensors\Drivers\BSP\B-L475E-IOT01, keep only the following files:
      Folder tree 2.png
    • Under L4_IOT_Sensors\Drivers\BSP\Components, keep only the following folders:
      Folder tree 3.png

1.2.3 Support BSP in STM32CubeIDE workspace[edit]

After being copied, the added folders appear automatically in the STM32CubeIDE workspace:
Folder tree 4.png

1.2.4 Update include paths[edit]

Update the paths to support new header files:

  • Select the relevant project from the Project Explorer perspective:

Project select.png

  • From Project menu or File menu, go to Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths
  • Click on Add icon.png to include the new paths
  • Add ../Drivers/BSP/B-L475E-IOT01 and ../Drivers/BSP/Components/hts221 paths

The following screenshot summarizes the steps to follow:
Project setting.png

1.2.5 Update source files[edit]

The only file to modify is main.c, as follows:

  • Include the header files: stm32l475e_iot01.h, stm32l475e_iot01_tsensor.h and math.h
/* USER CODE BEGIN Includes */<br>
#include "stm32l475e_iot01.h"
#include "stm32l475e_iot01_tsensor.h"
#include <math.h>
/* USER CODE END Includes */

  • Add private values to use for temperature values and displayed messages on the terminal:
/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n ";
/* USER CODE END PV */

  • Display messages on the terminal and initialize the HTS221 temperature sensor:
/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_TSENSOR_Init();
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//

  • In the while (1) loop, read the temperature value, format it, and then display the message with the measured value on the terminal:
/* USER CODE BEGIN 3 */
temp_value = BSP_TSENSOR_ReadTemp();
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t * )str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */

Info white.png Information
Pay attention to make updates in the correct USER CODE section in order to avoid over-writing them with a new STM32CubeMX code generation.

1.2.6 Compile and run the example[edit]

  • Click on Build button Built Button.png to compile the project
  • Click on Debug button Debug Button.png to run the software
  • Open a console emulator such as TeraTerm [3]. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC
  • STM32CubeIDE opens the Debug perspective. Click on the Resume button Resume Button.png to execute the code
  • TeraTerm [3] displays the initialization message preceding the measured temperature values:

TeraTerm Temp.png
Now you are able to:

  • Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A
  • Add BSP components to an STM32CubeMx generated project
  • Extend the use of the board to sensors other than HTS221, to make environmental measurements.

2 Sensors usage with B-U585-IOT02A[edit]

2.1 Hardware description[edit]

The main sensors available in B-U585I-IOT02A discovery kit for the IoT node are:

  • Capacitive digital sensor for relative humidity and temperature (HTS221)
  • 260-1260 hPa absolute digital output barometer (LPS22HH)
  • 3D accelerometer and 3D gyroscope (ISM330DHCX)
  • High-performance 3-axis magnetometer (IIS2MDCTR).

600px

2.2 Example: Get temperature values using the HTS221 sensor and display them on a terminal[edit]

The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.

2.2.1 Create a U5_IOT_Sensors project with STM32CubeMX[edit]

  • Create a new project using STM32CubeMX.
  • Select B-U585I-IOT02A board using Board selector.
  • Answer Yes to Initialize all peripherals with their default Mode ? popup.
  • Select without TrustZone activated? and Answer OK to create a new project without TrustZone activated? popup.
  • Verify in Pinout tab that USART1 mode is configured to Asynchronous.
  • Click on USART1 button in Configuration tab and set Word Length to 8 Bits, baud rate to 115200 Bits/s, Parity to None and Stop Bits to 1 as shown below.

UART setup2.png

  • Enable the ICache in Pinout tab by select Memory address remap to reach the maximum performance.
  • Switch to the Project Manager tab and select STM32CubeIDE as Toolchain / IDE and give a name to your project.
  • Click on Generate Code and accept to open the project in STM32CubeIDE.

Follow the steps described there and call the generated project U5_IOT_Sensors.

2.2.2 Copy BSP drivers to your project[edit]

The BSP (board support package) drivers are available in the STM32CubeU5 package. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeU5 package is downloaded by default in the STM32CubeMX repository (C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_U5_Vx.xx.x).
BSP location and content in the tree:
150px

Info white.png Information
STM32CubeU5 used version is 1.1.1, but it can increase over time.

Here are the steps to follow in order to copy the BSP drivers into your project:

  • Copy the STM32CubeU5/Drivers/BSP/B-U585-IOT02 folder
  • In the generated project, create a folder U5_IOT_Sensors/Drivers/BSP. Paste the copied folder there.
  • Copy the STM32CubeU5/Drivers/BSP/Components folder. Paste it under U5_IOT_Sensors/Drivers/BSP/Components.
  • Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed:
    • Under U5_IOT_Sensors\Drivers\BSP\Components, keep only the following folders:
      100px
    • Under U5_IOT_Sensors\Drivers\BSP\B-U585-IOT02, keep only the following files:
      150px
  • Modify the the name of b_u585i_iot02a_conf_template.h file by b_u585i_iot02a_conf.h.

2.2.3 Support BSP in STM32CubeIDE workspace[edit]

After being copied, the added folders appear automatically in the STM32CubeIDE workspace:
200px

2.2.4 Update include paths[edit]

Update the paths to support new header files:

  • Select the relevant project from the Project Explorer perspective:

300px

  • From Project menu or File menu, go to Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths
  • Click on Add icon.png to include the new paths
  • Add ../Drivers/BSP/B-U585I-IOT02A , ../Drivers/BSP/Components/hts221 and ../Drivers/BSP/Components/lps22hh paths

The following screenshot summarizes the steps to follow:
450px

2.2.5 Update source files[edit]

The only file to modify is main.c, as follows:

  • Include the header files: b_u585i_iot02a.h, b_u585i_iot02a_env_sensors.h and math.h
/* USER CODE BEGIN Includes */
#include "b_u585i_iot02a.h"
#include "b_u585i_iot02a_env_sensors.h"
#include <math.h>
/* USER CODE END Includes */

  • Add private values to use for temperature values and displayed messages on the terminal:
/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n";
/* USER CODE END PV */

  • Display messages on the terminal and initialize the HTS221 temperature sensor:
/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_ENV_SENSOR_Init(0, ENV_TEMPERATURE);
BSP_ENV_SENSOR_Enable(0, ENV_TEMPERATURE);
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//

  • In the while (1) loop, read the temperature value, format it, and then display the message with the measured value on the terminal:
/* USER CODE BEGIN 3 */
BSP_ENV_SENSOR_GetValue(0, ENV_TEMPERATURE, &temp_value);
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t *)str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */

Info white.png Information
Pay attention to make updates in the correct USER CODE section in order to avoid over-writing them with a new STM32CubeMX code generation.

2.2.6 Compile and run the example[edit]

  • Click on Build button Built Button.png to compile the project
  • Click on Debug button Debug Button.png to run the software
  • Open a console emulator such as TeraTerm [3]. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC
  • STM32CubeIDE opens the Debug perspective. Click on the Resume button Resume Button.png to execute the code
  • TeraTerm [3] displays the initialization message preceding the measured temperature values:

400px
Now you are able to:

  • Build your own project to measure temperature values with the sensor embedded on the B-U585I-IOT02A
  • Add BSP components to an STM32CubeMx generated project
  • Extend the use of the board to sensors other than HTS221, to make environmental measurements.

3 Appendix: Porting an AC6 example to STM32CubeIDE[edit]

The example to be used in this appendix is DataLogTerminal located under: STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal

Info white.png Information
STM32CubeExpansion_MEMS1_V7.1.0 is the extract of X-CUBE-MEMS. More recent versions of this package may be available over time from the same link.
Warning white.png Warning
It is recommended to put the package under C: in order to avoid compilation errors later (because of long paths)

23.1 Hardware description[edit]

The X-NUCLEO-IKS01A2[4] is a motion MEMS and environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with NUCLEO-L476RG via I²C-bus pins.
IKS Sensor Board.png

23.2 Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)[edit]

The purpose of this section is to explain step by step how to interface the X-NUCLEO IKS01A2 HTS221 sensor and NUCLEO-L476RG to get temperature values and display them on a terminal.

23.2.1 Hardware setup[edit]

  • Extend your Nucleo board with the X-NUCLEO-IKS01A2 shield using the Arduino connectors
  • Connect the board with its shield to your PC.

23.2.2 Example details[edit]

A description of the DataLogTerminal example is available under STM32CubeExpansion_MEMS1_ V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal in the readme.txt file:

@par Example Description
Main function is to show how to use sensor expansion board to send sensor data from a Nucleo board using UART to a connected PC or desktop, and display it on generic applications like TeraTerm.
After connection has been established:
- The user can view the data from various on-board environment sensors such as temperature, humidity, and pressure
- The user can also view data from various on-board MEMS sensors such as accelerometer, gyroscope, and magnetometer.

23.2.3 Porting the example to STM32CubeIDE[edit]

Import the DataLogTerminal example based on SW4STM32 and dedicated to the NUCLEO-L476RG into STM32CubeIDE: STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal.
The project must be converted and the following message is displayed:
Project Converter 2.png

  • When clicking on OK, the following message pops up:

Project Converter OK.png

  • Click OK
  • Select the relevant project from the Project Explorer perspective:

Project Explorer.png

23.2.4 Compiling and running the example[edit]

  • Click on the Build button Built Button.png to compile the project.
  • Click on the Debug button arrow Debug Arrow Button.png and select Debug Configurations...
  • In the Debug Configuration window that pops up, make sure that the selected Debug probe is ST-LINK:

Debug Panel.png

  • From the same window, click on Debug, or click on the Debug button Debug Button.png to run the software.
  • Open a console emulator such as TeraTerm [3]. Configure the Console baud rate, select Data bits: 8 and click OK. The port name may differ on your PC.
  • Click on the Resume button Resume Button.png to execute the code. TeraTerm [3] displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.
  • The values measured by the X-NUCLEO-IKS01A2 sensors are displayed in the TeraTerm window as follows:

TeraTerm AllSensor.png

4 References[edit]



Previous step Arrow left.png Arrow right.png Next step



<big><big><big>'''Sensors usage with B-L475E-IOT01A and with B-U585I-IOT02A'''</big></big></big>[[File:Clock.png|40px|middle]]60min<br><br>
<big><big>'''Target description'''</big></big><br>

The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit and in B-U585I-IOT02A Discovery kit. Configuration of the temperature sensor is described step by step. <br>

After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board and on B-U585I-IOT02A board.<br>

The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.<br>

<big><big>'''Prerequisites'''</big></big><br>

You have gone through:<br>

* [[STM32StepByStep:Step1 Tools installation | Step1: Tools installation and first test]]<br> 

* [[STM32StepByStep:Step3 Introduction to the UART | Step3:  UART and new board introduction]]<br>

<big><big>'''Hardware'''</big></big><br>


* STM32L4 Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node]</ref> (B-L475E-IOT01A )<br>

* B-U585I-IOT02A Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-u585i-iot02a.html  B-U585I-IOT02A Discovery kit IoT node]</ref> (B-U585I-IOT02A )<br>

* USB cable Type-A to Micro-B
<big><big>'''Literature'''</big></big><br>

* [https://www.st.com/resource/en/user_manual/dm00347848.pdf UM2153]  Discovery kit for IoT node, multi-channel communication with STM32L4<br>

* [http://www.st.com/content/ccc/resource/technical/document/user_manual/63/a8/8f/e3/ca/a1/4c/84/DM00173145.pdf/files/DM00173145.pdf/jcr:content/translations/en.DM00173145.pdf UM1884]  Description of STM32L4/L4+ HAL and low-layer drivers<br>

* [https://www.st.com/resource/en/user_manual/um2839-discovery-kit-for-iot-node-with-stm32u5-series-stmicroelectronics.pdf UM2839]  Discovery kit for IoT node with STM32U5 Series<br>

* [https://www.st.com/content/ccc/resource/technical/document/user_manual/group2/17/c1/76/07/05/1c/4e/fb/DM00813340/files/DM00813340.pdf/jcr:content/translations/en.DM00813340.pdf UM2911] Description of STM32U5 HAL and low-layer drivers<br>

* [https://www.st.com/resource/en/user_manual/dm00157069.pdf UM1859] Getting started with the X-CUBE-MEMS1 motion MEMS and environmental sensor software expansion for STM32Cube<br>

* [https://www.st.com/resource/en/user_manual/dm00613836-migration-guide-from-system-workbench-to-stm32cubeide-stmicroelectronics.pdf UM2579] Migration guide from System Workbench to STM32CubeIDE<br>

* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=6eUqxjBL_wI]] [https://www.youtube.com/watch?v=6eUqxjBL_wI Getting starting with STM32L4 Discovery kit IoT node]<br>
<br>
* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=Zo10SQaU7jA]] [https://www.youtube.com/watch?v=Zo10SQaU7jA Discover the new STM32U5 IoT node B-U585-IOT02A Discovery kit]<br>
<br>
==Sensors usage with B-L475E-IOT01A==
===Hardware description===
The main sensors available in the STM32L4 Discovery kit IoT node (B-L475E-IOT01A) are:<br>

* Capacitive digital sensor for relative humidity and temperature (HTS221)<br>

* 260-1260 hPa absolute digital output barometer (LPS22HB)<br>

* 3D accelerometer and 3D gyroscope (LSM6DSL)<br>

* High-performance 3-axis magnetometer (LIS3MDL).<br>

[[File:IoTNode_Board_Sensor.png|middle|400px600px]]<br>
<br>


===Example: Get temperature values using the HTS221 sensor and display them on a terminal===
{{Highlight|The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.}}<br>

====Create a working project with STM32CubeMX====
The starting point is the project generated with STM32CubeMX described in the Step3 tutorial titled [[STM32StepByStep:Step3 Introduction to the UART#Introduction to the UART I/F on B-L475E-IOT01A (IoT Node)| Introduction to the UART I/F on B-L475E-IOT01A]].<br>

Follow the steps described there and call the generated project L4_IOT_Sensors.<br>


====Copy BSP drivers to your project====
The '''''BSP''''' (board support package) drivers are available in the '''''STM32CubeL4 package'''''. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeL4 package is downloaded by default in the STM32CubeMX repository (''C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_L4_Vx.xx.x'').<br>

'''''BSP''''' location and content in the tree:<br>

[[File:Folder_tree.png|middle|150px]]<br>

{{info|STM32CubeL4 used version is 1.11.0, but it can increase over time.}}

Here are the steps to follow in order to copy the BSP drivers into your project:<br>

* Copy the '''''STM32CubeL4/Drivers/BSP/B-L475E-IOT01''''' folder<br>

* In the generated project, create a folder '''''L4_IOT_Sensors/Drivers/BSP'''''. Paste the copied folder there.<br>

* Copy the '''''STM32CubeL4/Drivers/BSP/Components''''' folder. Paste it under '''''L4_IOT_Sensors/Drivers/BSP/Components'''''.<br>

* Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed<br>

** Under  '''''L4_IOT_Sensors\Drivers\BSP\B-L475E-IOT01''''', keep only the following files:<br>[[File:Folder_tree_2.png|middle|150px]]
** Under '''''L4_IOT_Sensors\Drivers\BSP\Components''''', keep only the following folders:<br>[[File:Folder_tree_3.png|middle|100px]]<br>


====Support BSP in STM32CubeIDE workspace====
After being copied, the added folders appear automatically in the STM32CubeIDE workspace:<br>

[[File:Folder_tree_4.png|middle|150px]]<br>
<br>

====Update include paths====
Update the paths to support new header files:<br>

* Select the relevant project from the '''''Project Explorer''''' perspective: 
[[File:Project_select.png|middle|300px]]<br>

* From '''''Project menu''''' or '''''File menu''''', go to '''''Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths'''''<br>

* Click on [[File:Add_icon.png|middle|30px]] to include the new paths <br>

* Add '''''../Drivers/BSP/B-L475E-IOT01''''' and '''''../Drivers/BSP/Components/hts221''''' paths<br>

The following screenshot summarizes the steps to follow:<br>

[[File:Project_setting.png|middle|450px]]<br>

====Update source files====
The only file to modify is '''''main.c''''', as follows:<br>

* Include the header files: '''''stm32l475e_iot01.h''''', '''''stm32l475e_iot01_tsensor.h''''' and '''''math.h'''''<br>
<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */<br>

#include "stm32l475e_iot01.h"
#include "stm32l475e_iot01_tsensor.h"
#include <math.h>

/* USER CODE END Includes */</syntaxhighlight>

* Add private values to use for temperature values and displayed messages on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n ";
/* USER CODE END PV */</syntaxhighlight>

* Display messages on the terminal and initialize the HTS221 temperature sensor:<syntaxhighlight lang="c">/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_TSENSOR_Init();
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//</syntaxhighlight>

* In the '''''while (1)''''' loop, read the  temperature value, format it, and then display the message with the measured value on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN 3 */
temp_value = BSP_TSENSOR_ReadTemp();
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t * )str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */</syntaxhighlight>

{{info|Pay attention to make updates in the correct '''''USER CODE''''' section in order to avoid over-writing them with a new STM32CubeMX code generation.}}

====Compile and run the example====
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>

* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>

* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm]</ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>

* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>

* [ TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>

[[File:TeraTerm_Temp.png|middle|300px]]<br>

{{Highlight|Now you are able to}}:
* Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A<br>

* Add BSP components to an STM32CubeMx generated project<br>

* Extend the use of the board to sensors other than HTS221, to make environmental measurements.
==Sensors usage with B-U585-IOT02A==
===Hardware description===

The main sensors available in B-U585I-IOT02A discovery kit for the IoT node are:<br>

* Capacitive digital sensor for relative humidity and temperature (HTS221)<br>

* 260-1260 hPa absolute digital output barometer (LPS22HH)<br>

* 3D accelerometer and 3D gyroscope (ISM330DHCX)<br>

* High-performance 3-axis magnetometer (IIS2MDCTR).<br>

[[File:IoTNode_Board_SensorU5.png|middle|600px]]<br>
<br>

===Example: Get temperature values using the HTS221 sensor and display them on a terminal===
{{Highlight|The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.}}<br>

====Create a U5_IOT_Sensors project with STM32CubeMX====
* Create a new project using STM32CubeMX.<br>

* Select '''''B-U585I-IOT02A''''' board using '''''Board selector'''''.<br>

* Answer '''''Yes''''' to '''''Initialize all peripherals with their default Mode ?''''' popup.<br>

* Select '''''without TrustZone activated?''''' and Answer '''''OK''''' to '''''create a new project without TrustZone activated?''''' popup.<br>

* Verify in '''''Pinout''''' tab that '''''USART1''''' mode is configured to Asynchronous.<br>

* Click on '''''USART1''''' button in '''''Configuration''''' tab and set '''''Word Length''''' to '''''8 Bits''''', baud rate to '''''115200 Bits/s''''', '''''Parity''''' to '''''None '''''and '''''Stop Bits''''' to '''''1''''' as shown below.<br>

[[File:UART_setup2.png|middle|300px]]<br>

* Enable the '''''ICache'''''  in '''''Pinout''''' tab by select '''''Memory address remap''''' to reach the maximum performance'''''.<br>

* Switch to the '''''Project Manager''''' tab and select '''''STM32CubeIDE''''' as Toolchain / IDE and give a name to your project. <br>

* Click on '''''Generate Code''''' and accept to open the project in STM32CubeIDE.<br>

Follow the steps described there and call the generated project U5_IOT_Sensors.<br>


====Copy BSP drivers to your project====
The '''''BSP''''' (board support package) drivers are available in the '''''STM32CubeU5 package'''''. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeU5 package is downloaded by default in the STM32CubeMX repository (''C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_U5_Vx.xx.x'').<br>

'''''BSP''''' location and content in the tree:<br>

[[File:BSP.png|middle|150px]]<br>

{{info|STM32CubeU5 used version is 1.1.1, but it can increase over time.}}

Here are the steps to follow in order to copy the BSP drivers into your project:<br>

* Copy the '''''STM32CubeU5/Drivers/BSP/B-U585-IOT02''''' folder<br>

* In the generated project, create a folder '''''U5_IOT_Sensors/Drivers/BSP'''''. Paste the copied folder there.<br>

* Copy the '''''STM32CubeU5/Drivers/BSP/Components''''' folder. Paste it under '''''U5_IOT_Sensors/Drivers/BSP/Components'''''.<br>

* Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed:<br>

** Under '''''U5_IOT_Sensors\Drivers\BSP\Components''''', keep only the following folders:<br>[[File:Components_drivers.png|middle|100px]]<br>

** Under  '''''U5_IOT_Sensors\Drivers\BSP\B-U585-IOT02''''', keep only the following files:<br>[[File:b_u585i_iot2 drivers.png|middle|150px]]<br>

* Modify the the name of '''''b_u585i_iot02a_conf_template.h''''' file by '''''b_u585i_iot02a_conf.h'''''.<br>


====Support BSP in STM32CubeIDE workspace====
After being copied, the added folders appear automatically in the STM32CubeIDE workspace:<br>

[[File:Project_with_BSP_Drivers.png|middle|200px]]<br>
<br>


====Update include paths====
Update the paths to support new header files:<br>

* Select the relevant project from the '''''Project Explorer''''' perspective: 
[[File:Project_name.png|middle|300px]]<br>

* From '''''Project menu''''' or '''''File menu''''', go to '''''Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths'''''<br>

* Click on [[File:Add_icon.png|middle|30px]] to include the new paths <br>

* Add '''''../Drivers/BSP/B-U585I-IOT02A''''' , '''''../Drivers/BSP/Components/hts221''''' and '''''../Drivers/BSP/Components/lps22hh''''' paths<br>

The following screenshot summarizes the steps to follow:<br>

[[File:Path1.png|middle|450px]]<br>


====Update source files====
The only file to modify is '''''main.c''''', as follows:<br>

* Include the header files: '''''b_u585i_iot02a.h''''', '''''b_u585i_iot02a_env_sensors.h''''' and '''''math.h'''''<br>
<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */
#include "b_u585i_iot02a.h"
#include "b_u585i_iot02a_env_sensors.h"
#include <math.h>

/* USER CODE END Includes */</syntaxhighlight>

* Add private values to use for temperature values and displayed messages on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN PV */
/* Private variables -------------------------------------------------------*/
float temp_value = 0;  // Measured temperature value
char str_tmp[100] = ""; // Formatted message to display the temperature value
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n";
/* USER CODE END PV */</syntaxhighlight>

* Display messages on the terminal and initialize the HTS221 temperature sensor:<syntaxhighlight lang="c">/* USER CODE BEGIN 2 */
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
BSP_ENV_SENSOR_Init(0, ENV_TEMPERATURE);
BSP_ENV_SENSOR_Enable(0, ENV_TEMPERATURE);
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
/* USER CODE END 2 *//</syntaxhighlight>

* In the '''''while (1)''''' loop, read the  temperature value, format it, and then display the message with the measured value on the terminal:<syntaxhighlight lang="c">/* USER CODE BEGIN 3 */
BSP_ENV_SENSOR_GetValue(0, ENV_TEMPERATURE, &temp_value);
int tmpInt1 = temp_value;
float tmpFrac = temp_value - tmpInt1;
int tmpInt2 = trunc(tmpFrac * 100);
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t *)str_tmp,sizeof(str_tmp),1000);
HAL_Delay(1000);
/* USER CODE END 3 */</syntaxhighlight>

{{info|Pay attention to make updates in the correct '''''USER CODE''''' section in order to avoid over-writing them with a new STM32CubeMX code generation.}}

====Compile and run the example====
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>

* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>

* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm] </ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>

* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>

*  TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>

[[File:TeraTerm_Temptera_term_temp.png|middle|300px400px]]<br>

{{Highlight|Now you are able to}}:
* Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01AU585I-IOT02A<br>

* Add BSP components to an STM32CubeMx generated project<br>

* Extend the use of the board to sensors other than HTS221, to make environmental measurements.

==Appendix: Porting an AC6 example to STM32CubeIDE==
The example to be used in this appendix is '''''DataLogTerminal''''' located under: '''''STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal'''''<br>

{{info|STM32CubeExpansion_MEMS1_V7.1.0 is the extract of [http://www.st.com/en/embedded-software/x-cube-mems1.html X-CUBE-MEMS]. More recent versions of this package may be available over time from the same link.}}
{{Warning | It is recommended to put the package under C: in order to avoid compilation errors later (because of long paths)}}
===Hardware description===

The X-NUCLEO-IKS01A2<ref>[https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2]</ref> is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>

[[File:IKS_Sensor_Board.png|middle|450px]]<br>

===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
The purpose of this section is to explain step by step how to interface the X-NUCLEO IKS01A2 '''''HTS221''''' sensor and NUCLEO-L476RG to get temperature values and display them on a terminal.<br>

====Hardware setup====
* Extend your Nucleo board with the X-NUCLEO-IKS01A2 shield using the Arduino connectors<br>

* Connect the board with its shield to your PC.<br>

====Example details====
A description of the '''''DataLogTerminal''''' example is available under '''''STM32CubeExpansion_MEMS1_ V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal''''' in the '''''readme.txt''''' file:<syntaxhighlight lang="c">

@par Example Description
Main function is to show how to use sensor expansion board to send sensor data from a Nucleo board using UART to a connected PC or desktop, and display it on generic applications like TeraTerm.
After connection has been established:
- The user can view the data from various on-board environment sensors such as temperature, humidity, and pressure
- The user can also view data from various on-board MEMS sensors such as accelerometer, gyroscope, and magnetometer.</syntaxhighlight>


====Porting the example to STM32CubeIDE====
Import the '''''DataLogTerminal''''' example based on '''''SW4STM32''''' and dedicated to the '''''NUCLEO-L476RG''''' into STM32CubeIDE: '''''STM32CubeExpansion_MEMS1_V7.1.0\Projects\STM32L476RG-Nucleo\Examples\IKS01A2\DataLogTerminal'''''.<br>

The project must be converted and the following message is displayed:<br>

[[File:Project_Converter_2.png|middle|300px]]<br>

* When clicking on '''''OK''''', the following message pops up:
[[File:Project_Converter_OK.png|middle|300px]]<br>

* Click '''''OK'''''
* Select the relevant project from the '''''Project Explorer''''' perspective:
[[File:Project_Explorer.png|middle|300px]]<br>

====Compiling and running the example====
* Click on the '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project.<br>

* Click on the '''''Debug''''' button '''''arrow''''' [[File:Debug_Arrow_Button.png|40px|middle]] and select '''''Debug Configurations...'''''<br>

* In the Debug Configuration window that pops up, make sure that the selected Debug probe is '''''ST-LINK''''':
[[File:Debug_Panel.png|middle|450px]]<br>

* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br> 

* Open a console emulator such as  [https://ttssh2.osdn.jp/index.html.en TeraTerm]. TeraTerm <ref name="TeraTerm" />. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>

* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. [https://ttssh2.osdn.jp/index.html.en TeraTerm]  TeraTerm <ref name="TeraTerm" /> displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>

* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>


==References==<references />
<br><br>

{|class="st-table" style="margin: auto; text-align:center"
|style="border-style: hidden; background-color: white;width:200px; text-align:right"|'''[[STM32StepByStep:Step3 Introduction to the UART | Previous step]]'''
|style="border-style: hidden; background-color: white;width:100px; text-align:left"|[[File:Arrow left.png|20px|link=STM32StepByStep:Step3 Introduction to the UART]]

|style="border-style: hidden; background-color: white;width:100px; text-align:right"|[[File:Arrow right.png|20px|link=STM32StepByStep:Step5 Build an IOT system]]''
|style="border-style: hidden; background-color: white;width:200px; text-align:left"|'''[[STM32StepByStep:Step5 Build an IOT system | Next step]]'''
|}

{{PublicationRequestId | 16010| 2020-05-05 | Philip SAGE}}
{{ArticleBasedOnModel | Example STM32 Step by step article}}
<noinclude>

[[Category:STM32 step by stepGetting started with STM32 : STM32 step by step|50]]</noinclude>
(48 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<big><big><big>'''Sensors usage with B-L475E-IOT01A'''</big></big></big>[[File:Clock.png|40px|middle]]60min<br><br>
+
<big><big><big>'''Sensors usage with B-L475E-IOT01A and with B-U585I-IOT02A'''</big></big></big>[[File:Clock.png|40px|middle]]60min<br><br>
 
<big><big>'''Target description'''</big></big><br>
 
<big><big>'''Target description'''</big></big><br>
The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit. Configuration of the temperature sensor is described step by step. <br>
+
The purpose of this tutorial is to explain how to perform measurements with sensors available in the STM32L4 Discovery kit and in B-U585I-IOT02A Discovery kit. Configuration of the temperature sensor is described step by step. <br>
After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board.<br>
+
After this tutorial, you will be able to collect values using the sensors available on B-L475E-IOT01A board and on B-U585I-IOT02A board.<br>
 
The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.<br>
 
The appendix of this tutorial provides guidelines on how to port an AC6 example to STM32CubeIDE.<br>
   
Line 12: Line 12:
 
<big><big>'''Hardware'''</big></big><br>
 
<big><big>'''Hardware'''</big></big><br>
   
* [https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node] (B-L475E-IOT01A )<br>
+
* STM32L4 Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html  STM32L4 Discovery kit IoT node]</ref> (B-L475E-IOT01A )<br>
  +
* B-U585I-IOT02A Discovery kit IoT node<ref>[https://www.st.com/en/evaluation-tools/b-u585i-iot02a.html  B-U585I-IOT02A Discovery kit IoT node]</ref> (B-U585I-IOT02A )<br>
 
* USB cable Type-A to Micro-B
 
* USB cable Type-A to Micro-B
   
Line 18: Line 19:
 
* [https://www.st.com/resource/en/user_manual/dm00347848.pdf UM2153]  Discovery kit for IoT node, multi-channel communication with STM32L4<br>
 
* [https://www.st.com/resource/en/user_manual/dm00347848.pdf UM2153]  Discovery kit for IoT node, multi-channel communication with STM32L4<br>
 
* [http://www.st.com/content/ccc/resource/technical/document/user_manual/63/a8/8f/e3/ca/a1/4c/84/DM00173145.pdf/files/DM00173145.pdf/jcr:content/translations/en.DM00173145.pdf UM1884]  Description of STM32L4/L4+ HAL and low-layer drivers<br>
 
* [http://www.st.com/content/ccc/resource/technical/document/user_manual/63/a8/8f/e3/ca/a1/4c/84/DM00173145.pdf/files/DM00173145.pdf/jcr:content/translations/en.DM00173145.pdf UM1884]  Description of STM32L4/L4+ HAL and low-layer drivers<br>
  +
* [https://www.st.com/resource/en/user_manual/um2839-discovery-kit-for-iot-node-with-stm32u5-series-stmicroelectronics.pdf UM2839]  Discovery kit for IoT node with STM32U5 Series<br>
  +
* [https://www.st.com/content/ccc/resource/technical/document/user_manual/group2/17/c1/76/07/05/1c/4e/fb/DM00813340/files/DM00813340.pdf/jcr:content/translations/en.DM00813340.pdf UM2911] Description of STM32U5 HAL and low-layer drivers<br>
 
* [https://www.st.com/resource/en/user_manual/dm00157069.pdf UM1859] Getting started with the X-CUBE-MEMS1 motion MEMS and environmental sensor software expansion for STM32Cube<br>
 
* [https://www.st.com/resource/en/user_manual/dm00157069.pdf UM1859] Getting started with the X-CUBE-MEMS1 motion MEMS and environmental sensor software expansion for STM32Cube<br>
 
* [https://www.st.com/resource/en/user_manual/dm00613836-migration-guide-from-system-workbench-to-stm32cubeide-stmicroelectronics.pdf UM2579] Migration guide from System Workbench to STM32CubeIDE<br>
 
* [https://www.st.com/resource/en/user_manual/dm00613836-migration-guide-from-system-workbench-to-stm32cubeide-stmicroelectronics.pdf UM2579] Migration guide from System Workbench to STM32CubeIDE<br>
 
* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=6eUqxjBL_wI]] [https://www.youtube.com/watch?v=6eUqxjBL_wI Getting starting with STM32L4 Discovery kit IoT node]<br>
 
* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=6eUqxjBL_wI]] [https://www.youtube.com/watch?v=6eUqxjBL_wI Getting starting with STM32L4 Discovery kit IoT node]<br>
  +
* [[File:pc_videol.png|middle|20px|link=https://www.youtube.com/watch?v=Zo10SQaU7jA]] [https://www.youtube.com/watch?v=Zo10SQaU7jA Discover the new STM32U5 IoT node B-U585-IOT02A Discovery kit]<br>
 
<br>
 
<br>
 
==Sensors usage with B-L475E-IOT01A==
 
==Sensors usage with B-L475E-IOT01A==
Line 29: Line 33:
 
* 3D accelerometer and 3D gyroscope (LSM6DSL)<br>
 
* 3D accelerometer and 3D gyroscope (LSM6DSL)<br>
 
* High-performance 3-axis magnetometer (LIS3MDL).<br>
 
* High-performance 3-axis magnetometer (LIS3MDL).<br>
[[File:IoTNode_Board_Sensor.png|middle|400px]]<br>
+
[[File:IoTNode_Board_Sensor.png|middle|600px]]<br>
 
<br>
 
<br>
   
Line 67: Line 71:
 
====Update source files====
 
====Update source files====
 
The only file to modify is '''''main.c''''', as follows:<br>
 
The only file to modify is '''''main.c''''', as follows:<br>
* Include the header files: '''''stm32l475e_iot01.h''''', '''''stm32l475e_iot01_tsensor.h''''' and '''''math.h'''''
+
* Include the header files: '''''stm32l475e_iot01.h''''', '''''stm32l475e_iot01_tsensor.h''''' and '''''math.h'''''<br>
<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */<br>
+
<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */
 
#include "stm32l475e_iot01.h"
 
#include "stm32l475e_iot01.h"
 
#include "stm32l475e_iot01_tsensor.h"
 
#include "stm32l475e_iot01_tsensor.h"
Line 96: Line 100:
 
int tmpInt2 = trunc(tmpFrac * 100);
 
int tmpInt2 = trunc(tmpFrac * 100);
 
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
 
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
HAL_UART_Transmit(&huart1,( uint8_t * )str_tmp,sizeof(str_tmp),1000);
+
HAL_UART_Transmit(&huart1,( uint8_t *)str_tmp,sizeof(str_tmp),1000);
 
HAL_Delay(1000);
 
HAL_Delay(1000);
 
/* USER CODE END 3 */</syntaxhighlight>
 
/* USER CODE END 3 */</syntaxhighlight>
Line 104: Line 108:
 
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>
 
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>
 
* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>
 
* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>
* Open a console emulator such as [https://ttssh2.osdn.jp/index.html.en TeraTerm]. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>
+
* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm]</ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>
 
* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>
 
* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>
* [https://ttssh2.osdn.jp/index.html.en TeraTerm] displays the initialization message preceding the measured temperature values:<br>
+
* TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>
 
[[File:TeraTerm_Temp.png|middle|300px]]<br>
 
[[File:TeraTerm_Temp.png|middle|300px]]<br>
 
{{Highlight|Now you are able to}}:
 
{{Highlight|Now you are able to}}:
 
* Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A<br>
 
* Build your own project to measure temperature values with the sensor embedded on the B-L475E-IOT01A<br>
  +
* Add BSP components to an STM32CubeMx generated project<br>
  +
* Extend the use of the board to sensors other than HTS221, to make environmental measurements.
  +
==Sensors usage with B-U585-IOT02A==
  +
===Hardware description===
  +
  +
The main sensors available in B-U585I-IOT02A discovery kit for the IoT node are:<br>
  +
* Capacitive digital sensor for relative humidity and temperature (HTS221)<br>
  +
* 260-1260 hPa absolute digital output barometer (LPS22HH)<br>
  +
* 3D accelerometer and 3D gyroscope (ISM330DHCX)<br>
  +
* High-performance 3-axis magnetometer (IIS2MDCTR).<br>
  +
[[File:IoTNode_Board_SensorU5.png|middle|600px]]<br>
  +
<br>
  +
===Example: Get temperature values using the HTS221 sensor and display them on a terminal===
  +
{{Highlight|The purpose of this section is to explain step by step how to interface with the HTS221 sensor to get temperature values and display them on a terminal.}}<br>
  +
====Create a U5_IOT_Sensors project with STM32CubeMX====
  +
* Create a new project using STM32CubeMX.<br>
  +
* Select '''''B-U585I-IOT02A''''' board using '''''Board selector'''''.<br>
  +
* Answer '''''Yes''''' to '''''Initialize all peripherals with their default Mode ?''''' popup.<br>
  +
* Select '''''without TrustZone activated?''''' and Answer '''''OK''''' to '''''create a new project without TrustZone activated?''''' popup.<br>
  +
* Verify in '''''Pinout''''' tab that '''''USART1''''' mode is configured to Asynchronous.<br>
  +
* Click on '''''USART1''''' button in '''''Configuration''''' tab and set '''''Word Length''''' to '''''8 Bits''''', baud rate to '''''115200 Bits/s''''', '''''Parity''''' to '''''None '''''and '''''Stop Bits''''' to '''''1''''' as shown below.<br>
  +
[[File:UART_setup2.png|middle|300px]]<br>
  +
* Enable the '''''ICache'''''  in '''''Pinout''''' tab by select '''''Memory address remap''''' to reach the maximum performance'''''.<br>
  +
* Switch to the '''''Project Manager''''' tab and select '''''STM32CubeIDE''''' as Toolchain / IDE and give a name to your project. <br>
  +
* Click on '''''Generate Code''''' and accept to open the project in STM32CubeIDE.<br>
  +
Follow the steps described there and call the generated project U5_IOT_Sensors.<br>
  +
  +
====Copy BSP drivers to your project====
  +
The '''''BSP''''' (board support package) drivers are available in the '''''STM32CubeU5 package'''''. This provides APIs corresponding to the hardware components of a board. The last version of the STM32CubeU5 package is downloaded by default in the STM32CubeMX repository (''C:\Users\user_name\STM32Cube\Repository\STM32Cube_FW_U5_Vx.xx.x'').<br>
  +
'''''BSP''''' location and content in the tree:<br>
  +
[[File:BSP.png|middle|150px]]<br>
  +
{{info|STM32CubeU5 used version is 1.1.1, but it can increase over time.}}
  +
  +
Here are the steps to follow in order to copy the BSP drivers into your project:<br>
  +
* Copy the '''''STM32CubeU5/Drivers/BSP/B-U585-IOT02''''' folder<br>
  +
* In the generated project, create a folder '''''U5_IOT_Sensors/Drivers/BSP'''''. Paste the copied folder there.<br>
  +
* Copy the '''''STM32CubeU5/Drivers/BSP/Components''''' folder. Paste it under '''''U5_IOT_Sensors/Drivers/BSP/Components'''''.<br>
  +
* Optional cleanup of working directory: as only the HTS221 temperature sensor is used, some other files and folders already copied to the working directory may be removed:<br>
  +
** Under '''''U5_IOT_Sensors\Drivers\BSP\Components''''', keep only the following folders:<br>[[File:Components_drivers.png|middle|100px]]<br>
  +
** Under  '''''U5_IOT_Sensors\Drivers\BSP\B-U585-IOT02''''', keep only the following files:<br>[[File:b_u585i_iot2 drivers.png|middle|150px]]<br>
  +
* Modify the the name of '''''b_u585i_iot02a_conf_template.h''''' file by '''''b_u585i_iot02a_conf.h'''''.<br>
  +
  +
====Support BSP in STM32CubeIDE workspace====
  +
After being copied, the added folders appear automatically in the STM32CubeIDE workspace:<br>
  +
[[File:Project_with_BSP_Drivers.png|middle|200px]]<br>
  +
<br>
  +
  +
====Update include paths====
  +
Update the paths to support new header files:<br>
  +
* Select the relevant project from the '''''Project Explorer''''' perspective:
  +
[[File:Project_name.png|middle|300px]]<br>
  +
* From '''''Project menu''''' or '''''File menu''''', go to '''''Properties > C/C++ Build > Settings > Tool Settings > MCU GCC Compiler > Include paths'''''<br>
  +
* Click on [[File:Add_icon.png|middle|30px]] to include the new paths <br>
  +
* Add '''''../Drivers/BSP/B-U585I-IOT02A''''' , '''''../Drivers/BSP/Components/hts221''''' and '''''../Drivers/BSP/Components/lps22hh''''' paths<br>
  +
The following screenshot summarizes the steps to follow:<br>
  +
[[File:Path1.png|middle|450px]]<br>
  +
  +
====Update source files====
  +
The only file to modify is '''''main.c''''', as follows:<br>
  +
* Include the header files: '''''b_u585i_iot02a.h''''', '''''b_u585i_iot02a_env_sensors.h''''' and '''''math.h'''''<br>
  +
<syntaxhighlight lang="c">/* USER CODE BEGIN Includes */
  +
#include "b_u585i_iot02a.h"
  +
#include "b_u585i_iot02a_env_sensors.h"
  +
#include <math.h>
  +
/* USER CODE END Includes */</syntaxhighlight>
  +
* Add private values to use for temperature values and displayed messages on the terminal:
  +
<syntaxhighlight lang="c">/* USER CODE BEGIN PV */
  +
/* Private variables -------------------------------------------------------*/
  +
float temp_value = 0;  // Measured temperature value
  +
char str_tmp[100] = ""; // Formatted message to display the temperature value
  +
uint8_t msg1[] = "****** Temperature values measurement ******\n\n\r";
  +
uint8_t msg2[] = "=====> Initialize Temperature sensor HTS221 \r\n";
  +
uint8_t msg3[] = "=====> Temperature sensor HTS221 initialized \r\n";
  +
/* USER CODE END PV */</syntaxhighlight>
  +
* Display messages on the terminal and initialize the HTS221 temperature sensor:
  +
<syntaxhighlight lang="c">/* USER CODE BEGIN 2 */
  +
HAL_UART_Transmit(&huart1,msg1,sizeof(msg1),1000);
  +
HAL_UART_Transmit(&huart1,msg2,sizeof(msg2),1000);
  +
BSP_ENV_SENSOR_Init(0, ENV_TEMPERATURE);
  +
BSP_ENV_SENSOR_Enable(0, ENV_TEMPERATURE);
  +
HAL_UART_Transmit(&huart1,msg3,sizeof(msg3),1000);
  +
/* USER CODE END 2 *//</syntaxhighlight>
  +
* In the '''''while (1)''''' loop, read the  temperature value, format it, and then display the message with the measured value on the terminal:
  +
<syntaxhighlight lang="c">/* USER CODE BEGIN 3 */
  +
BSP_ENV_SENSOR_GetValue(0, ENV_TEMPERATURE, &temp_value);
  +
int tmpInt1 = temp_value;
  +
float tmpFrac = temp_value - tmpInt1;
  +
int tmpInt2 = trunc(tmpFrac * 100);
  +
snprintf(str_tmp,100," TEMPERATURE = %d.%02d\n\r", tmpInt1, tmpInt2);
  +
HAL_UART_Transmit(&huart1,( uint8_t *)str_tmp,sizeof(str_tmp),1000);
  +
HAL_Delay(1000);
  +
/* USER CODE END 3 */</syntaxhighlight>
  +
{{info|Pay attention to make updates in the correct '''''USER CODE''''' section in order to avoid over-writing them with a new STM32CubeMX code generation.}}
  +
  +
====Compile and run the example====
  +
* Click on '''''Build''''' button [[File:Built_Button.png|20px|middle]] to compile the project<br>
  +
* Click on '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software<br>
  +
* Open a console emulator such as TeraTerm <ref name="TeraTerm" >[https://ttssh2.osdn.jp/index.html.en TeraTerm]</ref>. To configure the console baud rate, select data bits: 8 and click OK. Port name may differ on your PC<br>
  +
* STM32CubeIDE opens the '''''Debug perspective'''''. Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code<br>
  +
*  TeraTerm <ref name="TeraTerm" /> displays the initialization message preceding the measured temperature values:<br>
  +
[[File:tera_term_temp.png|middle|400px]]<br>
  +
{{Highlight|Now you are able to}}:
  +
* Build your own project to measure temperature values with the sensor embedded on the B-U585I-IOT02A<br>
 
* Add BSP components to an STM32CubeMx generated project<br>
 
* Add BSP components to an STM32CubeMx generated project<br>
 
* Extend the use of the board to sensors other than HTS221, to make environmental measurements.
 
* Extend the use of the board to sensors other than HTS221, to make environmental measurements.
Line 119: Line 226:
 
===Hardware description===
 
===Hardware description===
   
The [https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2] is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>
+
The X-NUCLEO-IKS01A2<ref>[https://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32-nucleo-expansion-boards/stm32-ode-sense-hw/x-nucleo-iks01a2.html X-NUCLEO-IKS01A2]</ref> is a motion MEMS and  environmental sensor expansion board for the STM32 64-pin Nucleo. It interfaces with  [https://www.st.com/en/evaluation-tools/nucleo-l476rg.html NUCLEO-L476RG] via I²C-bus pins.<br>
 
[[File:IKS_Sensor_Board.png|middle|450px]]<br>
 
[[File:IKS_Sensor_Board.png|middle|450px]]<br>
 
===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
 
===Example: Get temperature values using the HTS221 sensor and display them on terminal (Porting from AC6 to STM32CubeIDE)===
Line 151: Line 258:
 
[[File:Debug_Panel.png|middle|450px]]<br>
 
[[File:Debug_Panel.png|middle|450px]]<br>
 
* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br>  
 
* From the same window, click on '''''Debug''''', or click on the '''''Debug''''' button [[File:Debug_Button.png|20px|middle]] to run the software.<br>  
* Open a console emulator such as [https://ttssh2.osdn.jp/index.html.en TeraTerm]. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>
+
* Open a console emulator such as TeraTerm <ref name="TeraTerm" />. Configure the Console baud rate, select Data bits: 8 and click '''''OK'''''. The port name may differ on your PC.<br>
* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. [https://ttssh2.osdn.jp/index.html.en TeraTerm] displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>
+
* Click on the '''''Resume''''' button [[File:Resume_Button.png|20px|middle]] to execute the code. TeraTerm <ref name="TeraTerm" /> displays the measured values using the sensors available in the shield X-NUCLEO-IKS01A2.<br>
 
* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
 
* The values measured by the X-NUCLEO-IKS01A2 sensors  are displayed in the TeraTerm window as follows:
 
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>
 
[[File:TeraTerm_AllSensor.png|middle|350px]]<br>
  +
  +
==References==
  +
<references />
 
<br><br>
 
<br><br>
 
{|class="st-table" style="margin: auto; text-align:center"
 
{|class="st-table" style="margin: auto; text-align:center"
Line 168: Line 278:
   
 
<noinclude>
 
<noinclude>
[[Category:STM32 step by step]]
+
[[Category:Getting started with STM32 : STM32 step by step|50]]
 
</noinclude>
 
</noinclude>