ivmarkov

Results 697 comments of ivmarkov
trafficstars

> I am getting build errors that I do not understand why they are happening. These occur in the example file rmt_transceiver.rs > > ``` > error[E0432]: unresolved import `log`...

Would it be possible to rebase this PR for latest `master`? I just merged `next` into it so there are lots of changes.

> It looks like a lot of changes to rmt.rs I am curious why TransmitConfig was changed to Config. It seemed to be an appropriate name since there is a...

@enelson1001 The PR is still reported as having conflicts by github.

> Looks like we now have the following - line 177 > > ``` > pub type RmtConfig = config::TransmitConfig; > ``` > > Should this be renamed to TxRmtConfig...

> Should the rmt examples use > > ``` > use esp_idf_hal::rmt::TxRmtConfig; > ``` > > _Instead of the following?_ > > ``` > use esp_idf_hal::rmt::config::TransmitConfig; > ``` Not so...

These are easy. And by the way these are compilation errors, not Clippy lints. Just use the `into_ref!` macro. Search the esp-idf-hal to see how it is used in the...

> I am getting the following error when I try to use esp--idf-hal in a simple project. I have run rustup update but that did not help. Is there some...

Fixed in `master`.

> Right now you can only set the http and https port of the httpd server. > > Internally this gets resolved to a bigger configuration with more interesting options...