• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

WSEN_HIDS_2523020210001/11-Mar-2024-1,589835

WSEN_ITDS_2533020201601/11-Mar-2024-5,0842,567

WSEN_PADS_2511020213301/11-Mar-2024-2,6671,331

WSEN_PDUS_25131308XXX01/11-Mar-2024-295132

WSEN_TIDS_2521020222501/11-Mar-2024-667312

READMED11-Mar-20241.4 KiB5135

WeSensorsSDK.hD11-Mar-20243.2 KiB17650

README

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.2
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.2
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