rust-sysfs-pwm icon indicating copy to clipboard operation
rust-sysfs-pwm copied to clipboard

Linux PWM Access via Sysfs in Rust

Results 10 rust-sysfs-pwm issues
Sort by recently updated
recently updated
newest added

Currently some CI targets fail because they are not available on Rust stable anymore. See [here](https://github.com/rust-embedded/rust-sysfs-pwm/actions/runs/7206376036)

`f32` use 23 bits for the fractional part. But it's not enough to cover the full `u32` range provided by the kernel.

On the [sysfs-pwm](https://crates.io/crates/sysfs-pwm) crate page in crates.io homepage points to [posborne/rust-sysfs-pwm](https://github.com/posborne/rust-sysfs-pwm) and the documentation points to [here](https://posborne.github.io/rust-sysfs-pwm) (404 page)

``` thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Io(Os { code: 2, kind: NotFound, message: "No such file or directory" })', src/libcore/result.rs:999:5 stack backtrace: 0: backtrace::backtrace::libunwind::trace at...

The README and crates.io say the docs are listed here: http://posborne.github.io/rust-sysfs-pwm/ But I'm getting a 404. :frowning_face:

Hi! I'm probably missing something very fundamental here, but I can't make the example work. It compiles and runs, however nothing happens to the LED connected to P9.22 on my...

Hi there, The documentation for this crate states that users should put `sysfs_pwm = "0.2"` into their Cargo.toml file, but it doesn't appear that this has actually been released per...