@@ -13,9 +13,6 @@ This project is developed and maintained by the [Embedded Linux team][team].
1313
1414##[ Documentation] ( https://docs.rs/linux-embedded-hal )
1515
16- Note that current` v0.4.0-alpha.X ` releases track the unstable[ 'embedded-hal'] ` v1.0.0-alpha.Y ` .
17- For bugfixes or backports please open PRs against the` v0.3.x ` branch.
18-
1916##GPIO character device
2017
2118Since Linux kernel v4.4 the use of sysfs GPIO was deprecated and replaced by the character device GPIO.
@@ -25,7 +22,7 @@ This crate includes feature flag `gpio_cdev` that exposes `CdevPin` as wrapper a
2522To enable it update your Cargo.toml. Please note that in order to prevent` LineHandle ` fd from closing you should
2623assign to a variable, see[ cdev issue] ( https://github.com/rust-embedded/gpio-cdev/issues/29 ) for more details.
2724```
28- linux-embedded-hal = { version = "0.3 ", features = ["gpio_cdev"] }
25+ linux-embedded-hal = { version = "0.4 ", features = ["gpio_cdev"] }
2926```
3027
3128` SysfsPin ` can be still used with feature flag` gpio_sysfs ` .