openMMC
Open Source Modular MMC for AMCs
Loading...
Searching...
No Matches
sensors.h
Go to the documentation of this file.
1/*
2 * openMMC -- Open Source modular IPM Controller firmware
3 *
4 * Copyright (C) 2015-2016 Henrique Silva <henrique.silva@lnls.br>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
20 */
21
36#ifndef SENSORS_H_
37#define SENSORS_H_
38
39#include "port.h"
40
41#if defined(MODULE_INA220_VOLTAGE) || defined(MODULE_INA220_CURRENT)
42#include "ina220.h"
43#endif
44
45#if defined(MODULE_INA3221_VOLTAGE) || defined(MODULE_INA3221_CURRENT)
46#include "ina3221.h"
47#endif
48
49#ifdef MODULE_HOTSWAP
50#include "hotswap.h"
51#endif
52
53#ifdef MODULE_LM75
54#include "lm75.h"
55#endif
56
57#ifdef MODULE_MAX6642
58#include "max6642.h"
59#endif
60
61#endif
Hotswap sensors definitions.
Definitions for INA220 Current/Voltage/Power Sensor.
Definitions for INA3221 Current/Voltage Sensor.
Definitions for LM75 I2C Temperature Sensor.
Definitions for MAX6642 I2C Temperature Sensor.
Port layer (includes all portable functions headers)