Parse HFSTS1 to get operation mode (bits 16-19)
(&self)
| 259 | |
| 260 | /// Parse HFSTS1 to get operation mode (bits 16-19) |
| 261 | pub fn operation_mode(&self) -> MeOperationMode { |
| 262 | MeOperationMode::from(((self.hfsts1 >> 16) & 0x0F) as u8) |
| 263 | } |
| 264 | |
| 265 | /// Parse bootguard status for CSME11-17 (from HFSTS6) |
| 266 | pub fn bootguard_csme11(&self) -> BootguardStatus { |