From 35b156b79c1314de79e4728ef313f5164ae2ec32 Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Thu, 27 Apr 2017 12:35:23 -0500 Subject: Fan monitor data This commit contains the data that will be used by the monitor code. The generated.cpp file will later be generated during the build by a python script. Change-Id: I4dc4552ae8e58cd27478416888dd3363e7c2bf3f Signed-off-by: Matt Spinler --- monitor/generated.cpp | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 monitor/generated.cpp (limited to 'monitor/generated.cpp') diff --git a/monitor/generated.cpp b/monitor/generated.cpp new file mode 100644 index 0000000..7578b92 --- /dev/null +++ b/monitor/generated.cpp @@ -0,0 +1,54 @@ +/** + * Copyright © 2017 IBM Corporation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#include "fan_defs.hpp" +#include "types.hpp" + +//This file will be replaced by a generated version in a later commit + +using namespace phosphor::fan::monitor; + +const std::vector fanDefinitions +{ + + FanDefinition{"/system/chassis/motherboard/fan0", + 15, + 15, + 1, + std::vector{ + SensorDefinition{"fan0", true} + }}, + FanDefinition{"/system/chassis/motherboard/fan1", + 15, + 15, + 1, + std::vector{ + SensorDefinition{"fan1", true} + }}, + FanDefinition{"/system/chassis/motherboard/fan2", + 15, + 15, + 1, + std::vector{ + SensorDefinition{"fan2", true} + }}, + FanDefinition{"/system/chassis/motherboard/fan3", + 15, + 15, + 1, + std::vector{ + SensorDefinition{"fan3", true} + }} +}; -- cgit v1.2.1