Björn Quentin

Results 482 comments of Björn Quentin

I made some experiments here: https://github.com/bjoernQ/esp-generate

I thought about some of that in my POC The most annoying thing to me with cargo-generate was the fact that it's mostly trial-and-error - so my idea was to...

BTW I would really love a have an optional TUI like in the POC ![image](https://github.com/user-attachments/assets/0d61ef7c-bb46-4876-a4b2-6569d07c1112)

I think esp-generate is already better than esp-template. Maybe we could do a "soft launch" by advertising it on Matrix and ask users to give it a try. There is...

Removed the usage of `phy_bbpll_en_usb` in esp-rs/esp-wifi-sys#456 - at least prevents linker errors and is the right thing to do

Seems we forgot to close this previously

Sorry, this takes so long - I think code looks good but personally I wasn't able to reproduce reasonable frequencies which might be a me issue (or my logic-analyzer's issue)....

IIRC I just modified https://github.com/esp-rs/esp-hal/blob/main/examples/src/bin/rmt_tx.rs to use a given frequency, use 1 for all lengths and use carrier-modulation. It showed frequency/2 for frequencies which don't require a fractional divider but...

> Is that mean you are setting 1 tick for high and 1 tick for low, which causes the period to be 2 ticks? IIRC yes

With this code ```rust #[entry] fn main() -> ! { let peripherals = esp_hal::init(esp_hal::Config::default()); let io = Io::new(peripherals.GPIO, peripherals.IO_MUX); let freq = 16.MHz(); let rmt = Rmt::new(peripherals.RMT, freq).unwrap(); let tx_config...