Ondrej Telka
Ondrej Telka
Hello @ipetkov, sorry for the delayed response. > I unfortunately do not have access to multiple registries You can test it with just one registry. All that is needed is...
Hi, you might want to delete this part of the code on lines 151..152: ```cpp float raw = mapf(analogRead(Pin::potentiometer), 0, 1023, 0, 1); snakeSpeed = mapf(pow(raw, 3.5), 0, 1, 10,...
I'm facing the same issue - 100% CPU usage (single core) when awaiting `russh::Channel::data`. In comparison, `ssh [email protected] "cat > /dev/null" < /dev/urandom` consumes barely any CPU. Minimal example: ```rust...
> `tokio::io::repeat` is really not the best choice for benchmarking as it emits bytes one by one. I replaced `tokio::io::repeat` in my original example with just `channel.data(vec![0_u8; 67108864].as_slice()).await?;`, and the...
> Do you know how upstream tests this feature? I couldn't find any official test cases or testing procedures for this feature in the upstream repository. What should be the...
Thanks for the explanation! Since we might not want to just store a large test set somewhere, I think the following approach might be feasible: 1. Generate random test inputs...
Thank you for the feedback. The general idea seems good to me. However, I'd rather write the "script" in Rust than as a shell script, so I think creating a...