tool: Add error for write locked

Add a new error for the case of trying to flash when security is enabled
and it is still locked and update the related docs.

Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
Tim Crawford
2024-03-22 14:48:56 -06:00
committed by Tim Crawford
parent 54d795480c
commit 70c8678a5f
6 changed files with 26 additions and 12 deletions

View File

@ -29,6 +29,8 @@ pub enum Error {
/// Encountered a hidapi::Error
#[cfg(feature = "hidapi")]
Hid(hidapi::HidError),
/// Writing to flash is disabled
WriteLocked,
}
#[cfg(feature = "std")]