Get Sensor Threshold
更新时间: 2026/08/06
在Gitcode上查看源码

Get Sensor Threshold

Change History

openUBMC VersionRevision DateDescription
25.062025/06/26Initial draft: add command details

Basic Information

Function Description

This API is used to obtain the sensor threshold.

Privilege

ReadOnly

Command Information

Request Information

ByteData Field
NetFnS/E 04h
CMD27h
1sensor number (FFh=reserved)

Response Information

ByteData Field
1Completion Code
2[7:6]-reserved. Return as 00b
Readable thresholds: This bit mask indicates which thresholds are readable
[5]-1b=upper non-recoverable threshold
[4]-1b=upper critical threshold
[3]-1b=upper non-critical threshold
[2]-1b=lower non-recoverable threshold
[1]-1b=lower critical threshold
[0]-1b=lower non-critical threshold
3lower non-critical threshold (if present, ignore on read otherwise)
4lower critical threshold (if present, ignore on read otherwise)
5lower non-recoverable threshold (if present, ignore on read otherwise)
6upper non-critical threshold (if present, ignore on read otherwise)
7upper critical (if present, ignore on read otherwise)
8upper non-recoverable (if present, ignore on read otherwise)

Command Example

Request:

bash
ipmicmd -k "0f 00 04 27 01" smi 0

Response:

text
0f 1a 00 02 00 2a 37 00

Back to Index