actually made initial commit work and added readme

This commit is contained in:
Bryan McShea
2024-01-16 00:48:39 -05:00
parent 42b47201fe
commit e5a6b6073f
4 changed files with 11 additions and 7 deletions

View File

@@ -160,7 +160,7 @@ pub fn draw_test(framebuffer: &mut FrameBuffer) {
.unwrap();
// Draw centered text.
let text = "embedded-graphics";
let text = "jugando";
Text::with_alignment(
text,
display.bounding_box().center() + Point::new(0, 15),

View File

@@ -3,10 +3,6 @@ use core::fmt::Arguments;
#[doc(hidden)]
pub fn _log(args: Arguments<'_>) {
use core::fmt::Write;
interrupts::without_interrupts(|| {
UART.lock().write_fmt(args).unwrap();
})
}
#[macro_export]