Lines Matching refs:thermal
7 …thermal log feature. Thermal logs record the temperature of device components during usage. Howeve…
27 …penharmony/vendor_hihope/tree/master/rk3568) as an example to illustrate thermal log customization.
29 1. Create the `thermal` folder in the product directory [/vendor/hihope/rk3568](https://gitee.com/o…
31 …thermal log configuration folder](https://gitee.com/openharmony/drivers_peripheral/tree/master/the…
39 …thermal log parameter configuration folder](https://gitee.com/openharmony/drivers_peripheral/tree/…
43 ├── thermal.para
44 ├── thermal.para.dac
47 …drivers_peripheral/blob/master/thermal/interfaces/hdi_service/profile/thermal_hdi_config.xml) file…
61 | title | path | Path for obtaining the thermal zone name.|
63 | value | path | Path for obtaining the thermal zone temperature.|
66 <tracing interval="5000" width="20" outpath="/data/log/thermal-log">
68 <title path="sys/class/thermal/thermal_zone0/type"/>
69 <value path="sys/class/thermal/thermal_zone0/temp"/>
72 <title name="gpu-thermal"/>
73 <value path="sys/class/thermal/thermal_zone1/temp"/>
78 …thermal.para` and `thermal.para.dac` files by referring to the [thermal.para](https://gitee.com/op…
80 thermal.para:
82 persist.thermal.log.enable=true # Enable the thermal log function.
83 …persist.thermal.log.interval=5000 # Set the interval for recording temperature tracing logs, in …
84 … persist.thermal.log.width=20 # Set the width of the temperature tracing log, in characters.
87 thermal.para.dac:
89 persist.thermal.log.="power_host:power_host:600" # Configure access permissions.
92 …armony/drivers_peripheral/blob/master/thermal/interfaces/hdi_service/profile/BUILD.gn) file in the…
105 …thermal/etc/BUILD.gn) file in the default thermal log parameter configuration folder to pack the `…
110 ## Install thermal.para to /vendor/etc/param/thermal.para
112 ohos_prebuilt_etc("thermal.para") {
113 source = "thermal.para"
119 ohos_prebuilt_etc("thermal.para.dac") {
120 source = "thermal.para.dac"
128 ":thermal.para",
129 ":thermal.para.dac",
146 …"//vendor/hihope/rk3568/thermal/profile:thermal_hdf_config", // Add the configuration for buildin…
147 …"//vendor/hihope/rk3568/thermal/etc:param_files" // Add the configuration for buildin…
154 …In the preceding code, `//vendor/hihope/rk3568/thermal/` is the folder path, `profile` and `etc` a…
173 cd /data/log/thermal/
176 View thermal logs.
178 cat thermal.000.20170805-175756
181 The following is the reference thermal log after customization:
183 timestamp soc-thermal gpu-thermal
198 …thermal log configuration](https://gitee.com/openharmony/drivers_peripheral/tree/master/thermal/in…