Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 22-Oct-2024 | - | ||||
README | H A D | 07-Mar-2021 | 607 | 21 | 13 | |
build_utils.cpp | H A D | 07-Mar-2021 | 1.8 KiB | 74 | 44 | |
build_utils.hpp | H A D | 07-Mar-2021 | 902 | 32 | 16 | |
builder.cpp | H A D | 17-Nov-2022 | 7.2 KiB | 200 | 149 | |
builder.hpp | H A D | 23-Jul-2022 | 440 | 23 | 13 | |
buildjson.cpp | H A D | 12-Jan-2022 | 3 KiB | 125 | 83 | |
buildjson.hpp | H A D | 07-Mar-2021 | 507 | 27 | 11 | |
host.cpp | H A D | 04-Sep-2024 | 2.7 KiB | 109 | 62 | |
host.hpp | H A D | 04-Sep-2024 | 1.8 KiB | 71 | 48 | |
manager.cpp | H A D | 07-Mar-2021 | 1.1 KiB | 43 | 18 | |
manager.hpp | H A D | 23-Jul-2022 | 1.6 KiB | 69 | 46 | |
pluggable.cpp | H A D | 07-Mar-2021 | 1,017 | 43 | 20 | |
pluggable.hpp | H A D | 04-Sep-2024 | 837 | 36 | 25 | |
sensor.hpp | H A D | 11-May-2023 | 1.4 KiB | 70 | 41 |
README
1# HostSensor 2 3A HostSensor object is one whose value is received from the host over IPMI (or 4some other mechanism). These sensors create dbus objects in the following 5namespace: 6 /xyz/openbmc_projects/extsensors/{namespace}/{sensorname} 7 8You can update them by setting the Value in Sensor.Value as a set or update 9property dbus call. 10 11# SensorManager 12 13There is a SensorManager object whose job is to hold all the sensors. 14 15# PluggableSensor 16 17The PluggableSensor is an object that receives a reader and writer and is 18therefore meant to be used for a variety of sensor types that aren't 19HostSensors. 20 21