schphil

Results 3 comments of schphil

thanks for your response. just for clarification: are you saying to directly use `embedded-can` from 1.0.0 alpha and skipping the implementation for [v0.2.7](https://github.com/rust-embedded/embedded-hal/tree/v0.2.7/src/can)? i'll try to open a draft pr...

Hi, thanks for your response. I would like the idea to turn the MessageId into an enum. ```rust pub enum MessageId { Standard(u16), Extended(u32), } ``` As it is now...