Dániel Buga

Results 578 comments of Dániel Buga

I would like to add that this issue means ARM binaries built with e.g. `buildjet-2vcpu-ubuntu-2204-arm` are incorrectly handled by the install script and the installed binaries may not work. An...

> I’m currently following along with the pcnt_encoder example to write a similar implementation for led in ledc_pulse_counting.rs, but I’m encountering compilation issues. Could you provide guidance on how to...

Technically, you need to use a critical section (or better, esp_hal::lock) if it is possible to modify a register from multiple places. Essentially in every case where a type is...

I don't see a good solution here short of rewriting the whole driver. Which we will need to do, it doesn't look like the best designed driver to me... Regardless,...

We might be able to place this into `esp_hal::init` once #1970 and its follow-up are merged.

I'm not very familiar with the rtc API, but I think you should add `RtcSlowClock` to `Config`, call `rtc::configure_clock` here and remove the clock source parameter from `Rtc::new`. There's no...

@MabezDev can we get rid of post_init in favour of esp_hal::init?

> It would be nice if probe-rs supported these kinds of external flash loaders It does, you just have to write them for your target.

You need one that implements the CMSIS-PACK flash algorithm standard, and you need to package it up as part of a target description yaml. Whether you have an existing one...