Scott Mabin

Results 335 comments of Scott Mabin

You're right, if we're already touching that code, we may as well add the time32 flag. It's better to have the work around there than not at all! > You...

Can you obtain the error from rust analyzer?

I don't use neovim (for Rust at least) but there must be a way to obtain the error from rust-analzyer within neovim. In vscode there is a separate log window.

Imo this is probably not worth pursuing for the v3 release, removing from the milestone.

Now that we have the xtask, I think we should also document some do's and don't of how to use it. For example we should state that all xtask commands...

Can we decide on a path forward here?

Let's go with the `Key` enum, I think we can make the API simpler like @jessebraham was suggesting by adding `From` impls for `Key`, meaning the API doesn't get much...

I went looking for how esp-idf handles it. It seems its possible to tell synchronize the buffer in cache with the DMA peripheral. They call [esp-cache_msync](https://github.com/espressif/esp-idf/blob/c8243465e45489835d645bf217a6929fd0c01b7f/components/driver/spi/gpspi/spi_master.c#L911-L914) in the driver before...

Huh, last time I went looking into how the cache works it was all ROM code and zero docs. Now there is a esp_mm component: https://github.com/espressif/esp-idf/tree/c8243465e45489835d645bf217a6929fd0c01b7f/components/esp_mm with some docs as...

Thanks for pointing this out, this indeed looks like an oversight. Would you mind PRing a fix?