Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d82401a17
|
||
|
|
403bfa4dc4
|
||
|
|
898ecd87e9
|
||
|
|
0f4d19f37b
|
||
|
|
6181fc5e2b
|
||
|
|
585dfec14b
|
||
|
|
fb77f9facb
|
+17
-11
@@ -1,15 +1,19 @@
|
||||
[package]
|
||||
edition = "2024"
|
||||
name = "creaturedex"
|
||||
edition = "2024"
|
||||
name = "creaturedex"
|
||||
rust-version = "1.88"
|
||||
version = "0.1.0"
|
||||
version = "0.1.0"
|
||||
|
||||
[[bin]]
|
||||
name = "creaturedex"
|
||||
path = "./src/bin/main.rs"
|
||||
|
||||
[dependencies]
|
||||
esp-hal = { version = "~1.1.0", features = ["esp32s3", "log-04", "unstable"] } #, "embassy", "embassy-time-timg0", "embassy-executor-thread"] }
|
||||
esp-hal = { version = "~1.1.0", features = [
|
||||
"esp32s3",
|
||||
"log-04",
|
||||
"unstable",
|
||||
] } #, "embassy", "embassy-time-timg0", "embassy-executor-thread"] }
|
||||
|
||||
esp-rtos = { version = "0.3.0", features = [
|
||||
"embassy",
|
||||
@@ -20,12 +24,11 @@ esp-rtos = { version = "0.3.0", features = [
|
||||
] }
|
||||
|
||||
esp-bootloader-esp-idf = { version = "0.5.0", features = ["esp32s3", "log-04"] }
|
||||
log = "0.4.27"
|
||||
log = "0.4.27"
|
||||
|
||||
critical-section = "1.2.0"
|
||||
embedded-io = "0.7.1"
|
||||
embassy-executor = { version = "0.10.0", features = [
|
||||
] }
|
||||
embassy-executor = { version = "0.10.0", features = [] }
|
||||
embassy-time = { version = "0.5.1", default-features = false }
|
||||
embassy-futures = "0.1.2"
|
||||
esp-alloc = "0.10.0"
|
||||
@@ -48,6 +51,9 @@ embedded-hal-async = "1.0.0"
|
||||
i2c-character-display = "0.5.1"
|
||||
ch1115 = { version = "0.1.2", features = ["graphics"] }
|
||||
|
||||
[build-dependencies]
|
||||
log = "0.4.27"
|
||||
|
||||
|
||||
[patch.crates-io]
|
||||
ch1115 = { git = "https://github.com/ede1998/ch1115.git", rev = "2d3a3ba38050efe012e6a210afe3e125ec280c37" }
|
||||
@@ -64,10 +70,10 @@ opt-level = 3
|
||||
debug = 0
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1 # LLVM can perform better optimizations using a single thread
|
||||
debug = 2 # prefer slower builds but better debugging experience
|
||||
lto = 'fat'
|
||||
opt-level = 's'
|
||||
codegen-units = 1 # LLVM can perform better optimizations using a single thread
|
||||
debug = 2 # prefer slower builds but better debugging experience
|
||||
lto = 'fat'
|
||||
opt-level = 's'
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
fn main() {
|
||||
generate_filter_snippet();
|
||||
linker_be_nice();
|
||||
// make sure linkall.x is the last linker script (otherwise might cause problems with flip-link)
|
||||
println!("cargo:rustc-link-arg=-Tlinkall.x");
|
||||
@@ -68,3 +69,165 @@ fn linker_be_nice() {
|
||||
std::env::current_exe().unwrap().display()
|
||||
);
|
||||
}
|
||||
|
||||
// Taken over from esp_println because impossible to just extend their existing env logger.
|
||||
// https://github.com/esp-rs/esp-hal/blob/8fa6d7e985e724d6ad998e34307429b0920da370/esp-println/build.rs
|
||||
fn generate_filter_snippet() {
|
||||
use log::LevelFilter;
|
||||
use std::{env, path::Path};
|
||||
|
||||
let out_dir = env::var_os("OUT_DIR").unwrap();
|
||||
let dest_path = Path::new(&out_dir).join("log_filter.rs");
|
||||
|
||||
let filter = env::var("ESP_LOG");
|
||||
let snippet = if let Ok(filter) = filter {
|
||||
let res = parse_spec(&filter);
|
||||
|
||||
if !res.errors.is_empty() {
|
||||
panic!("Error parsing `ESP_LOG`: {:?}", res.errors);
|
||||
} else {
|
||||
let max = res
|
||||
.directives
|
||||
.iter()
|
||||
.map(|v| v.level)
|
||||
.max()
|
||||
.unwrap_or(LevelFilter::Off);
|
||||
let max = match max {
|
||||
LevelFilter::Off => "Off",
|
||||
LevelFilter::Error => "Error",
|
||||
LevelFilter::Warn => "Warn",
|
||||
LevelFilter::Info => "Info",
|
||||
LevelFilter::Debug => "Debug",
|
||||
LevelFilter::Trace => "Trace",
|
||||
};
|
||||
|
||||
let mut snippet = String::new();
|
||||
|
||||
snippet.push_str(&format!(
|
||||
"pub(crate) const FILTER_MAX: log::LevelFilter = log::LevelFilter::{max};"
|
||||
));
|
||||
|
||||
snippet
|
||||
.push_str("pub(crate) fn is_enabled(level: log::Level, _target: &str) -> bool {");
|
||||
|
||||
let mut global_level = None;
|
||||
for directive in res.directives {
|
||||
let level = match directive.level {
|
||||
LevelFilter::Off => "Off",
|
||||
LevelFilter::Error => "Error",
|
||||
LevelFilter::Warn => "Warn",
|
||||
LevelFilter::Info => "Info",
|
||||
LevelFilter::Debug => "Debug",
|
||||
LevelFilter::Trace => "Trace",
|
||||
};
|
||||
|
||||
if let Some(name) = directive.name {
|
||||
// If a prefix matches, don't continue to the next directive
|
||||
snippet.push_str(&format!(
|
||||
"if _target.starts_with(\"{name}\") {{ return level <= log::LevelFilter::{level}; }}"
|
||||
));
|
||||
} else {
|
||||
if global_level.is_some() {
|
||||
panic!("Multiple global log levels specified in `ESP_LOG`");
|
||||
}
|
||||
global_level = Some(level);
|
||||
}
|
||||
}
|
||||
|
||||
// Place the fallback rule at the end
|
||||
if let Some(level) = global_level {
|
||||
snippet.push_str(&format!("level <= log::LevelFilter::{level}"));
|
||||
} else {
|
||||
snippet.push_str(" false");
|
||||
}
|
||||
snippet.push('}');
|
||||
snippet
|
||||
}
|
||||
} else {
|
||||
"pub(crate) const FILTER_MAX: log::LevelFilter = log::LevelFilter::Off; pub(crate) fn is_enabled(_level: log::Level, _target: &str) -> bool { true }".to_string()
|
||||
};
|
||||
|
||||
std::fs::write(&dest_path, &snippet).unwrap();
|
||||
}
|
||||
|
||||
#[derive(Default, Debug)]
|
||||
struct ParseResult {
|
||||
pub(crate) directives: Vec<Directive>,
|
||||
pub(crate) errors: Vec<String>,
|
||||
}
|
||||
|
||||
impl ParseResult {
|
||||
fn add_directive(&mut self, directive: Directive) {
|
||||
self.directives.push(directive);
|
||||
}
|
||||
|
||||
fn add_error(&mut self, message: String) {
|
||||
self.errors.push(message);
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Directive {
|
||||
pub(crate) name: Option<String>,
|
||||
pub(crate) level: log::LevelFilter,
|
||||
}
|
||||
|
||||
/// Parse a logging specification string (e.g:
|
||||
/// `crate1,crate2::mod3,crate3::x=error/foo`) and return a vector with log
|
||||
/// directives.
|
||||
fn parse_spec(spec: &str) -> ParseResult {
|
||||
use log::LevelFilter;
|
||||
|
||||
let mut result = ParseResult::default();
|
||||
|
||||
let mut parts = spec.split('/');
|
||||
let mods = parts.next();
|
||||
|
||||
if let Some(m) = mods {
|
||||
for s in m.split(',').map(|ss| ss.trim()) {
|
||||
if s.is_empty() {
|
||||
continue;
|
||||
}
|
||||
let mut parts = s.split('=');
|
||||
let (log_level, name) =
|
||||
match (parts.next(), parts.next().map(|s| s.trim()), parts.next()) {
|
||||
(Some(part0), None, None) => {
|
||||
// if the single argument is a log-level string or number,
|
||||
// treat that as a global fallback
|
||||
match part0.parse() {
|
||||
Ok(num) => (num, None),
|
||||
Err(_) => (LevelFilter::max(), Some(part0)),
|
||||
}
|
||||
}
|
||||
(Some(part0), Some(""), None) => (LevelFilter::max(), Some(part0)),
|
||||
(Some(part0), Some(part1), None) => {
|
||||
if let Ok(num) = part1.parse() {
|
||||
(num, Some(part0))
|
||||
} else {
|
||||
result.add_error(format!("invalid logging spec '{part1}'"));
|
||||
continue;
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
result.add_error(format!("invalid logging spec '{s}'"));
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
result.add_directive(Directive {
|
||||
name: name.map(|s| s.to_owned()),
|
||||
level: log_level,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Sort by length so that the most specific prefixes come first
|
||||
result
|
||||
.directives
|
||||
.sort_by(|a, b| match (a.name.as_ref(), b.name.as_ref()) {
|
||||
(Some(a), Some(b)) => b.len().cmp(&a.len()),
|
||||
_ => std::cmp::Ordering::Equal,
|
||||
});
|
||||
|
||||
result
|
||||
}
|
||||
|
||||
+252
-31
@@ -1,45 +1,266 @@
|
||||
include <BOSL2/std.scad>
|
||||
|
||||
BASE_MODEL_SCALE = [1.1, 1, 1.1];
|
||||
BASE_MODEL_TRANSLATE = [-0.4, 0, 16.978];
|
||||
EPS = 0.01;
|
||||
$fn = 50;
|
||||
|
||||
module main_display(){
|
||||
// Outer dimensions, height currently unknown
|
||||
cube([55.04, 89.3, 10]);
|
||||
module pin_header(cols = 4, rows = 1, anchor = BOTTOM, spin = 0, orient = UP) {
|
||||
// Standard pin header dimensions (in mm)
|
||||
base_height = 2.54; // Height of the plastic base
|
||||
pin_width = 0.64; // Width/thickness of the square pin
|
||||
pin_length = 6.0; // Length of pin sticking up
|
||||
pitch = 2.54;
|
||||
|
||||
// 1. The Plastic Base is the Parent
|
||||
// It directly receives your anchor, spin, and orient arguments.
|
||||
color("darkgrey")
|
||||
cuboid([cols * pitch, rows * pitch, base_height], anchor=anchor, spin=spin, orient=orient) {
|
||||
|
||||
// 2. Metal Pins are the Children
|
||||
// Placed relative to the center of the plastic base
|
||||
color("silver")
|
||||
xcopies(spacing=pitch, n=cols) {
|
||||
ycopies(spacing=pitch, n=rows) {
|
||||
up(base_height / 2)
|
||||
cuboid([pin_width, pin_width, pin_length], anchor=BOTTOM);
|
||||
}
|
||||
}
|
||||
|
||||
// Allows attaching other objects to this header if needed
|
||||
children();
|
||||
}
|
||||
}
|
||||
|
||||
module pad(){
|
||||
// A button has 4.2 x 6 mm -> At least ~20x20 are required for the PCB
|
||||
cube([20, 20, 10]);
|
||||
module main_display(pin_header = false) {
|
||||
// Outer dimensions
|
||||
width = 55.04;
|
||||
length = 89.35;
|
||||
height = 2.7;
|
||||
|
||||
display_height = 3;
|
||||
display_length = 77.6;
|
||||
display_inset = 5.7;
|
||||
|
||||
sd_width = 26.6;
|
||||
sd_height = 3;
|
||||
sd_length = 16.6;
|
||||
sd_inset = 29.4;
|
||||
|
||||
hole_diameter = 3;
|
||||
hole_inset = 1.5;
|
||||
|
||||
difference() {
|
||||
cuboid([length, width, height]) {
|
||||
position(TOP + RIGHT)
|
||||
left(display_inset)
|
||||
color("black")
|
||||
cuboid([display_length, width, display_height], anchor=BOTTOM + RIGHT);
|
||||
|
||||
position(BOTTOM + RIGHT + FRONT)
|
||||
left(sd_inset)
|
||||
cuboid([sd_width, sd_length, sd_height], anchor=TOP + RIGHT + FRONT);
|
||||
|
||||
position(BOTTOM + LEFT)
|
||||
xrot(180)
|
||||
pin_header(14, spin=90, anchor=BOTTOM + BACK);
|
||||
}
|
||||
|
||||
xcopies(length - (2 * hole_inset) - hole_diameter) {
|
||||
ycopies(width - (2 * hole_inset) - hole_diameter) {
|
||||
zcyl(d=hole_diameter, h=height + EPS);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module small_display_below_main()
|
||||
{
|
||||
// https://de.aliexpress.com/item/1005003753680706.html
|
||||
cube([45.8, 20, 11.3]);
|
||||
// old i2c variant:
|
||||
//cube([43.5, 19.44, 4.5]);
|
||||
|
||||
// initial dimension ideas
|
||||
// cube([38,16,4]);
|
||||
// translate([150,0,0]) cube([22,5.5,4]);
|
||||
module pad() {
|
||||
// A button has 4.2 x 6 mm -> At least ~20x20 are required for the PCB
|
||||
cube([20, 20, 10]);
|
||||
}
|
||||
|
||||
module tertiary_display()
|
||||
{
|
||||
// https://de.aliexpress.com/item/1005006034531826.html
|
||||
cube([80, 36, 10]);
|
||||
module secondary_display(pin_header = false) {
|
||||
// https://de.aliexpress.com/item/1005003753680706.html
|
||||
length = 45.8;
|
||||
width = 20;
|
||||
height = 3.7;
|
||||
|
||||
hole_diameter = 2;
|
||||
hole_inset = 1.5;
|
||||
|
||||
difference() {
|
||||
cuboid([length, width, height]) {
|
||||
if (pin_header)
|
||||
position(LEFT + TOP)
|
||||
pin_header(7, spin=90, anchor=BACK + BOTTOM);
|
||||
}
|
||||
|
||||
right(length / 2 - hole_inset) {
|
||||
ycopies(width - (2 * hole_inset) - hole_diameter) {
|
||||
zcyl(d=hole_diameter, h=height + EPS, anchor=RIGHT);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module battery() {
|
||||
// 18650
|
||||
rotate([0,90,0]) cylinder(d=18, h=65);
|
||||
module battery(anchor = BOTTOM) {
|
||||
// 18650
|
||||
rotate([0, 90, 0]) cylinder(d=18, h=65, anchor=anchor);
|
||||
}
|
||||
|
||||
module microcontroller() {
|
||||
// width 32 including USB-C port
|
||||
length = 91.5;
|
||||
height = 20;
|
||||
battery_length = 65;
|
||||
delta = length - battery_length;
|
||||
cube([length, 32, height]);
|
||||
translate([delta / 2,16, 15]) battery();
|
||||
/// USB-C port and switch not 100% dimensionally accurate, take care!
|
||||
module micro_controller(battery_holder = false, battery = false) {
|
||||
pcb_length = 91.5;
|
||||
pcb_height = 6.5; // including components, highest point: jst connector, followed by uC
|
||||
pcb_height_no_components = 1.1;
|
||||
pcb_width = 28.8;
|
||||
|
||||
hole_diameter = 2.5;
|
||||
hole_inset = 1;
|
||||
usb_protrusion = 1.7;
|
||||
usb_width = 9;
|
||||
usb_inset_from_pcb_end = 5;
|
||||
power_switch_protrusion = 2.1;
|
||||
power_switch_inset_from_pcb_end = 8.1;
|
||||
power_switch_width = 4;
|
||||
|
||||
battery_holder_height = 15;
|
||||
battery_holder_width = 21;
|
||||
battery_holder_length = 77.3;
|
||||
|
||||
battery_length = 65;
|
||||
battery_protrusion = 4.5;
|
||||
|
||||
difference() {
|
||||
cuboid([pcb_length, pcb_width, pcb_height], rounding=2, edges="Z") {
|
||||
if (battery_holder)
|
||||
position(TOP)
|
||||
cube([battery_holder_length, battery_holder_width, battery_holder_height], anchor=BOTTOM + CENTER) {
|
||||
if (battery)
|
||||
position(TOP)
|
||||
up(battery_protrusion)
|
||||
battery(anchor=CENTER + LEFT);
|
||||
}
|
||||
position(RIGHT + BOTTOM) {
|
||||
position(FRONT)
|
||||
left(usb_inset_from_pcb_end)
|
||||
cube([usb_width, usb_protrusion, pcb_height - pcb_height_no_components], orient=FRONT, anchor=RIGHT + BOTTOM + FRONT);
|
||||
position(BACK)
|
||||
left(power_switch_inset_from_pcb_end)
|
||||
cube([power_switch_width, power_switch_protrusion, pcb_height - pcb_height_no_components], orient=FRONT, anchor=RIGHT + TOP + FRONT);
|
||||
}
|
||||
}
|
||||
|
||||
xcopies(pcb_length - (2 * hole_inset) - hole_diameter) {
|
||||
ycopies(pcb_width - (2 * hole_inset) - hole_diameter) {
|
||||
cyl(d=hole_diameter, h=pcb_height + EPS, orient=UP);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module nfc(pin_header = true) {
|
||||
length = 43;
|
||||
width = 40.5;
|
||||
height = 4;
|
||||
|
||||
pin_protrusion = 2.2;
|
||||
|
||||
hole_diameter = 3;
|
||||
hole_inset = 6;
|
||||
|
||||
x_span = length - (2 * hole_inset) - hole_diameter;
|
||||
y_span = width - (2 * hole_inset) - hole_diameter;
|
||||
|
||||
color("red")
|
||||
difference() {
|
||||
cuboid([length, width, height], rounding=2, edges="Z") {
|
||||
// pin header is lower than highest other component -> in the cube.
|
||||
if (pin_header)
|
||||
right(6 - pin_protrusion) // ugly: 6mm is the pin height
|
||||
position(LEFT + TOP)
|
||||
yrot(-90)
|
||||
pin_header(7, spin=90, anchor=FRONT + TOP);
|
||||
}
|
||||
|
||||
move_copies(
|
||||
[
|
||||
[x_span / 2, -y_span / 2], // Bottom-Left corner
|
||||
[-x_span / 2, y_span / 2], // Top-Right corner
|
||||
]
|
||||
) {
|
||||
zcyl(d=hole_diameter, h=height + EPS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module tertiary_display(pin_headers = true) {
|
||||
// https://de.aliexpress.com/item/1005006034531826.html
|
||||
|
||||
pcb_length = 81;
|
||||
pcb_width = 36.1;
|
||||
pcb_height = 3.7;
|
||||
|
||||
hole_diameter = 2.8;
|
||||
hole_inset = 1;
|
||||
|
||||
display_length = 71.2;
|
||||
display_width = 24.4;
|
||||
display_height = 7;
|
||||
|
||||
piggy_length = 41.8;
|
||||
piggy_width = 19.1;
|
||||
piggy_height = 8.5 - 2.6;
|
||||
piggy_inset = 6.2;
|
||||
|
||||
jumper_protrusion = 6.6;
|
||||
pin_protrusion = 6.2;
|
||||
|
||||
color("green")
|
||||
difference() {
|
||||
cuboid([pcb_length, pcb_width, pcb_height]) {
|
||||
position(TOP)
|
||||
cuboid([display_length, display_width, display_height], anchor=BOTTOM);
|
||||
}
|
||||
|
||||
xcopies(pcb_length - (2 * hole_inset) - hole_diameter) {
|
||||
ycopies(pcb_width - (2 * hole_inset) - hole_diameter) {
|
||||
zcyl(d=hole_diameter, h=pcb_height + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Replaces position(BOTTOM + BACK + LEFT) so that difference cannot mess with color.
|
||||
translate([-pcb_length / 2 + piggy_inset, pcb_width / 2, -pcb_height / 2]) {
|
||||
color("black")
|
||||
cuboid([piggy_length, piggy_width, piggy_height], anchor=TOP + BACK + LEFT);
|
||||
|
||||
if (pin_headers) {
|
||||
// Replaces position(LEFT + BOTTOM) so that parent child cannot mess with color.
|
||||
translate([0, -piggy_width / 2, -piggy_height])
|
||||
right(6 - pin_protrusion)
|
||||
yrot(-90)
|
||||
pin_header(4, spin=90, anchor=BACK + TOP);
|
||||
|
||||
// Replaces position(RIGHT + BOTTOM) so that parent child cannot mess with color.
|
||||
translate([piggy_length, -piggy_width / 2, -piggy_height])
|
||||
left(6 - pin_protrusion)
|
||||
yrot(90)
|
||||
back(1.6)
|
||||
pin_header(2, spin=-90, anchor=BACK + TOP);
|
||||
|
||||
// Replaces position(BACK + TOP) so that parent child cannot mess with color.
|
||||
translate([piggy_length / 2, -EPS, 0])
|
||||
pin_header(16, anchor=BACK + TOP);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// show different components as overview
|
||||
if (false) {
|
||||
back(30) tertiary_display(true);
|
||||
back(80) yrot(180) secondary_display(true);
|
||||
right(100) zrot(90) main_display(true);
|
||||
fwd(20) micro_controller(true, true);
|
||||
fwd(60) nfc(true);
|
||||
}
|
||||
|
||||
+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}"
|
||||
);
|
||||
|
||||
@@ -6,6 +6,7 @@ pub mod background_tasks;
|
||||
pub mod card;
|
||||
pub mod display;
|
||||
pub mod drivers;
|
||||
pub mod logging;
|
||||
pub mod navigation;
|
||||
pub mod network;
|
||||
pub mod storage;
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
mod logging_config {
|
||||
include!(concat!(env!("OUT_DIR"), "/log_filter.rs"));
|
||||
}
|
||||
|
||||
struct EnvLogger;
|
||||
|
||||
impl log::Log for EnvLogger {
|
||||
fn enabled(&self, metadata: &log::Metadata) -> bool {
|
||||
let level = metadata.level();
|
||||
let target = metadata.target();
|
||||
logging_config::is_enabled(level, target)
|
||||
}
|
||||
|
||||
fn log(&self, record: &log::Record) {
|
||||
if !self.enabled(record.metadata()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// print with color? default to true if env var unset or set but empty.
|
||||
let with_color = 1
|
||||
== option_env!("ESP_LOG_COLOR")
|
||||
.unwrap_or("1")
|
||||
.parse()
|
||||
.unwrap_or(1);
|
||||
let (color, reset) = if with_color {
|
||||
const RESET: &str = "\u{001B}[0m";
|
||||
const RED: &str = "\u{001B}[31m";
|
||||
const GREEN: &str = "\u{001B}[32m";
|
||||
const YELLOW: &str = "\u{001B}[33m";
|
||||
const BLUE: &str = "\u{001B}[34m";
|
||||
const CYAN: &str = "\u{001B}[35m";
|
||||
|
||||
let color = match record.level() {
|
||||
log::Level::Error => RED,
|
||||
log::Level::Warn => YELLOW,
|
||||
log::Level::Info => GREEN,
|
||||
log::Level::Debug => BLUE,
|
||||
log::Level::Trace => CYAN,
|
||||
};
|
||||
let reset = RESET;
|
||||
(color, reset)
|
||||
} else {
|
||||
("", "")
|
||||
};
|
||||
|
||||
let [now_s, now_ms] = {
|
||||
let now = esp_hal::time::Instant::now()
|
||||
.duration_since_epoch()
|
||||
.as_millis();
|
||||
|
||||
[now / 1000, now % 1000]
|
||||
};
|
||||
|
||||
let level = match record.level() {
|
||||
log::Level::Error => "E",
|
||||
log::Level::Warn => "W",
|
||||
log::Level::Info => "I",
|
||||
log::Level::Debug => "D",
|
||||
log::Level::Trace => "T",
|
||||
};
|
||||
let args = record.args();
|
||||
let line = record.line().unwrap_or(0);
|
||||
let target = record.target();
|
||||
let module = record.module_path().unwrap_or("???");
|
||||
|
||||
let (module, divider) = if module == target {
|
||||
("", "")
|
||||
} else {
|
||||
(module, " ")
|
||||
};
|
||||
|
||||
esp_println::println!(
|
||||
"{color}{now_s:>4}.{now_ms:03}s {level} {target}{divider}{module}:{line} - {args}{reset}"
|
||||
);
|
||||
}
|
||||
|
||||
fn flush(&self) {}
|
||||
}
|
||||
|
||||
pub fn init() {
|
||||
log::set_logger(&EnvLogger).expect("Failed to init logger.");
|
||||
log::set_max_level(logging_config::FILTER_MAX);
|
||||
}
|
||||
Reference in New Issue
Block a user