started cleanup and moving from std to no_std

This commit is contained in:
ju6ge 2025-09-11 22:47:11 +02:00
parent f853b6f2b2
commit 242e748ca0
Signed by: judge
GPG Key ID: 6512C30DD8E017B5
15 changed files with 199 additions and 197 deletions

View File

@ -72,7 +72,6 @@ esp-backtrace = { version = "0.17.0", features = [
] } ] }
esp-println = { version = "0.15.0", features = ["esp32c6", "log-04"] } esp-println = { version = "0.15.0", features = ["esp32c6", "log-04"] }
# for more networking protocol support see https://crates.io/crates/edge-net # for more networking protocol support see https://crates.io/crates/edge-net
critical-section = "1.2.0"
embassy-executor = { version = "0.7.0", features = [ embassy-executor = { version = "0.7.0", features = [
"log", "log",
"task-arena-size-20480", "task-arena-size-20480",
@ -106,7 +105,7 @@ heapless = { version = "0.8", features = ["serde"] }
embedded-hal-bus = { version = "0.3.0" } embedded-hal-bus = { version = "0.3.0" }
#Hardware additional driver #Hardware additional driver
ds18b20 = "0.1.1" #ds18b20 = "0.1.1"
#bq34z100 = { version = "0.3.0", default-features = false } #bq34z100 = { version = "0.3.0", default-features = false }
one-wire-bus = "0.1.1" one-wire-bus = "0.1.1"
ds323x = "0.6.0" ds323x = "0.6.0"
@ -139,6 +138,9 @@ ina219 = { version = "0.2.0" }
embedded-storage = "=0.3.1" embedded-storage = "=0.3.1"
ekv = "1.0.0" ekv = "1.0.0"
embedded-can = "0.4.1" embedded-can = "0.4.1"
critical-section = "1.2.0"
portable-atomic = "1.11.1"
embassy-sync = { version = "0.7.2", features = ["log"] }
[patch.crates-io] [patch.crates-io]

View File

@ -158,56 +158,56 @@ impl BatteryInteraction for BQ34Z100G1<'_> {
pub fn print_battery_bq34z100( pub fn print_battery_bq34z100(
battery_driver: &mut Bq34z100g1Driver<MutexDevice<I2cDriver<'_>>, Delay>, battery_driver: &mut Bq34z100g1Driver<MutexDevice<I2cDriver<'_>>, Delay>,
) -> anyhow::Result<(), Bq34Z100Error<I2cError>> { ) -> anyhow::Result<(), Bq34Z100Error<I2cError>> {
println!("Try communicating with battery"); log::info!("Try communicating with battery");
let fwversion = battery_driver.fw_version().unwrap_or_else(|e| { let fwversion = battery_driver.fw_version().unwrap_or_else(|e| {
println!("Firmware {:?}", e); log::info!("Firmware {:?}", e);
0 0
}); });
println!("fw version is {}", fwversion); log::info!("fw version is {}", fwversion);
let design_capacity = battery_driver.design_capacity().unwrap_or_else(|e| { let design_capacity = battery_driver.design_capacity().unwrap_or_else(|e| {
println!("Design capacity {:?}", e); log::info!("Design capacity {:?}", e);
0 0
}); });
println!("Design Capacity {}", design_capacity); log::info!("Design Capacity {}", design_capacity);
if design_capacity == 1000 { if design_capacity == 1000 {
println!("Still stock configuring battery, readouts are likely to be wrong!"); log::info!("Still stock configuring battery, readouts are likely to be wrong!");
} }
let flags = battery_driver.get_flags_decoded()?; let flags = battery_driver.get_flags_decoded()?;
println!("Flags {:?}", flags); log::info!("Flags {:?}", flags);
let chem_id = battery_driver.chem_id().unwrap_or_else(|e| { let chem_id = battery_driver.chem_id().unwrap_or_else(|e| {
println!("Chemid {:?}", e); log::info!("Chemid {:?}", e);
0 0
}); });
let bat_temp = battery_driver.internal_temperature().unwrap_or_else(|e| { let bat_temp = battery_driver.internal_temperature().unwrap_or_else(|e| {
println!("Bat Temp {:?}", e); log::info!("Bat Temp {:?}", e);
0 0
}); });
let temp_c = Temperature::from_kelvin(bat_temp as f64 / 10_f64).as_celsius(); let temp_c = Temperature::from_kelvin(bat_temp as f64 / 10_f64).as_celsius();
let voltage = battery_driver.voltage().unwrap_or_else(|e| { let voltage = battery_driver.voltage().unwrap_or_else(|e| {
println!("Bat volt {:?}", e); log::info!("Bat volt {:?}", e);
0 0
}); });
let current = battery_driver.current().unwrap_or_else(|e| { let current = battery_driver.current().unwrap_or_else(|e| {
println!("Bat current {:?}", e); log::info!("Bat current {:?}", e);
0 0
}); });
let state = battery_driver.state_of_charge().unwrap_or_else(|e| { let state = battery_driver.state_of_charge().unwrap_or_else(|e| {
println!("Bat Soc {:?}", e); log::info!("Bat Soc {:?}", e);
0 0
}); });
let charge_voltage = battery_driver.charge_voltage().unwrap_or_else(|e| { let charge_voltage = battery_driver.charge_voltage().unwrap_or_else(|e| {
println!("Bat Charge Volt {:?}", e); log::info!("Bat Charge Volt {:?}", e);
0 0
}); });
let charge_current = battery_driver.charge_current().unwrap_or_else(|e| { let charge_current = battery_driver.charge_current().unwrap_or_else(|e| {
println!("Bat Charge Current {:?}", e); log::info!("Bat Charge Current {:?}", e);
0 0
}); });
println!("ChemId: {} Current voltage {} and current {} with charge {}% and temp {} CVolt: {} CCur {}", chem_id, voltage, current, state, temp_c, charge_voltage, charge_current); log::info!("ChemId: {} Current voltage {} and current {} with charge {}% and temp {} CVolt: {} CCur {}", chem_id, voltage, current, state, temp_c, charge_voltage, charge_current);
let _ = battery_driver.unsealed(); let _ = battery_driver.unsealed();
let _ = battery_driver.it_enable(); let _ = battery_driver.it_enable();
anyhow::Result::Ok(()) anyhow::Result::Ok(())

View File

@ -4,30 +4,9 @@ use crate::log::{log, LogMessage};
use crate::STAY_ALIVE; use crate::STAY_ALIVE;
use anyhow::{anyhow, bail, Context}; use anyhow::{anyhow, bail, Context};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use embedded_svc::ipv4::IpInfo;
use embedded_svc::mqtt::client::QoS::{AtLeastOnce, ExactlyOnce};
use embedded_svc::wifi::{
AccessPointConfiguration, AccessPointInfo, AuthMethod, ClientConfiguration, Configuration,
};
use esp_idf_hal::delay::Delay;
use esp_idf_hal::gpio::{Level, PinDriver};
use esp_idf_svc::mqtt::client::{EspMqttClient, LwtConfiguration, MqttClientConfiguration};
use esp_idf_svc::sntp;
use esp_idf_svc::sntp::SyncStatus;
use esp_idf_svc::systime::EspSystemTime;
use esp_idf_svc::wifi::config::{ScanConfig, ScanType};
use esp_idf_svc::wifi::EspWifi;
use esp_idf_sys::{esp_spiffs_info, vTaskDelay};
use serde::Serialize; use serde::Serialize;
use std::ffi::CString;
use std::fs; use alloc::{vec::Vec, string::String};
use std::fs::File;
use std::path::Path;
use std::result::Result::Ok as OkStd;
use std::str::FromStr;
use std::sync::atomic::AtomicBool;
use std::sync::Arc;
use std::time::Duration;
#[link_section = ".rtc.data"] #[link_section = ".rtc.data"]
static mut LAST_WATERING_TIMESTAMP: [i64; PLANT_COUNT] = [0; PLANT_COUNT]; static mut LAST_WATERING_TIMESTAMP: [i64; PLANT_COUNT] = [0; PLANT_COUNT];
@ -212,7 +191,7 @@ impl Esp<'_> {
bail!("Did not manage wifi connection within timeout"); bail!("Did not manage wifi connection within timeout");
} }
} }
println!("Should be connected now, waiting for link to be up"); log::info!("Should be connected now, waiting for link to be up");
while !self.wifi_driver.is_up()? { while !self.wifi_driver.is_up()? {
delay.delay_ms(250); delay.delay_ms(250);
@ -237,23 +216,26 @@ impl Esp<'_> {
pub(crate) fn save_config(&mut self, config: &PlantControllerConfig) -> anyhow::Result<()> { pub(crate) fn save_config(&mut self, config: &PlantControllerConfig) -> anyhow::Result<()> {
let mut cfg = File::create(Self::CONFIG_FILE)?; let mut cfg = File::create(Self::CONFIG_FILE)?;
serde_json::to_writer(&mut cfg, &config)?; serde_json::to_writer(&mut cfg, &config)?;
println!("Wrote config config {:?}", config); log::info!("Wrote config config {:?}", config);
anyhow::Ok(()) anyhow::Ok(())
} }
pub(crate) fn mount_file_system(&mut self) -> anyhow::Result<()> { pub(crate) fn mount_file_system(&mut self) -> anyhow::Result<()> {
log(LogMessage::MountingFilesystem, 0, 0, "", ""); log(LogMessage::MountingFilesystem, 0, 0, "", "");
let base_path = CString::new("/spiffs")?; let base_path = String::try_from("/spiffs")?;
let storage = CString::new(Self::SPIFFS_PARTITION_NAME)?; let storage = String::try_from(Self::SPIFFS_PARTITION_NAME)?;
let conf = esp_idf_sys::esp_vfs_spiffs_conf_t { let conf = todo!();
base_path: base_path.as_ptr(),
partition_label: storage.as_ptr(),
max_files: 5,
format_if_mount_failed: true,
};
unsafe { //let conf = esp_idf_sys::esp_vfs_spiffs_conf_t {
esp_idf_sys::esp!(esp_idf_sys::esp_vfs_spiffs_register(&conf))?; //base_path: base_path.as_ptr(),
} //partition_label: storage.as_ptr(),
//max_files: 5,
//format_if_mount_failed: true,
//};
//TODO
//unsafe {
//esp_idf_sys::esp!(esp_idf_sys::esp_vfs_spiffs_register(&conf))?;
//}
let free_space = self.file_system_size()?; let free_space = self.file_system_size()?;
log( log(
@ -377,13 +359,13 @@ impl Esp<'_> {
"", "",
); );
for i in 0..PLANT_COUNT { for i in 0..PLANT_COUNT {
println!( log::info!(
"LAST_WATERING_TIMESTAMP[{}] = UTC {}", "LAST_WATERING_TIMESTAMP[{}] = UTC {}",
i, LAST_WATERING_TIMESTAMP[i] i, LAST_WATERING_TIMESTAMP[i]
); );
} }
for i in 0..PLANT_COUNT { for i in 0..PLANT_COUNT {
println!( log::info!(
"CONSECUTIVE_WATERING_PLANT[{}] = {}", "CONSECUTIVE_WATERING_PLANT[{}] = {}",
i, CONSECUTIVE_WATERING_PLANT[i] i, CONSECUTIVE_WATERING_PLANT[i]
); );
@ -468,35 +450,35 @@ impl Esp<'_> {
mqtt_connected_event_received_copy mqtt_connected_event_received_copy
.store(true, std::sync::atomic::Ordering::Relaxed); .store(true, std::sync::atomic::Ordering::Relaxed);
mqtt_connected_event_ok_copy.store(true, std::sync::atomic::Ordering::Relaxed); mqtt_connected_event_ok_copy.store(true, std::sync::atomic::Ordering::Relaxed);
println!("Mqtt connected"); log::info!("Mqtt connected");
} }
esp_idf_svc::mqtt::client::EventPayload::Disconnected => { esp_idf_svc::mqtt::client::EventPayload::Disconnected => {
mqtt_connected_event_received_copy mqtt_connected_event_received_copy
.store(true, std::sync::atomic::Ordering::Relaxed); .store(true, std::sync::atomic::Ordering::Relaxed);
mqtt_connected_event_ok_copy.store(false, std::sync::atomic::Ordering::Relaxed); mqtt_connected_event_ok_copy.store(false, std::sync::atomic::Ordering::Relaxed);
println!("Mqtt disconnected"); log::info!("Mqtt disconnected");
} }
esp_idf_svc::mqtt::client::EventPayload::Error(esp_error) => { esp_idf_svc::mqtt::client::EventPayload::Error(esp_error) => {
println!("EspMqttError reported {:?}", esp_error); log::info!("EspMqttError reported {:?}", esp_error);
mqtt_connected_event_received_copy mqtt_connected_event_received_copy
.store(true, std::sync::atomic::Ordering::Relaxed); .store(true, std::sync::atomic::Ordering::Relaxed);
mqtt_connected_event_ok_copy.store(false, std::sync::atomic::Ordering::Relaxed); mqtt_connected_event_ok_copy.store(false, std::sync::atomic::Ordering::Relaxed);
println!("Mqtt error"); log::info!("Mqtt error");
} }
esp_idf_svc::mqtt::client::EventPayload::BeforeConnect => { esp_idf_svc::mqtt::client::EventPayload::BeforeConnect => {
println!("Mqtt before connect") log::info!("Mqtt before connect")
} }
esp_idf_svc::mqtt::client::EventPayload::Subscribed(_) => { esp_idf_svc::mqtt::client::EventPayload::Subscribed(_) => {
println!("Mqtt subscribed") log::info!("Mqtt subscribed")
} }
esp_idf_svc::mqtt::client::EventPayload::Unsubscribed(_) => { esp_idf_svc::mqtt::client::EventPayload::Unsubscribed(_) => {
println!("Mqtt unsubscribed") log::info!("Mqtt unsubscribed")
} }
esp_idf_svc::mqtt::client::EventPayload::Published(_) => { esp_idf_svc::mqtt::client::EventPayload::Published(_) => {
println!("Mqtt published") log::info!("Mqtt published")
} }
esp_idf_svc::mqtt::client::EventPayload::Deleted(_) => { esp_idf_svc::mqtt::client::EventPayload::Deleted(_) => {
println!("Mqtt deleted") log::info!("Mqtt deleted")
} }
} }
})?; })?;
@ -506,10 +488,10 @@ impl Esp<'_> {
wait_for_connections_event += 1; wait_for_connections_event += 1;
match mqtt_connected_event_received.load(std::sync::atomic::Ordering::Relaxed) { match mqtt_connected_event_received.load(std::sync::atomic::Ordering::Relaxed) {
true => { true => {
println!("Mqtt connection callback received, progressing"); log::info!("Mqtt connection callback received, progressing");
match mqtt_connected_event_ok.load(std::sync::atomic::Ordering::Relaxed) { match mqtt_connected_event_ok.load(std::sync::atomic::Ordering::Relaxed) {
true => { true => {
println!("Mqtt did callback as connected, testing with roundtrip now"); log::info!("Mqtt did callback as connected, testing with roundtrip now");
//subscribe to roundtrip //subscribe to roundtrip
client.subscribe(round_trip_topic.as_str(), ExactlyOnce)?; client.subscribe(round_trip_topic.as_str(), ExactlyOnce)?;
client.subscribe(stay_alive_topic.as_str(), ExactlyOnce)?; client.subscribe(stay_alive_topic.as_str(), ExactlyOnce)?;
@ -526,7 +508,7 @@ impl Esp<'_> {
wait_for_roundtrip += 1; wait_for_roundtrip += 1;
match round_trip_ok.load(std::sync::atomic::Ordering::Relaxed) { match round_trip_ok.load(std::sync::atomic::Ordering::Relaxed) {
true => { true => {
println!("Round trip registered, proceeding"); log::info!("Round trip registered, proceeding");
self.mqtt_client = Some(MqttClient { self.mqtt_client = Some(MqttClient {
mqtt_client: client, mqtt_client: client,
base_topic: base_topic_copy, base_topic: base_topic_copy,
@ -557,21 +539,21 @@ impl Esp<'_> {
return anyhow::Ok(()); return anyhow::Ok(());
} }
if !subtopic.starts_with("/") { if !subtopic.starts_with("/") {
println!("Subtopic without / at start {}", subtopic); log::info!("Subtopic without / at start {}", subtopic);
bail!("Subtopic without / at start {}", subtopic); bail!("Subtopic without / at start {}", subtopic);
} }
if subtopic.len() > 192 { if subtopic.len() > 192 {
println!("Subtopic exceeds 192 chars {}", subtopic); log::info!("Subtopic exceeds 192 chars {}", subtopic);
bail!("Subtopic exceeds 192 chars {}", subtopic); bail!("Subtopic exceeds 192 chars {}", subtopic);
} }
let client = self.mqtt_client.as_mut().unwrap(); let client = self.mqtt_client.as_mut().unwrap();
let mut full_topic: heapless::String<256> = heapless::String::new(); let mut full_topic: heapless::String<256> = heapless::String::new();
if full_topic.push_str(client.base_topic.as_str()).is_err() { if full_topic.push_str(client.base_topic.as_str()).is_err() {
println!("Some error assembling full_topic 1"); log::info!("Some error assembling full_topic 1");
bail!("Some error assembling full_topic 1") bail!("Some error assembling full_topic 1")
}; };
if full_topic.push_str(subtopic).is_err() { if full_topic.push_str(subtopic).is_err() {
println!("Some error assembling full_topic 2"); log::info!("Some error assembling full_topic 2");
bail!("Some error assembling full_topic 2") bail!("Some error assembling full_topic 2")
}; };
let publish = client let publish = client
@ -580,7 +562,7 @@ impl Esp<'_> {
Delay::new(10).delay_ms(50); Delay::new(10).delay_ms(50);
match publish { match publish {
OkStd(message_id) => { OkStd(message_id) => {
println!( log::info!(
"Published mqtt topic {} with message {:#?} msgid is {:?}", "Published mqtt topic {} with message {:#?} msgid is {:?}",
full_topic, full_topic,
String::from_utf8_lossy(message), String::from_utf8_lossy(message),
@ -589,7 +571,7 @@ impl Esp<'_> {
anyhow::Ok(()) anyhow::Ok(())
} }
Err(err) => { Err(err) => {
println!( log::info!(
"Error during mqtt send on topic {} with message {:#?} error is {:?}", "Error during mqtt send on topic {} with message {:#?} error is {:?}",
full_topic, full_topic,
String::from_utf8_lossy(message), String::from_utf8_lossy(message),

View File

@ -9,9 +9,8 @@ use crate::{
use anyhow::{bail, Result}; use anyhow::{bail, Result};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use embedded_hal::digital::OutputPin; use embedded_hal::digital::OutputPin;
use esp_idf_hal::gpio::{IOPin, Pull};
use esp_idf_hal::gpio::{InputOutput, PinDriver};
use measurements::{Current, Voltage}; use measurements::{Current, Voltage};
use crate::alloc::boxed::Box;
pub struct Initial<'a> { pub struct Initial<'a> {
pub(crate) general_fault: PinDriver<'a, esp_idf_hal::gpio::AnyIOPin, InputOutput>, pub(crate) general_fault: PinDriver<'a, esp_idf_hal::gpio::AnyIOPin, InputOutput>,
@ -51,7 +50,7 @@ pub(crate) fn create_initial_board(
config: PlantControllerConfig, config: PlantControllerConfig,
esp: Esp<'static>, esp: Esp<'static>,
) -> Result<Box<dyn BoardInteraction<'static> + Send>> { ) -> Result<Box<dyn BoardInteraction<'static> + Send>> {
println!("Start initial"); log::info!("Start initial");
let mut general_fault = PinDriver::input_output(free_pins.gpio6.downgrade())?; let mut general_fault = PinDriver::input_output(free_pins.gpio6.downgrade())?;
general_fault.set_pull(Pull::Floating)?; general_fault.set_pull(Pull::Floating)?;
general_fault.set_low()?; general_fault.set_low()?;

View File

@ -266,10 +266,10 @@ impl PlantHal {
let config = esp.load_config(); let config = esp.load_config();
println!("Init rtc driver"); log::info!("Init rtc driver");
let mut rtc = Ds323x::new_ds3231(MutexDevice::new(&I2C_DRIVER)); let mut rtc = Ds323x::new_ds3231(MutexDevice::new(&I2C_DRIVER));
println!("Init rtc eeprom driver"); log::info!("Init rtc eeprom driver");
let eeprom = { let eeprom = {
Eeprom24x::new_24x32( Eeprom24x::new_24x32(
MutexDevice::new(&I2C_DRIVER), MutexDevice::new(&I2C_DRIVER),
@ -279,10 +279,10 @@ impl PlantHal {
let rtc_time = rtc.datetime(); let rtc_time = rtc.datetime();
match rtc_time { match rtc_time {
OkStd(tt) => { OkStd(tt) => {
println!("Rtc Module reports time at UTC {}", tt); log::info!("Rtc Module reports time at UTC {}", tt);
} }
Err(err) => { Err(err) => {
println!("Rtc Module could not be read {:?}", err); log::info!("Rtc Module could not be read {:?}", err);
} }
} }

View File

@ -52,7 +52,7 @@ impl RTCModuleInteraction for DS3231Module<'_> {
let (header, len): (BackupHeader, usize) = let (header, len): (BackupHeader, usize) =
bincode::decode_from_slice(&header_page_buffer[..], CONFIG)?; bincode::decode_from_slice(&header_page_buffer[..], CONFIG)?;
println!("Raw header is {:?} with size {}", header_page_buffer, len); log::info!("Raw header is {:?} with size {}", header_page_buffer, len);
anyhow::Ok(header) anyhow::Ok(header)
} }
@ -95,7 +95,7 @@ impl RTCModuleInteraction for DS3231Module<'_> {
}; };
let config = config::standard(); let config = config::standard();
let encoded = bincode::encode_into_slice(&header, &mut header_page_buffer, config)?; let encoded = bincode::encode_into_slice(&header, &mut header_page_buffer, config)?;
println!( log::info!(
"Raw header is {:?} with size {}", "Raw header is {:?} with size {}",
header_page_buffer, encoded header_page_buffer, encoded
); );

View File

@ -94,7 +94,7 @@ pub(crate) fn create_v3(
battery_monitor: Box<dyn BatteryInteraction + Send>, battery_monitor: Box<dyn BatteryInteraction + Send>,
rtc_module: Box<dyn RTCModuleInteraction + Send>, rtc_module: Box<dyn RTCModuleInteraction + Send>,
) -> Result<Box<dyn BoardInteraction<'static> + Send>> { ) -> Result<Box<dyn BoardInteraction<'static> + Send>> {
println!("Start v3"); log::info!("Start v3");
let mut clock = PinDriver::input_output(peripherals.gpio15.downgrade())?; let mut clock = PinDriver::input_output(peripherals.gpio15.downgrade())?;
clock.set_pull(Pull::Floating)?; clock.set_pull(Pull::Floating)?;
let mut latch = PinDriver::input_output(peripherals.gpio3.downgrade())?; let mut latch = PinDriver::input_output(peripherals.gpio3.downgrade())?;

View File

@ -52,7 +52,7 @@ impl Charger<'_> {
operating_mode: OperatingMode::PowerDown, operating_mode: OperatingMode::PowerDown,
}) })
.map_err(|e| { .map_err(|e| {
println!( log::info!(
"Error setting ina mppt configuration during deep sleep preparation{:?}", "Error setting ina mppt configuration during deep sleep preparation{:?}",
e e
); );
@ -133,7 +133,7 @@ pub(crate) fn create_v4(
battery_monitor: Box<dyn BatteryInteraction + Send>, battery_monitor: Box<dyn BatteryInteraction + Send>,
rtc_module: Box<dyn RTCModuleInteraction + Send>, rtc_module: Box<dyn RTCModuleInteraction + Send>,
) -> anyhow::Result<Box<dyn BoardInteraction<'static> + Send + 'static>> { ) -> anyhow::Result<Box<dyn BoardInteraction<'static> + Send + 'static>> {
println!("Start v4"); log::info!("Start v4");
let mut awake = PinDriver::output(peripherals.gpio21.downgrade())?; let mut awake = PinDriver::output(peripherals.gpio21.downgrade())?;
awake.set_high()?; awake.set_high()?;
@ -163,7 +163,7 @@ pub(crate) fn create_v4(
let mut sensor_expander = Pca9535Immediate::new(MutexDevice::new(&I2C_DRIVER), 34); let mut sensor_expander = Pca9535Immediate::new(MutexDevice::new(&I2C_DRIVER), 34);
let sensor = match sensor_expander.pin_into_output(GPIOBank::Bank0, 0) { let sensor = match sensor_expander.pin_into_output(GPIOBank::Bank0, 0) {
Ok(_) => { Ok(_) => {
println!("SensorExpander answered"); log::info!("SensorExpander answered");
//pulse counter version //pulse counter version
let mut signal_counter = PcntDriver::new( let mut signal_counter = PcntDriver::new(
peripherals.pcnt0, peripherals.pcnt0,
@ -200,7 +200,7 @@ pub(crate) fn create_v4(
} }
} }
Err(_) => { Err(_) => {
println!("Can bus mode "); log::info!("Can bus mode ");
let timing = can::config::Timing::B25K; let timing = can::config::Timing::B25K;
let config = can::config::Config::new().timing(timing); let config = can::config::Config::new().timing(timing);
let can = can::CanDriver::new(peripherals.can, peripherals.gpio0, peripherals.gpio2, &config).unwrap(); let can = can::CanDriver::new(peripherals.can, peripherals.gpio0, peripherals.gpio2, &config).unwrap();
@ -211,7 +211,7 @@ pub(crate) fn create_v4(
can.transmit(&tx_frame, 1000).unwrap(); can.transmit(&tx_frame, 1000).unwrap();
if let Ok(rx_frame) = can.receive(1000) { if let Ok(rx_frame) = can.receive(1000) {
println!("rx {:}:", rx_frame); log::info!("rx {:}:", rx_frame);
} }
//can bus version //can bus version
SensorImpl::CanBus { SensorImpl::CanBus {
@ -274,7 +274,7 @@ pub(crate) fn create_v4(
) { ) {
Ok(pump_ina) => Some(pump_ina), Ok(pump_ina) => Some(pump_ina),
Err(err) => { Err(err) => {
println!("Error creating pump ina: {:?}", err); log::info!("Error creating pump ina: {:?}", err);
None None
} }
}; };

View File

@ -109,11 +109,11 @@ impl<'a> TankSensor<'a> {
let temp = self.single_temperature_c(); let temp = self.single_temperature_c();
match &temp { match &temp {
Ok(res) => { Ok(res) => {
println!("Water temp is {}", res); log::info!("Water temp is {}", res);
break temp; break temp;
} }
Err(err) => { Err(err) => {
println!("Could not get water temp {} attempt {}", err, attempt) log::info!("Could not get water temp {} attempt {}", err, attempt)
} }
} }
if attempt == 5 { if attempt == 5 {

View File

@ -1,4 +1,5 @@
#![allow(dead_code)] #![allow(dead_code)]
#![no_std]
extern crate embedded_hal as hal; extern crate embedded_hal as hal;
pub mod sipo; pub mod sipo;

View File

@ -1,3 +1,4 @@
use alloc::string::ToString;
use serde::Serialize; use serde::Serialize;
use std::{collections::HashMap, sync::Mutex}; use std::{collections::HashMap, sync::Mutex};
use strum::EnumIter; use strum::EnumIter;
@ -92,7 +93,7 @@ pub fn log(message_key: LogMessage, number_a: u32, number_b: u32, txt_short: &st
let template = Template::from(template_string); let template = Template::from(template_string);
let serial_entry = template.fill_in(&values); let serial_entry = template.fill_in(&values);
println!("{serial_entry}"); log::info!("{serial_entry}");
//TODO push to mqtt? //TODO push to mqtt?
let entry = LogEntry { let entry = LogEntry {

View File

@ -1,38 +1,41 @@
#![no_std]
#![no_main]
#![deny(
clippy::mem_forget,
reason = "mem::forget is generally not safe to do with esp_hal types, especially those \
holding buffers for the duration of a data transfer."
)]
use crate::config::PlantConfig; use crate::config::PlantConfig;
use crate::{ use crate::{
config::BoardVersion::INITIAL, config::BoardVersion::INITIAL,
hal::{PlantHal, HAL, PLANT_COUNT}, hal::{PlantHal, HAL, PLANT_COUNT},
webserver::httpd, //webserver::httpd,
}; };
use alloc::borrow::ToOwned;
use alloc::fmt::format;
use alloc::string::{String, ToString};
use anyhow::{bail, Context}; use anyhow::{bail, Context};
use chrono::{DateTime, Datelike, Timelike, Utc}; use chrono::{DateTime, Datelike, Timelike, Utc};
use chrono_tz::Tz::{self, UTC}; use chrono_tz::Tz::{self, UTC};
use esp_idf_hal::delay::Delay; use embassy_executor::Spawner;
use esp_idf_sys::{
esp_ota_get_app_partition_count, esp_ota_get_running_partition, esp_ota_get_state_partition,
esp_ota_img_states_t, esp_ota_img_states_t_ESP_OTA_IMG_ABORTED,
esp_ota_img_states_t_ESP_OTA_IMG_INVALID, esp_ota_img_states_t_ESP_OTA_IMG_NEW,
esp_ota_img_states_t_ESP_OTA_IMG_PENDING_VERIFY, esp_ota_img_states_t_ESP_OTA_IMG_UNDEFINED,
esp_ota_img_states_t_ESP_OTA_IMG_VALID,
};
use esp_ota::{mark_app_valid, rollback_and_reboot};
use hal::battery::BatteryState; use hal::battery::BatteryState;
use log::{log, LogMessage}; use log::{log, LogMessage};
use once_cell::sync::Lazy;
use plant_state::PlantState; use plant_state::PlantState;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::sync::{atomic::AtomicBool, Arc, Mutex, MutexGuard}; use embassy_sync::{Mutex, LazyLock};
use portable_atomic::AtomicBool;
use tank::*; use tank::*;
mod config; mod config;
mod hal; mod hal;
mod log; mod log;
mod plant_state; mod plant_state;
mod tank; mod tank;
mod webserver;
pub static BOARD_ACCESS: Lazy<Mutex<HAL>> = Lazy::new(|| PlantHal::create().unwrap()); extern crate alloc;
pub static STAY_ALIVE: Lazy<AtomicBool> = Lazy::new(|| AtomicBool::new(false)); //mod webserver;
pub static BOARD_ACCESS: LazyLock<Mutex<HAL>> = LazyLock::new(|| PlantHal::create().unwrap());
pub static STAY_ALIVE: LazyLock<AtomicBool> = LazyLock::new(|| AtomicBool::new(false));
#[derive(Serialize, Deserialize, Debug, PartialEq)] #[derive(Serialize, Deserialize, Debug, PartialEq)]
enum WaitType { enum WaitType {
@ -110,55 +113,45 @@ enum NetworkMode {
} }
fn safe_main() -> anyhow::Result<()> { fn safe_main() -> anyhow::Result<()> {
// It is necessary to call this function once. Otherwise, some patches to the runtime
// implemented by esp-idf-sys might not link properly. See https://github.com/esp-rs/esp-idf-template/issues/71
esp_idf_svc::sys::link_patches();
// Bind the log crate to the ESP Logging facilities log::info!("Startup Rust");
esp_idf_svc::log::EspLogger::initialize_default();
if esp_idf_sys::CONFIG_MAIN_TASK_STACK_SIZE < 25000 {
bail!(
"stack too small: {} bail!",
esp_idf_sys::CONFIG_MAIN_TASK_STACK_SIZE
)
}
println!("Startup Rust");
let mut to_config = false; let mut to_config = false;
let version = get_version(); let version = get_version();
println!( log::info!(
"Version using git has {} build on {}", "Version using git has {} build on {}",
version.git_hash, version.build_time version.git_hash, version.build_time
); );
let count = unsafe { esp_ota_get_app_partition_count() }; //TODO
println!("Partition count is {}", count); //let count = unsafe { esp_ota_get_app_partition_count() };
let mut ota_state: esp_ota_img_states_t = 0; //log::info!("Partition count is {}", count);
let running_partition = unsafe { esp_ota_get_running_partition() }; //let mut ota_state: esp_ota_img_states_t = 0;
let address = unsafe { (*running_partition).address }; //let running_partition = unsafe { esp_ota_get_running_partition() };
println!("Partition address is {}", address); //let address = unsafe { (*running_partition).address };
//log::info!("Partition address is {}", address);
let ota_state_string = unsafe { // TODO
esp_ota_get_state_partition(running_partition, &mut ota_state); //let ota_state_string = unsafe {
if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_NEW { //esp_ota_get_state_partition(running_partition, &mut ota_state);
"ESP_OTA_IMG_NEW" //if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_NEW {
} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_PENDING_VERIFY { //"ESP_OTA_IMG_NEW"
"ESP_OTA_IMG_PENDING_VERIFY" //} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_PENDING_VERIFY {
} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_VALID { //"ESP_OTA_IMG_PENDING_VERIFY"
"ESP_OTA_IMG_VALID" //} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_VALID {
} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_INVALID { //"ESP_OTA_IMG_VALID"
"ESP_OTA_IMG_INVALID" //} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_INVALID {
} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_ABORTED { //"ESP_OTA_IMG_INVALID"
"ESP_OTA_IMG_ABORTED" //} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_ABORTED {
} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_UNDEFINED { //"ESP_OTA_IMG_ABORTED"
"ESP_OTA_IMG_UNDEFINED" //} else if ota_state == esp_ota_img_states_t_ESP_OTA_IMG_UNDEFINED {
} else { //"ESP_OTA_IMG_UNDEFINED"
&format!("unknown {ota_state}") //} else {
} //&format!("unknown {ota_state}")
}; //}
log(LogMessage::PartitionState, 0, 0, "", ota_state_string); //};
//log(LogMessage::PartitionState, 0, 0, "", ota_state_string);
let mut board = BOARD_ACCESS let mut board = BOARD_ACCESS
.lock() .lock()
@ -170,7 +163,7 @@ fn safe_main() -> anyhow::Result<()> {
.get_rtc_module() .get_rtc_module()
.get_rtc_time() .get_rtc_time()
.or_else(|err| { .or_else(|err| {
println!("rtc module error: {:?}", err); log::info!("rtc module error: {:?}", err);
board.board_hal.general_fault(true); board.board_hal.general_fault(true);
board.board_hal.get_esp().time() board.board_hal.get_esp().time()
}) })
@ -185,7 +178,7 @@ fn safe_main() -> anyhow::Result<()> {
log(LogMessage::YearInplausibleForceConfig, 0, 0, "", ""); log(LogMessage::YearInplausibleForceConfig, 0, 0, "", "");
} }
println!("cur is {}", cur); log::info!("cur is {}", cur);
update_charge_indicator(&mut board); update_charge_indicator(&mut board);
if board.board_hal.get_esp().get_restart_to_conf() { if board.board_hal.get_esp().get_restart_to_conf() {
@ -223,40 +216,41 @@ fn safe_main() -> anyhow::Result<()> {
let _ = board.board_hal.get_esp().wifi_ap(); let _ = board.board_hal.get_esp().wifi_ap();
drop(board); drop(board);
let reboot_now = Arc::new(AtomicBool::new(false)); let reboot_now = Arc::new(AtomicBool::new(false));
let _webserver = httpd(reboot_now.clone()); //TODO
//let _webserver = httpd(reboot_now.clone());
wait_infinity(WaitType::MissingConfig, reboot_now.clone()); wait_infinity(WaitType::MissingConfig, reboot_now.clone());
} }
println!("attempting to connect wifi"); log::info!("attempting to connect wifi");
let network_mode = if board.board_hal.get_config().network.ssid.is_some() { let network_mode = if board.board_hal.get_config().network.ssid.is_some() {
try_connect_wifi_sntp_mqtt(&mut board) try_connect_wifi_sntp_mqtt(&mut board)
} else { } else {
println!("No wifi configured"); log::info!("No wifi configured");
//the current sensors require this amount to stabilize, in case of wifi this is already handles for sure; //the current sensors require this amount to stabilize, in case of wifi this is already handles for sure;
board.board_hal.get_esp().delay.delay_ms(100); board.board_hal.get_esp().delay.delay_ms(100);
NetworkMode::OFFLINE NetworkMode::OFFLINE
}; };
if matches!(network_mode, NetworkMode::OFFLINE) && to_config { if matches!(network_mode, NetworkMode::OFFLINE) && to_config {
println!("Could not connect to station and config mode forced, switching to ap mode!"); log::info!("Could not connect to station and config mode forced, switching to ap mode!");
match board.board_hal.get_esp().wifi_ap() { match board.board_hal.get_esp().wifi_ap() {
Ok(_) => { Ok(_) => {
println!("Started ap, continuing") log::info!("Started ap, continuing")
} }
Err(err) => println!("Could not start config override ap mode due to {}", err), Err(err) => log::info!("Could not start config override ap mode due to {}", err),
} }
} }
let timezone = match &board.board_hal.get_config().timezone { let timezone = match &board.board_hal.get_config().timezone {
Some(tz_str) => tz_str.parse::<Tz>().unwrap_or_else(|_| { Some(tz_str) => tz_str.parse::<Tz>().unwrap_or_else(|_| {
println!("Invalid timezone '{}', falling back to UTC", tz_str); log::info!("Invalid timezone '{}', falling back to UTC", tz_str);
UTC UTC
}), }),
None => UTC, // Fallback to UTC if no timezone is set None => UTC, // Fallback to UTC if no timezone is set
}; };
let timezone_time = cur.with_timezone(&timezone); let timezone_time = cur.with_timezone(&timezone);
println!( log::info!(
"Running logic at utc {} and {} {}", "Running logic at utc {} and {} {}",
cur, cur,
timezone.name(), timezone.name(),
@ -294,11 +288,12 @@ fn safe_main() -> anyhow::Result<()> {
if to_config { if to_config {
//check if client or ap mode and init Wi-Fi //check if client or ap mode and init Wi-Fi
println!("executing config mode override"); log::info!("executing config mode override");
//config upload will trigger reboot! //config upload will trigger reboot!
drop(board); drop(board);
let reboot_now = Arc::new(AtomicBool::new(false)); let reboot_now = Arc::new(AtomicBool::new(false));
let _webserver = httpd(reboot_now.clone()); //TODO
//let _webserver = httpd(reboot_now.clone());
wait_infinity(WaitType::ConfigButton, reboot_now.clone()); wait_infinity(WaitType::ConfigButton, reboot_now.clone());
} else { } else {
log(LogMessage::NormalRun, 0, 0, "", ""); log(LogMessage::NormalRun, 0, 0, "", "");
@ -506,7 +501,7 @@ fn safe_main() -> anyhow::Result<()> {
board.board_hal.light(false)?; board.board_hal.light(false)?;
} }
println!("Lightstate is {:?}", light_state); log::info!("Lightstate is {:?}", light_state);
} }
match serde_json::to_string(&light_state) { match serde_json::to_string(&light_state) {
@ -517,7 +512,7 @@ fn safe_main() -> anyhow::Result<()> {
.mqtt_publish("/light", state.as_bytes()); .mqtt_publish("/light", state.as_bytes());
} }
Err(err) => { Err(err) => {
println!("Error publishing lightstate {}", err); log::info!("Error publishing lightstate {}", err);
} }
}; };
@ -551,24 +546,27 @@ fn safe_main() -> anyhow::Result<()> {
//is light out of work trigger soon? //is light out of work trigger soon?
//is battery low ?? //is battery low ??
//is deep sleep //is deep sleep
mark_app_valid(); //TODO
//mark_app_valid();
let stay_alive_mqtt = STAY_ALIVE.load(std::sync::atomic::Ordering::Relaxed); let stay_alive_mqtt = STAY_ALIVE.load(std::sync::atomic::Ordering::Relaxed);
let stay_alive = stay_alive_mqtt; let stay_alive = stay_alive_mqtt;
println!("Check stay alive, current state is {}", stay_alive); log::info!("Check stay alive, current state is {}", stay_alive);
if stay_alive { if stay_alive {
println!("Go to stay alive move"); log::info!("Go to stay alive move");
drop(board); drop(board);
let reboot_now = Arc::new(AtomicBool::new(false)); let reboot_now = Arc::new(AtomicBool::new(false));
let _webserver = httpd(reboot_now.clone()); //TODO
//let _webserver = httpd(reboot_now.clone());
wait_infinity(WaitType::MqttConfig, reboot_now.clone()); wait_infinity(WaitType::MqttConfig, reboot_now.clone());
} }
board.board_hal.get_esp().set_restart_to_conf(false); board.board_hal.get_esp().set_restart_to_conf(false);
board board
.board_hal .board_hal
.deep_sleep(1000 * 1000 * 60 * deep_sleep_duration_minutes as u64); .deep_sleep(1000 * 1000 * 60 * deep_sleep_duration_minutes as u64);
anyhow::Ok(())
} }
pub fn do_secure_pump( pub fn do_secure_pump(
@ -604,12 +602,12 @@ pub fn do_secure_pump(
flow_collector[step] = flow_value; flow_collector[step] = flow_value;
let flow_value_ml = flow_value as f32 * board.board_hal.get_config().tank.ml_per_pulse; let flow_value_ml = flow_value as f32 * board.board_hal.get_config().tank.ml_per_pulse;
println!( log::info!(
"Flow value is {} ml, limit is {} ml raw sensor {}", "Flow value is {} ml, limit is {} ml raw sensor {}",
flow_value_ml, plant_config.pump_limit_ml, flow_value flow_value_ml, plant_config.pump_limit_ml, flow_value
); );
if flow_value_ml > plant_config.pump_limit_ml as f32 { if flow_value_ml > plant_config.pump_limit_ml as f32 {
println!("Flow value is reached, stopping"); log::info!("Flow value is reached, stopping");
break; break;
} }
@ -659,7 +657,7 @@ pub fn do_secure_pump(
} }
Err(err) => { Err(err) => {
if !plant_config.ignore_current_error { if !plant_config.ignore_current_error {
println!("Error getting pump current: {}", err); log::info!("Error getting pump current: {}", err);
log( log(
LogMessage::PumpMissingSensorCurrent, LogMessage::PumpMissingSensorCurrent,
plant_id as u32, plant_id as u32,
@ -685,7 +683,7 @@ pub fn do_secure_pump(
.unwrap() .unwrap()
.get_flow_meter_value(); .get_flow_meter_value();
let flow_value_ml = final_flow_value as f32 * board.board_hal.get_config().tank.ml_per_pulse; let flow_value_ml = final_flow_value as f32 * board.board_hal.get_config().tank.ml_per_pulse;
println!( log::info!(
"Final flow value is {} with {} ml", "Final flow value is {} with {} ml",
final_flow_value, flow_value_ml final_flow_value, flow_value_ml
); );
@ -736,7 +734,7 @@ fn publish_tank_state(
.mqtt_publish("/water", state.as_bytes()); .mqtt_publish("/water", state.as_bytes());
} }
Err(err) => { Err(err) => {
println!("Error publishing tankstate {}", err); log::info!("Error publishing tankstate {}", err);
} }
}; };
} }
@ -762,7 +760,7 @@ fn publish_plant_states(
board.board_hal.get_esp().delay.delay_ms(200); board.board_hal.get_esp().delay.delay_ms(200);
} }
Err(err) => { Err(err) => {
println!("Error publishing plant state {}", err); log::info!("Error publishing plant state {}", err);
} }
}; };
} }
@ -812,12 +810,12 @@ fn try_connect_wifi_sntp_mqtt(board: &mut MutexGuard<HAL>) -> NetworkMode {
Ok(ip_info) => { Ok(ip_info) => {
let sntp_mode: SntpMode = match board.board_hal.get_esp().sntp(1000 * 10) { let sntp_mode: SntpMode = match board.board_hal.get_esp().sntp(1000 * 10) {
Ok(new_time) => { Ok(new_time) => {
println!("Using time from sntp"); log::info!("Using time from sntp");
let _ = board.board_hal.get_rtc_module().set_rtc_time(&new_time); let _ = board.board_hal.get_rtc_module().set_rtc_time(&new_time);
SntpMode::SYNC { current: new_time } SntpMode::SYNC { current: new_time }
} }
Err(err) => { Err(err) => {
println!("sntp error: {}", err); log::info!("sntp error: {}", err);
board.board_hal.general_fault(true); board.board_hal.general_fault(true);
SntpMode::OFFLINE SntpMode::OFFLINE
} }
@ -826,11 +824,11 @@ fn try_connect_wifi_sntp_mqtt(board: &mut MutexGuard<HAL>) -> NetworkMode {
let nw_config = &board.board_hal.get_config().network.clone(); let nw_config = &board.board_hal.get_config().network.clone();
match board.board_hal.get_esp().mqtt(nw_config) { match board.board_hal.get_esp().mqtt(nw_config) {
Ok(_) => { Ok(_) => {
println!("Mqtt connection ready"); log::info!("Mqtt connection ready");
true true
} }
Err(err) => { Err(err) => {
println!("Could not connect mqtt due to {}", err); log::info!("Could not connect mqtt due to {}", err);
false false
} }
} }
@ -844,7 +842,7 @@ fn try_connect_wifi_sntp_mqtt(board: &mut MutexGuard<HAL>) -> NetworkMode {
} }
} }
Err(_) => { Err(_) => {
println!("Offline mode"); log::info!("Offline mode");
board.board_hal.general_fault(true); board.board_hal.general_fault(true);
NetworkMode::OFFLINE NetworkMode::OFFLINE
} }
@ -879,7 +877,7 @@ fn pump_info(
Delay::new_default().delay_ms(200); Delay::new_default().delay_ms(200);
} }
Err(err) => { Err(err) => {
println!("Error publishing pump state {}", err); log::info!("Error publishing pump state {}", err);
} }
}; };
} }
@ -975,13 +973,26 @@ fn wait_infinity(wait_type: WaitType, reboot_now: Arc<AtomicBool>) -> ! {
} }
} }
fn main() { #[esp_hal_embassy::main]
async fn main(spawner: Spawner) {
// intialize embassy
esp_log::info::logger::init_logger_from_env();
let config = esp_hal::Config::default().with_cpu_clock(CpuClock::max());
let peripherals = esp_hal::init(config);
esp_alloc::heap_allocator!(size: 64 * 1024);
let timer0 = SystemTimer::new(peripherals.SYSTIMER);
esp_hal_embassy::init(timer0.alarm0);
info!("Embassy initialized!");
let result = safe_main(); let result = safe_main();
match result { match result {
// this should not get triggered, safe_main should not return but go into deep sleep with sensible // this should not get triggered, safe_main should not return but go into deep sleep with sensible
// timeout, this is just a fallback // timeout, this is just a fallback
Ok(_) => { Ok(_) => {
println!("Main app finished, restarting"); log::info!("Main app finished, restarting");
BOARD_ACCESS BOARD_ACCESS
.lock() .lock()
.unwrap() .unwrap()
@ -992,8 +1003,9 @@ fn main() {
} }
// if safe_main exists with an error, rollback to a known good ota version // if safe_main exists with an error, rollback to a known good ota version
Err(err) => { Err(err) => {
println!("Failed main {}", err); log::info!("Failed main {}", err);
let _rollback_successful = rollback_and_reboot(); //TODO
//let _rollback_successful = rollback_and_reboot();
panic!("Failed to rollback :("); panic!("Failed to rollback :(");
} }
} }
@ -1014,8 +1026,10 @@ fn get_version() -> VersionInfo {
let branch = env!("VERGEN_GIT_BRANCH").to_owned(); let branch = env!("VERGEN_GIT_BRANCH").to_owned();
let hash = &env!("VERGEN_GIT_SHA")[0..8]; let hash = &env!("VERGEN_GIT_SHA")[0..8];
let running_partition = unsafe { esp_ota_get_running_partition() }; //TODO
let address = unsafe { (*running_partition).address }; //let running_partition = unsafe { esp_ota_get_running_partition() };
let address = 0;
//let address = unsafe { (*running_partition).address };
let partition = if address > 100000 { let partition = if address > 100000 {
"ota_1 @ " "ota_1 @ "
} else { } else {

View File

@ -2,7 +2,9 @@
use core::cell::RefCell; use core::cell::RefCell;
use core::mem::{self, MaybeUninit}; use core::mem::{self, MaybeUninit};
use std::convert::Infallible; use core::convert::Infallible;
use core::result::{Result, Result::Ok};
use core::iter::Iterator;
use hal::digital::OutputPin; use hal::digital::OutputPin;

View File

@ -1,5 +1,6 @@
use crate::{config::TankConfig, hal::HAL}; use crate::{config::TankConfig, hal::HAL};
use anyhow::Context; use anyhow::Context;
use crate::alloc::string::{String, ToString};
use serde::Serialize; use serde::Serialize;
const OPEN_TANK_VOLTAGE: f32 = 3.0; const OPEN_TANK_VOLTAGE: f32 = 3.0;

View File

@ -187,7 +187,7 @@ fn get_backup_config(
let json = match board.board_hal.get_rtc_module().get_backup_config() { let json = match board.board_hal.get_rtc_module().get_backup_config() {
Ok(config) => from_utf8(&config)?.to_owned(), Ok(config) => from_utf8(&config)?.to_owned(),
Err(err) => { Err(err) => {
println!("Error get backup config {:?}", err); log::info!("Error get backup config {:?}", err);
err.to_string() err.to_string()
} }
}; };
@ -318,7 +318,7 @@ fn wifi_scan(
let mut ssids: Vec<&String<32>> = Vec::new(); let mut ssids: Vec<&String<32>> = Vec::new();
scan_result.iter().for_each(|s| ssids.push(&s.ssid)); scan_result.iter().for_each(|s| ssids.push(&s.ssid));
let ssid_json = serde_json::to_string(&SSIDList { ssids })?; let ssid_json = serde_json::to_string(&SSIDList { ssids })?;
println!("Sending ssid list {}", &ssid_json); log::info!("Sending ssid list {}", &ssid_json);
anyhow::Ok(Some(ssid_json)) anyhow::Ok(Some(ssid_json))
} }
@ -338,7 +338,7 @@ fn ota(
) -> Result<Option<std::string::String>, anyhow::Error> { ) -> Result<Option<std::string::String>, anyhow::Error> {
let mut board = BOARD_ACCESS.lock().unwrap(); let mut board = BOARD_ACCESS.lock().unwrap();
let mut ota = OtaUpdate::begin()?; let mut ota = OtaUpdate::begin()?;
println!("start ota"); log::info!("start ota");
//having a larger buffer is not really faster, requires more stack and prevents the progress bar from working ;) //having a larger buffer is not really faster, requires more stack and prevents the progress bar from working ;)
const BUFFER_SIZE: usize = 512; const BUFFER_SIZE: usize = 512;
@ -366,13 +366,13 @@ fn ota(
break; break;
} }
} }
println!("wrote bytes ota {total_read}"); log::info!("wrote bytes ota {total_read}");
println!("finish ota"); log::info!("finish ota");
let partition = ota.raw_partition(); let partition = ota.raw_partition();
println!("finalizing and changing boot partition to {partition:?}"); log::info!("finalizing and changing boot partition to {partition:?}");
let mut finalizer = ota.finalize()?; let mut finalizer = ota.finalize()?;
println!("changing boot partition"); log::info!("changing boot partition");
board.board_hal.get_esp().set_restart_to_conf(true); board.board_hal.get_esp().set_restart_to_conf(true);
drop(board); drop(board);
finalizer.set_as_boot_partition()?; finalizer.set_as_boot_partition()?;
@ -380,7 +380,7 @@ fn ota(
} }
fn query_param(uri: &str, param_name: &str) -> Option<std::string::String> { fn query_param(uri: &str, param_name: &str) -> Option<std::string::String> {
println!("{uri} get {param_name}"); log::info!("{uri} get {param_name}");
let parsed = Url::parse(&format!("http://127.0.0.1/{uri}")).unwrap(); let parsed = Url::parse(&format!("http://127.0.0.1/{uri}")).unwrap();
let value = parsed.query_pairs().find(|it| it.0 == param_name); let value = parsed.query_pairs().find(|it| it.0 == param_name);
match value { match value {
@ -551,14 +551,14 @@ pub fn httpd(reboot_now: Arc<AtomicBool>) -> Box<EspHttpServer<'static>> {
break; break;
} }
} }
println!("wrote {total_read} for file {filename}"); log::info!("wrote {total_read} for file {filename}");
drop(file_handle); drop(file_handle);
response.flush()?; response.flush()?;
} }
Err(err) => { Err(err) => {
//todo set headers here for filename to be error //todo set headers here for filename to be error
let error_text = err.to_string(); let error_text = err.to_string();
println!("error handling get file {}", error_text); log::info!("error handling get file {}", error_text);
cors_response(request, 500, &error_text)?; cors_response(request, 500, &error_text)?;
} }
} }
@ -599,7 +599,7 @@ pub fn httpd(reboot_now: Arc<AtomicBool>) -> Box<EspHttpServer<'static>> {
Err(err) => { Err(err) => {
//todo set headers here for filename to be error //todo set headers here for filename to be error
let error_text = err.to_string(); let error_text = err.to_string();
println!("error handling get file {}", error_text); log::info!("error handling get file {}", error_text);
cors_response(request, 500, &error_text)?; cors_response(request, 500, &error_text)?;
} }
} }
@ -697,7 +697,7 @@ fn handle_error_to500(
}, },
Err(err) => { Err(err) => {
let error_text = err.to_string(); let error_text = err.to_string();
println!("error handling process {}", error_text); log::info!("error handling process {}", error_text);
cors_response(request, 500, &error_text)?; cors_response(request, 500, &error_text)?;
} }
} }
@ -725,6 +725,6 @@ fn read_up_to_bytes_from_request(
data_store.push(actual_data.to_owned()); data_store.push(actual_data.to_owned());
} }
let allvec = data_store.concat(); let allvec = data_store.concat();
println!("Raw data {}", from_utf8(&allvec)?); log::info!("Raw data {}", from_utf8(&allvec)?);
Ok(allvec) Ok(allvec)
} }