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
234234Chassis Closed: true
235235Input Deck State: On
236236Touchpad present: true
237+ SLEEP# GPIO high: true
237238Positions:
238239 Pos 0: GenericC
239240 Pos 1: KeyboardA
Original file line number Diff line number Diff line change @@ -603,9 +603,11 @@ impl CrosEc {
603603 pub fn print_fw16_inputdeck_status ( & self ) -> EcResult < ( ) > {
604604 let intrusion = self . get_intrusion_status ( ) ?;
605605 let status = self . get_input_deck_status ( ) ?;
606+ let sleep_l = self . get_gpio ( "sleep_l" ) ?;
606607 println ! ( "Chassis Closed: {}" , !intrusion. currently_open) ;
607608 println ! ( "Input Deck State: {:?}" , status. state) ;
608609 println ! ( "Touchpad present: {}" , status. touchpad_present) ;
610+ println ! ( "SLEEP# GPIO high: {}" , sleep_l) ;
609611 println ! ( "Positions:" ) ;
610612 println ! ( " Pos 0: {:?}" , status. top_row. pos0) ;
611613 println ! ( " Pos 1: {:?}" , status. top_row. pos1) ;
You can’t perform that action at this time.
0 commit comments