improve logging
This commit was merged in pull request #44.
This commit is contained in:
+4
-2
@@ -52,7 +52,7 @@ esp_bootloader_esp_idf::esp_app_desc!();
|
||||
)]
|
||||
#[esp_rtos::main]
|
||||
async fn main(spawner: Spawner) {
|
||||
esp_println::logger::init_logger_from_env();
|
||||
creaturedex::logging::init();
|
||||
|
||||
let config = esp_hal::Config::default().with_cpu_clock(CpuClock::max());
|
||||
let peripherals = esp_hal::init(config);
|
||||
@@ -94,7 +94,9 @@ async fn main(spawner: Spawner) {
|
||||
let h = EXAMPLE[HEART];
|
||||
let e = EXAMPLE[EMPTY];
|
||||
let b = EXAMPLE[BOX];
|
||||
if let Err(e) = lcd.write(&alloc::format!("Custom symbols: {h}{e}{b} And more stuff to wrap and cut off please.")) {
|
||||
if let Err(e) = lcd.write(&alloc::format!(
|
||||
"Custom symbols: {h}{e}{b} And more stuff to wrap and cut off please."
|
||||
)) {
|
||||
log::error!(
|
||||
"Tertiary LCD startup text write failed over shared I2C bus; check the shared bus, wiring, and device responses: {e}"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user