mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-29 21:30:39 +00:00

* Add the esp-idf bootloader support crate * CHANGELOG.md * fmt * Refactor * Clippy * Clippy * Rename + esp-idf version * Simplify * Fix * show real value in dbg * Add defmt/log features (mostly unused for now)
35 lines
1.3 KiB
Rust
35 lines
1.3 KiB
Rust
use std::env;
|
|
|
|
use chrono::{TimeZone, Utc};
|
|
use esp_config::{generate_config, Validator, Value};
|
|
|
|
fn main() {
|
|
let build_time = match env::var("SOURCE_DATE_EPOCH") {
|
|
Ok(val) => Utc.timestamp_opt(val.parse::<i64>().unwrap(), 0).unwrap(),
|
|
Err(_) => Utc::now(),
|
|
};
|
|
|
|
let build_time_formatted = build_time.format("%H:%M:%S").to_string();
|
|
let build_date_formatted = build_time.format("%Y-%m-%d").to_string();
|
|
|
|
println!("cargo::rustc-env=ESP_BOOTLOADER_BUILD_TIME={build_time_formatted}");
|
|
println!("cargo::rustc-env=ESP_BOOTLOADER_BUILD_DATE={build_date_formatted}");
|
|
|
|
// emit config
|
|
generate_config("esp-bootloader-esp-idf", &[
|
|
(
|
|
"mmu_page_size",
|
|
"ESP32-C2, ESP32-C6 and ESP32-H2 support configurable page sizes. This is currently only used to populate the app descriptor.",
|
|
Value::String(String::from("64k")),
|
|
Some(Validator::Enumeration(
|
|
vec![String::from("8k"), String::from("16k"),String::from("32k"),String::from("64k"),]
|
|
))
|
|
),(
|
|
"esp_idf_version",
|
|
"ESP-IDF version used in the application descriptor. Currently it's not checked by the bootloader.",
|
|
Value::String(String::from("0.0.0")),
|
|
None,
|
|
),
|
|
], true);
|
|
}
|