-
-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add function that removes a printed character from the screen. #1458
Comments
You can do this by printing a backspace character (numeric value of 8). Here's a simple example, which I tested in both a VM on a Lenovo Thinkpad X1 Carbon: #![no_main]
#![no_std]
use uefi::prelude::*;
use uefi::print;
#[entry]
fn main() -> Status {
uefi::helpers::init().unwrap();
print!("abcdefghijklmnopqrstuvwxyz");
for _ in 0..26 {
// Pause briefly.
boot::stall(500_000);
// Print backspace character.
print!("\x08");
}
Status::SUCCESS
} This prints |
for me it does not work. |
Maybe my bios does not implement special characters like backspace. |
Checking a couple things:
|
I used a ASUS M509 DA laptop with a AMD RYZEN 5 procesor. |
Unfortunately I don't think there's anything we can do here. It sounds like the vendor's implementation just doesn't support this. As an alternative you could potentially use the |
No description provided.
The text was updated successfully, but these errors were encountered: