[wip] Debugging display/boot problems
This commit is contained in:
parent
f39ff81922
commit
9765f3e081
17
src/main.rs
17
src/main.rs
|
@ -44,15 +44,28 @@ use platform::{
|
|||
// Kernel entry point
|
||||
// arch crate is responsible for calling this
|
||||
fn kmain() -> ! {
|
||||
let mut uart = MiniUart::new();
|
||||
uart.init();
|
||||
// let mut uart = MiniUart::new();
|
||||
// uart.init();
|
||||
// Crashes if uncommenting next line: vvv
|
||||
// writeln!(uart, "Hey there, mini uart talking!");
|
||||
// uart.puts("Hey there, mini uart talking!\n"); // shall this work though?
|
||||
// uart.write_str(); // shall this?
|
||||
|
||||
if let Some(mut display) = VC::init_fb(Size2d { x: 800, y: 600 } /*, &mut uart*/) {
|
||||
display.rect(10, 10, 250, 250, Color::rgb(32, 96, 64));
|
||||
display.draw_text(50, 50, "Hello there!", Color::rgb(128, 192, 255));
|
||||
|
||||
let mut buf = [0u8; 64];
|
||||
// Crashes if uncommenting next line: vvv
|
||||
// let s = write_to::show(&mut buf, format_args!("Display width {}", display.width));
|
||||
// So, some rust runtime things are breaking it, why?
|
||||
|
||||
// if s.is_err() {
|
||||
// display.draw_text(50, 150, "Error displaying", Color::red())
|
||||
// } else {
|
||||
// display.draw_text(50, 150, s.unwrap(), Color::white());
|
||||
// }
|
||||
|
||||
display.draw_text(150, 50, "RED", Color::red());
|
||||
display.draw_text(160, 60, "GREEN", Color::green());
|
||||
display.draw_text(170, 70, "BLUE", Color::blue());
|
||||
|
|
|
@ -44,7 +44,7 @@ pub struct Display {
|
|||
pitch: u32,
|
||||
max_x: u32,
|
||||
max_y: u32,
|
||||
width: u32,
|
||||
pub width: u32,
|
||||
height: u32,
|
||||
order: PixelOrder,
|
||||
}
|
||||
|
@ -121,19 +121,21 @@ impl Display {
|
|||
})
|
||||
}
|
||||
|
||||
#[inline(never)]
|
||||
#[inline]
|
||||
fn write_pixel_component(&self, x: u32, y: u32, chan: u16, c: u32) {
|
||||
unsafe {
|
||||
*(self.base as *mut u8).offset(
|
||||
(y * self.pitch
|
||||
+ x * 4//(self.depth / 8)
|
||||
+ self.color_component(chan)) as isize,
|
||||
// This is still a problem!
|
||||
// 1. Fix display output so we can print some values
|
||||
// 2. Print display info
|
||||
// 3. Go from there.
|
||||
(y * self.pitch + x * 4/*(self.depth / 8)*/ + self.color_component(chan)) as isize,
|
||||
) = c as u8;
|
||||
}
|
||||
}
|
||||
|
||||
/// Set a pixel value on display at given coordinates.
|
||||
#[inline(never)]
|
||||
#[inline]
|
||||
pub fn putpixel(&mut self, x: u32, y: u32, color: u32) {
|
||||
self.write_pixel_component(x, y, 0, color & 0xff);
|
||||
self.write_pixel_component(x, y, 1, (color >> 8) & 0xff);
|
||||
|
|
Loading…
Reference in New Issue