srst.rs 758 B

12345678910111213141516171819202122232425
  1. //! Chapter 10. System Reset Extension (EID #0x53525354 "SRST").
  2. /// Extension ID for System Reset extension.
  3. pub const EID_SRST: usize = crate::eid_from_str("SRST") as _;
  4. pub use fid::*;
  5. /// Shutdown as reset type.
  6. pub const RESET_TYPE_SHUTDOWN: u32 = 0;
  7. /// Cold Reboot as reset type.
  8. pub const RESET_TYPE_COLD_REBOOT: u32 = 1;
  9. /// Warm Reboot as reset type.
  10. pub const RESET_TYPE_WARM_REBOOT: u32 = 2;
  11. /// No Reason as reset reason.
  12. pub const RESET_REASON_NO_REASON: u32 = 0;
  13. /// System Failure as reset reason.
  14. pub const RESET_REASON_SYSTEM_FAILURE: u32 = 1;
  15. /// Declared in §10.2.
  16. mod fid {
  17. /// Function ID to reset the system based on provided reset type and reason.
  18. ///
  19. /// Declared in §10.1.
  20. pub const SYSTEM_RESET: usize = 0;
  21. }