summaryrefslogtreecommitdiffstats
path: root/otautil/ThermalUtil.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-03-27 23:12:26 +0200
committerTianjie Xu <xunchang@google.com>2017-03-28 20:28:47 +0200
commit3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf (patch)
tree8fe61071b191a287698efcbfebc51d1496710e4c /otautil/ThermalUtil.h
parentMerge "Revert "libbootloader_message: use different fstab paths for normal/recovery boot"" (diff)
downloadandroid_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar.gz
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar.bz2
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar.lz
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar.xz
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.tar.zst
android_bootable_recovery-3ee2b9db5a5c9977c6bd726d0e5d12f5ac07d5cf.zip
Diffstat (limited to '')
-rw-r--r--otautil/ThermalUtil.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/otautil/ThermalUtil.h b/otautil/ThermalUtil.h
new file mode 100644
index 000000000..43ab55940
--- /dev/null
+++ b/otautil/ThermalUtil.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * 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.
+ */
+
+#ifndef OTAUTIL_THERMALUTIL_H
+#define OTAUTIL_THERMALUTIL_H
+
+// We can find the temperature reported by all sensors in /sys/class/thermal/thermal_zone*/temp.
+// Their values are in millidegree Celsius; and we will log the maximum one.
+int GetMaxValueFromThermalZone();
+
+#endif // OTAUTIL_THERMALUTIL_H