File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
framework_lib/src/chromium_ec Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,7 @@ Input Deck
234
234
Chassis Closed: true
235
235
Input Deck State: On
236
236
Touchpad present: true
237
+ SLEEP# GPIO high: true
237
238
Positions:
238
239
Pos 0: GenericC
239
240
Pos 1: KeyboardA
Original file line number Diff line number Diff line change @@ -603,9 +603,11 @@ impl CrosEc {
603
603
pub fn print_fw16_inputdeck_status ( & self ) -> EcResult < ( ) > {
604
604
let intrusion = self . get_intrusion_status ( ) ?;
605
605
let status = self . get_input_deck_status ( ) ?;
606
+ let sleep_l = self . get_gpio ( "sleep_l" ) ?;
606
607
println ! ( "Chassis Closed: {}" , !intrusion. currently_open) ;
607
608
println ! ( "Input Deck State: {:?}" , status. state) ;
608
609
println ! ( "Touchpad present: {}" , status. touchpad_present) ;
610
+ println ! ( "SLEEP# GPIO high: {}" , sleep_l) ;
609
611
println ! ( "Positions:" ) ;
610
612
println ! ( " Pos 0: {:?}" , status. top_row. pos0) ;
611
613
println ! ( " Pos 1: {:?}" , status. top_row. pos1) ;
You can’t perform that action at this time.
0 commit comments