Zac Berkowitz

Results 5 issues of Zac Berkowitz

I'd like to use `packed_struct` in a use case where the rust struct contains an enum, and the enum values are defined by constants generated by `bindgen`. Modifying the example...

I'm extending `serde-json-core` for an embedded project to support pretty-formatted serialized strings, tuple variants, and struct variants. It's passing all of the existing tests, except for `ser::tests::test_serialize_bytes`: ```shell # (Again,...

I often need to calculate the ratio of two values with the same units. For example, ```rust let a = Kilohertz(200u32); let b = Kilohertz(100u32); // I'd like to do...

Any interest? I added support in an fork fo serde-json-core for a personal project and would be happy to submit a PR for review.

I'm looking at using this crate for a device built around the STM32L071 and found that the PWM interface is only exposed for TIM2. I'll need PWM on TIM3 as...