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

Get event descripion

Change History

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

Basic Information

Function Description

Obtains the event description.

Privilege

ReadOnly

Command Information

Request Information

ByteData Field
NetFn30h
CMD94h
1:3Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
4Sub command, sub command=3Dh
5:6recordID, LSB first
The value of recordID starts from 0.

Response Information

ByteData Field
1Completion Code
2:4Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
5:6next recordID, LSB first, (return FFFFh if the record just
returned is the last record.)
7event count: number of events sent this time. The following is the event content.
8Indicates the sensor type of the first event.
9event reading type
10event data0
11event data1
12event data2
13alarm level
14Event data0 flag. The default value is 0.
15event data1 flag. The default value is 0.
1 indicates that event_data1 stores the sensor number.
16event data2 flag. The default value is 0.
17event desc length(N)
18:Nevent desc data
(18+N):1Indicates the sensor type of the second event.
......

Command Example

Obtain the event description.

Request:

bash
ipmicmd -k "0f 00 30 94 db 07 00 3d 00 00" smi 0

Response:

text
0f db 07 00 03 00 03 07 03 01 ff ff 02 00 00 00 0e 53 74 61 74 65 20 41 73 73 65 72 74 65 64 07 09 01 ff ff 01 00 00 00 0e 44 65 76 69 63 65 20 65 6e 61 62 6c 65 64 07 6f 0c ff ff 01 00 00 00 3a 43 6f 72 72 65 63 74 61 62 6c 65 20 6d 61 63 68 69 6e 65 20 63 68 65 63 6b 20 65 78 63 65 70 74 69 6f 6e 20 64 65 74 65 63 74 65 64 20 69 6e 20 74 68 65 20 78 38 36 20 4f 53

Back to Index