1Würth Elektronik Sensors SDK
2############################
3
4Origin:
5   WE Sensors SDK for STM32
6   https://github.com/WurthElektronik/Sensors-SDK_STM32
7
8Status:
9   Version v2.5
10
11Purpose:
12   Drivers for sensors by Würth Elektronik
13
14Description:
15   This package is an extract of the Sensors SDK for STM32 provided by Würth
16   Elektronik (examples and platform-specific files have been removed).
17
18   It contains standard drivers for WE sensors, offering a common, easy-to-use
19   interface for all sensor functions.
20
21   The driver is platform-independent, you only need to provide the following
22   low-level read and write functions:
23
24   /* Read a register's content */
25   extern int8_t WE_ReadReg(WE_sensorInterface_t *interface, uint8_t regAdr,
26                            uint16_t numBytesToRead, uint8_t *data);
27
28   /* Write a register's content */
29   extern int8_t WE_WriteReg(WE_sensorInterface_t *interface, uint8_t regAdr,
30                             uint16_t numBytesToWrite, uint8_t *data);
31
32   The functions need to be declared in a header file called "weplatform.h".
33
34Dependencies:
35   None.
36
37URL:
38   https://www.we-online.com/web/en/electronic_components/produkte_pb/service_pbs/wco/software/sensors_sdk.php
39
40commit:
41   Version v2.5
42
43Maintained-by:
44   Würth Elektronik eiSos GmbH & Co. KG
45
46License:
47   Apache-2.0
48
49License Link:
50   https://opensource.org/licenses/Apache-2.0
51