TeXitoi / keyberon

A rust crate to create a pure rust keyboard firmware.
MIT License
1.07k stars 78 forks source link

Migrate to embedded-hal-1.0.0 #131

Closed daehyeok closed 7 months ago

daehyeok commented 9 months ago

Finally, embedded-hal v1.0 released. Use v1.0 as a default, and make new feature embedded-hal-02 for comparability.

daehyeok commented 9 months ago

Might time to release v0.20? #69

TeXitoi commented 9 months ago

Please, no feature to toggle the embedded-hal version. That's not good practice as feature flags should be additive.

We can point to https://github.com/rust-embedded/embedded-hal/blob/master/docs/migrating-from-0.2-to-1.0.md#embedded-hal-compat for v0.2 compatibility.

daehyeok commented 9 months ago

oh.. i see. just removed v0.2..

Please, no feature to toggle the embedded-hal version. That's not good practice as feature flags should be additive.

We can point to https://github.com/rust-embedded/embedded-hal/blob/master/docs/migrating-from-0.2-to-1.0.md#embedded-hal-compat for v0.2 compatibility.

TeXitoi commented 7 months ago

Thanks