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

..--

WSEN_HIDS_2523020210001/03-Aug-2024-1,589835

WSEN_ISDS_2536030320001/03-Aug-2024-7,3273,753

WSEN_ITDS_2533020201601/03-Aug-2024-5,1292,567

WSEN_PADS_2511020213301/03-Aug-2024-2,6671,331

WSEN_PDUS_25131308XXX01/03-Aug-2024-295132

WSEN_TIDS_2521020222501/03-Aug-2024-667312

READMED03-Aug-20241.4 KiB5135

WeSensorsSDK.hD03-Aug-20243.2 KiB17751

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