| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository contains examples of low-level platform-independent drivers for STMicroelectronics sensors. Sensor drivers and examples are written in C programming language.
If you are using STM32Cube packages, evaluate also the hardware abstractions STM32Cube-compatible drivers.
The STMicroelectronics naming convention for driver repositories is:
This repository contains two types of folders, identifiable using the following naming convention:
Another folder, named _resources, cannot be identified with the two types described above and contains other useful resources such as libraries and predefined device configurations used in some examples. In order to clone the complete content of this folder, use the command:
git clone --recursive https://github.com/STMicroelectronics/STMems_Standard_C_drivers
Every sensor driver folder contains:
Every demo project folder contains a single configuration file for the STM32CubeMX tool named _prj_XXXXXXX\XXXXXX.ioc where XXXXXXX is the name of the ST evaluation board.
Using the STM32CubeMX tool (configured with the related MCU package) and the .ioc file, it is possible to create a project in which you can easily run the examples available in each sensor driver folder.
The driver is platform-independent, you only need to define the two functions for read and write transactions from the sensor hardware bus (ie. SPI or I2C/I3C) and a platform dependent delay function, which is sometimes required by the underlying driver.
Note: A few devices integrate an extra bit in the communication protocol in order to enable multi read/write access, this bit must be managed in read and write functions defined by the user. Please refer to the read and write implementation in the reference examples.
Include in your project the driver files of the sensor (.h and .c) located in the xxxxxxx_STdC\driver folder of the corresponding product.
Define in your code the read and write as well as the delay functions that use the I2C, I3C or SPI platform driver like the following:
/** Please note that it is MANDATORY: return 0 -> no Error.**/
int32_t platform_write(void *handle, uint8_t Reg, const uint8_t *Bufp, uint16_t len);
int32_t platform_read(void *handle, uint8_t Reg, uint8_t *Bufp, uint16_t len);
void platform_delay(uint32_t ms);xxxxxxx_ctx_t dev_ctx; /** xxxxxxx is the used part number **/
dev_ctx.write_reg = platform_write;
dev_ctx.read_reg = platform_read;
dev_ctx.mdelay = platform_delay;dev_ctx.handle = &platform_handle;void platform_init(void);
- A standard C language compiler for the target MCU
- A C library for the target MCU and the desired interface (i.e. SPI, I2C, I3C)
Examples are written for STM32 Microcontrollers using the STM32CubeMX tool, but they can be used as a guideline for every platform.
When using the supported STMicroelectronics evaluation boards, the example file(.c) can be run without applying any modifications (as is).
In order to run that file, please follow these steps:
Please note that there might be additional extra steps. More info is available in each specific provided example platform:
If you are using STM32Cube packages, evaluate also the hardware-abstracted STM32Cube-compatible drivers specifically designed to be compatible with the STM32Cube. The complete list is provided here.
If a different MCU is used, please follow these steps:
Add the STMicroelectronics sensor driver to your project. Driver files are located in the sensor drivers folder atxxxxxxx_STdC\driver\xxxxxxx_reg.c(.h) where xxxxxxx identifies a sensor part number.
Add the example source file (.c) that interests you to your project. Example files are located in the sensor drivers folder at xxxxxxx_STdC\example where xxxxxxx identifies the sensor part number.
Comment all the definitions of the boards in section `/* STMicroelectronics evaluation boards definition */ in the selected example file(.c).
Add the call to the example function inside the while(1) loop in yourmain() function.
Modify in the selected example file (.c) the hardware-related functions:
Enjoy :-)
More information: http://www.st.com
Copyright (C) 2018-2025 STMicroelectronics
| Back | FazBrowse Home | New Git URL |