代码拉取完成,页面将自动刷新
package ipmi
import (
"fmt"
)
// 34.3 Write FRU Data Command
type WriteFRUDataRequest struct {
FRUDeviceID uint8
WriteOffset uint16
WriteData []byte
}
type WriteFRUDataResponse struct {
CountWritten uint8
}
func (req *WriteFRUDataRequest) Command() Command {
return CommandWriteFRUData
}
func (req *WriteFRUDataRequest) Pack() []byte {
out := make([]byte, 4)
packUint8(req.FRUDeviceID, out, 0)
packUint16L(req.WriteOffset, out, 1)
packBytes(req.WriteData, out, 3)
return out
}
func (res *WriteFRUDataResponse) Unpack(msg []byte) error {
if len(msg) < 1 {
return ErrUnpackedDataTooShortWith(len(msg), 1)
}
res.CountWritten, _, _ = unpackUint8(msg, 0)
return nil
}
func (r *WriteFRUDataResponse) CompletionCodes() map[uint8]string {
return map[uint8]string{
0x80: "write-protected offset",
0x81: "FRU device busy",
}
}
func (res *WriteFRUDataResponse) Format() string {
return fmt.Sprintf(`Count written : %d`, res.CountWritten)
}
// The command writes the specified byte or word to the FRU Inventory Info area. This is a low level direct interface to a non-volatile storage area. This means that the interface does not interpret or check any semantics or formatting for the data being written.
func (c *Client) WriteFRUData(fruDeviceID uint8, writeOffset uint16, writeData []byte) (response *WriteFRUDataResponse, err error) {
request := &WriteFRUDataRequest{
FRUDeviceID: fruDeviceID,
WriteOffset: writeOffset,
WriteData: writeData,
}
response = &WriteFRUDataResponse{}
err = c.Exchange(request, response)
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。