karlri

Results 12 comments of karlri

I tried copying the sdkconfig files to C:/ and indeed that works, so I suppose they are assumed to be in target/.. I'll leave this open as the problem with...

My only concern about keeping only the blocking API would be using multiple channels. It would be nice to be able to block on writing out n different signals on...

Also, it seems to speed up connecting to wifi and obtaining an IP with dhcpv4. Test results were obtained running `examples/embassy_dhcp.rs` on **esp32s3**

Upping the task switching frequency helps, but it's not enough to get the same kind of responsiveness. Here are some new tests. It's in the middle of the workday and...

I encountered this issue as well and I think I solved it by overriding the following setting in vscode: ` "rust-analyzer.cargo.buildScripts.overrideCommand": [ "cargo", "+esp", "check", "--quiet", "--workspace", "--message-format=json", "--all-targets" ]`...

This is an ugly hack but it works. It's not very invasive because it replaces only exactly the function call that bugs out. Not likely woth a PR but if...

After some trial and error, i have got it working and I have concluded the following: ``` lto=false and lto="off" ``` are not the same. The first is actually "thin...

Here are some findings with different lto settings and what works and what does not on esp32: ``` opt-level = 3 # important. esp-storage claims opt-level must be 2 or...

This could be the same issue that we were having with system time adjustments causing clients to be kicked: https://github.com/eclipse-mosquitto/mosquitto/pull/3168

I would assume that any system without a realtime clock will sync NTP at the earliest convenience which could have the same effect as manually changing the system time. I'm...