Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions framework_lib/src/power.rs
Original file line number Diff line number Diff line change
Expand Up @@ -731,19 +731,19 @@ pub fn get_and_print_pd_info(ec: &CrosEc) {
port,
match port {
0 => "Right Back",
1 => "Right Front",
2 =>
1 =>
if fl16 {
"Left Middle"
"Right Middle"
} else {
"Left Front"
"Right Front"
},
3 =>
2 =>
if fl16 {
"Left Middle"
} else {
"Left Back"
"Left Front"
},
3 => "Left Back",
_ => "??",
}
);
Expand Down
Loading