Skip to content
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

Closed
Motanescu1357 opened this issue Nov 3, 2024 · 6 comments
Closed

Comments

@Motanescu1357
Copy link

No description provided.

@nicholasbishop
Copy link
Member

nicholasbishop commented Nov 3, 2024

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 abcdefghijklmnopqrstuvwxyz, then slowly removes characters one at a time.

@Motanescu1357
Copy link
Author

for me it does not work.

@Motanescu1357
Copy link
Author

Motanescu1357 commented Nov 4, 2024

Maybe my bios does not implement special characters like backspace.

@nicholasbishop
Copy link
Member

Checking a couple things:

  1. What specific machine are you testing on?
  2. Did you test exactly the code above, or some variation? (I want to make sure we're both testing the exact same thing.)

@Motanescu1357
Copy link
Author

Motanescu1357 commented Nov 4, 2024

I used a ASUS M509 DA laptop with a AMD RYZEN 5 procesor.
I tested the same code.

@nicholasbishop
Copy link
Member

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 GraphicsOutput protocol to fully replace the console output with manually-drawn text.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants