Ryan Summers

Results 206 comments of Ryan Summers

@olback That's interesting to me because we're running with very similar clock configurations: https://github.com/quartiq/stabilizer/blob/main/src/hardware/setup.rs#L292 Can you confirm that you're not seeing any USB-related issues with the cod eyou just referenced?...

On Matrix, it was noted that a user was able to resolve this by adding a ~1ms delay after the FDMOD register is configured. The datasheet specifies this needs to...

Sorry for the delay, I've had very little free time until recently. I looked into the request and this seems sound to me. I don't see an explicit reason why...

In light of not having a response here, I'm going to opt with accepting this and seeing if we discover any issues as we go along.

> * the resolver type/`Dns` trait: where the stack may or may not provide the trait. maybe that could be made fallible/late fallible. Or we could always require `Dns`. Given...

I suspect https://github.com/rust-embedded-community/serde-json-core/issues/86 may resolve this issue, but in general, `serde-json-core` is not really intended to be handling dynamic types. As a workaround, I'd recommend that you do a two...

You can't deserialize into a `&str` type because the destination data type needs to own the memory for the unescaped string from what I understand. I believe you should be...

Right now I would classify it as more of an intentional design choice. The `from_slice` and `from_string` APIs currently don't do attempt at string de-escaping. If the user wants to...

If the user is explicitly opting in to an API that does not claim to do string escaping, I would expect a deserialization of r#""\n""# to result in a deserialized...

I don't have permissions for any security-related issues on this repository. CC @eldruin can you help us out here?