reset
Resets the input device hardware.
Function parameters
Parameters
- self:*SimpleTextInputEx
- verify:bool
Character input devices, e.g.
Types
- SimpleTextInputEx
- Character input devices, e.g.
Source
Implementation
pub fn reset(self: *SimpleTextInputEx, verify: bool) ResetError!void {
switch (self._reset(self, verify)) {
.success => {},
.device_error => return Error.DeviceError,
else => |status| return uefi.unexpectedStatus(status),
}
}