Jonathan 'theJPster' Pallant

Results 500 comments of Jonathan 'theJPster' Pallant

I don't have capacity at the moment to write bespoke examples free of charge. If you require support, there are several Rust consultancies that can provide this on a commercial...

You could use an AP2511 'Active High' 2.5A load switch, in MSOP-8 package for £0.13.

This might be a good question to ask over on the Rust Embedded matrix channel as it relates to the embedded-hal APIs which we implement. Which chip are you using?...

No, that's a slice with a run time size. 1. Make an array that's always big enough 2. Read the length 3. Slice the array to the desired length 4....

GitHub can make these kinds of change logs. Someone could make a draft release and then copy the contents.

I think anyone can send a PR to change the name in the Cargo.toml file, and then anyone can publish under the new name.

There's also the Waveshare Core2350B.

Can it be a configuration option?

I'm fine with just adding `Block` in the first instance, which is a `[u8; 512]` and then having the `BlockDevice` trait not be generic over block size. The set of...

I'd like to see a PR for embedded-sdmmc that uses this new trait to know for sure. I guess it's going to use `BlockDevice`. Edit: the lack of a `Block`...