Julian

Results 60 comments of Julian

> Which webserver? Most people deploy their SSG without controlling any webserver. I guess there are many scenarios where users can at least control some parts of the webserver. Especially...

> Nope, feeds require a language so it is going to stay as mandatory Well, in the same manner as your arguments: who uses feeds? If I don't use it,...

> Marking `DelayUs` as complete, it's implemented for embassy-time via the time driver modules. Is there a way to use this with esp-hal-common at the moment? I would like to...

The issue seems to persist with ESP IDF v5.0 (setup via espup and esp-idf-template). I have fixed the toolchain to `channel = "nightly-2023-03-09"` With IDF v4.4.1 everything worked fine. Details...

No, there is no loop. Just scanning for an AP and suddenly it crashes. Iirc I pretty much copy&pasted the code from the example, though. ```rust pub fn wifi( ssid:...

I will try with your fix tomorrow. However, I don't get why it was working with the previous version of IDF and now it doesn't.

Using "Source Sans Pro" in the online editor works, i.e., `*strong*` causes a bold font. On my machine, the same code does not produce a bold font (I even manually...

Seems like this might have been some macos hiccup after installing the font, I guess tonights reboot is what fixed it.

From what I see, most of the `std::` uses could simply be changed to `core::`. Not sure about the places where a `Vec` is used, but that might be replacable...

Hmm true, that requires at least `alloc`. Though searching for `std::sync::Arc` yields only 2 results. See https://github.com/search?q=repo%3Aplotters-rs%2Fplotters+std%3A%3Async%3A%3AArc&type=code Maybe that's managable? I mean it's only used for some chart state, that...