aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2022-10-31 08:50:56 -0400
committerBrian Cully <bjc@kublai.com>2022-10-31 08:50:56 -0400
commite32104c49a330adcfe4bd1998d52803f18f47a28 (patch)
tree5f31e5feec7c1d60ea6973d7e84b2d584db1bd57
parentfc0d9fe0e73348e5599bbc232c7dbf4f98d65ea5 (diff)
downloadluchie-e32104c49a330adcfe4bd1998d52803f18f47a28.tar.gz
luchie-e32104c49a330adcfe4bd1998d52803f18f47a28.zip
main: i like unicode
-rwxr-xr-xsrc/main.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index fdeb257..9797da5 100755
--- a/src/main.rs
+++ b/src/main.rs
@@ -64,7 +64,7 @@ fn main() -> ! {
log::init(tx);
- logln!("luchie starting…");
+ logln!("🐁 luchie starting…");
// cirque spi connections to spi1:
//
@@ -74,7 +74,7 @@ fn main() -> ! {
// pa6 - miso1
// pa7 - mosi1
- logln!("init trackpad");
+ logln!("👆 init trackpad");
// TODO: hook an interrupt up to the dr pin to trigger a poll.
//let dr_pin = gpiob.pb1.into_pull_down_input(&mut gpiob.crl);
let sck_pin = gpioa.pa5.into_alternate_push_pull(&mut gpioa.crl);
@@ -97,7 +97,7 @@ fn main() -> ! {
}
};
- logln!("init usb");
+ logln!("🖥️ init usb");
// BluePill board has a pull-up resistor on the D+ line.
// Pull the D+ pin down to send a RESET condition to the USB bus.
// This forced reset is needed only for development, without it host
@@ -124,7 +124,7 @@ fn main() -> ! {
.device_class(USB_CLASS_CDC)
.build();
- logln!("luchie started!");
+ logln!("🎉 luchie started!");
loop {
// logln!(".");
if let Ok(mut td) = cirque.poll(&mut spi) {