Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zephyr Firmware
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kestrel Collaboration
Kestrel Firmware
Zephyr Firmware
Commits
eb37fb41
Commit
eb37fb41
authored
Jul 23, 2021
by
Raptor Engineering Development Team
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix IPMI request / response sizes
parent
a497387f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
kestrel/src/ipmi_bt.h
kestrel/src/ipmi_bt.h
+2
-2
No files found.
kestrel/src/ipmi_bt.h
View file @
eb37fb41
...
...
@@ -174,7 +174,7 @@ typedef struct __attribute__((packed)) ipmi_request_message
uint8_t
netfn_lun
;
uint8_t
sequence
;
uint8_t
command
;
uint8_t
data
[
256
-
BASE_IPMI_REQUEST_LENGTH
];
uint8_t
data
[
256
-
(
BASE_IPMI_REQUEST_LENGTH
+
1
)
];
}
ipmi_request_message_t
;
typedef
struct
__attribute__
((
packed
))
ipmi_response_message
...
...
@@ -184,7 +184,7 @@ typedef struct __attribute__((packed)) ipmi_response_message
uint8_t
sequence
;
uint8_t
command
;
uint8_t
completion_code
;
uint8_t
data
[
256
-
BASE_IPMI_REQUEST_LENGTH
];
uint8_t
data
[
256
-
(
BASE_IPMI_RESPONSE_LENGTH
+
1
)
];
}
ipmi_response_message_t
;
/* All fields a little endian encoded. However the cputole* and le*tocpu
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment