-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove font - Change data type for IAQ label to float without decimal places ADPS9306: - Enable ADPS9306 driver for hardware revision 3 - Move "DT_DRV_COMPAT" in ADPS9306 source file - Fix typos in ADPS9306 driver - Smaller layout changes BMP581: - Enable BMP581 driver for all hardware revisions - Change BMP581 implementation to sensors subsystem - Remove the old BMP581 driver - Change path for BMP5 sensor API module to /ext_drivers Sensors: - Put directory for BMP5 sensor API to gitignore to prevent a listing in git - Add CMakeLists for sensors - Add ZBUS for light sensor - Add ZBUS for environment sensor - Connect sensor ZBUS events with period event - Reorganize configuration options from project config to specific board configuration files Signed-off-by: Daniel Kampert <[email protected]>
- Loading branch information
Showing
39 changed files
with
688 additions
and
581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
if SENSOR | ||
rsource "apds9306/Kconfig" | ||
rsource "bme68x_iaq/Kconfig" | ||
rsource "bmp581/Kconfig" | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright (c) 2023, Daniel Kampert | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
# TODO: Doesn´t work with CMakeList.txt of the drivers directory -> Check it | ||
#zephyr_library() | ||
|
||
zephyr_library_include_directories(${PROJECT_SOURCE_DIR}/src/ext_drivers/BMP5-Sensor-API) | ||
zephyr_sources(${PROJECT_SOURCE_DIR}/src/ext_drivers/BMP5-Sensor-API/bmp5.c) | ||
|
||
zephyr_sources(bmp581.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# APDS-9306 light sensor configuration options. | ||
|
||
# Copyright (c) 2023, Daniel Kampert | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
menuconfig BMP581 | ||
bool "BMP581 Sensor" | ||
default y | ||
select I2C | ||
help | ||
Enable the driver for the BMP581 pressure sensor. | ||
|
||
if BMP581 | ||
|
||
endif |
Oops, something went wrong.