mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
849 B
Plaintext
28 lines
849 B
Plaintext
# Copyright (c) 2020 Deutsches Zentrum für Luft- und Raumfahrt e.V. (DLR)
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
menu "HSC pressure and temperature sensor driver"
|
|
depends on USEMODULE_HSC
|
|
|
|
config HSC_I2C_ADDRESS
|
|
hex "I2C address of the HSC pressure and temperature sensor"
|
|
range 0x28 0x98
|
|
default 0x28
|
|
help
|
|
The HSC sensors can have one of the following I2C addresses:
|
|
0x28, 0x38, 0x48, 0x58, 0x68, 0x78, 0x88, and 0x98
|
|
|
|
config HSC_RANGE
|
|
int "Pressure range in millibar"
|
|
range 1 10000
|
|
default 40
|
|
help
|
|
The HSC sensors support a pressure range of 1.6 millibar to 10 bar,
|
|
depending on the model.
|
|
|
|
endmenu # HSC pressure and temperature sensor driver
|