Albin Hedman

Results 60 issues of Albin Hedman

I have created a project using ``` cargo generate --git https://github.com/esp-rs/esp-idf-template cargo ``` Running `cargo pio espidf menuconfig` works fine and I can see the saved changes in the UI...

See #92 Example: ```rust let peripherals = Peripherals::take().unwrap(); let config = OperatorConfig::default().frequency(25.kHz().into()); let mcpwm = Mcpwm::new(peripherals.mcpwm0.mcpwm)?; let mut operator = Operator::new( peripherals.mcpwm0.operator0, &mcpwm, &config, peripherals.pins.gpio4, peripherals.pins.gpio5, )?; operator.set_duty_a(my_duty_percentage_a)?; // Set...

Hi! Is there any way to access the [MCPWM peripheral](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/mcpwm.html) found in ESP32 and ESP32-S3 through this crate?

enhancement

Wifi::scan() will currently restart the Wifi clearing the config. EspWifi::scan_with_optional_restart(do_restart: bool) will not do that when passing `false` as argument

Hi! I found that when connecting to a wifi and having logging enabled things go wrong. ```log assert failed: spinlock_acquire spinlock.h:122 (result == core_id || result == SPINLOCK_FREE) Backtrace:0x40081bb6 [panic_abort:/home/decahe/iot/.embuild/espressif/esp-idf/release-v4.4/components/esp_system/panic.c:402]:0x3ffbd4b00x40087d49...

This change makes it possible to set Mixed or Client mode without specifying a Wifi to connect to (as in passing Default::default()). Correct me if I am wrong but I...

Hi! First of, Thank you all for the awesome set of esp related crates :) --- I am trying to setup a device for the following scenario. 1. Device is...

The beginning of a very very rough draft of IDF 5.0 style MCPWM. (mostly reused from #93, thus a lot of code will change) Counter proposal for #93 ~~Note: This...

Hi :) I am using defmt_rtt to log data in a rtic realtime application where there are quite tight timing requirements. The code runs on an stm32g474. I have noticed...

Hi! :) Are there any plans for stm32c0 ADC support?