Danilo Bargen
Danilo Bargen
Is there support for electrical configuration of GPIO pins (e.g. enabling pull-up resistors on the Raspberry Pi)? If I look at https://www.kernel.org/doc/html/v5.3/driver-api/gpio/driver.html#gpio-electrical-configuration this should be possible, right? Or is that...
Decoding the following input file crashes in debug mode (but not in release mode, because overflows silently wrap in release mode). [id:000000,sig:06,src:000000,op:flip2,pos:1027.tar.gz](https://github.com/image-rs/jpeg-decoder/files/4192738/id.000000.sig.06.src.000000.op.flip2.pos.1027.tar.gz) ``` $ RUST_BACKTRACE=1 cargo run --bin reproduce_decode out/crashes/id\:000000\,sig\:06\,src\:000000\,op\:flip2\,pos\:1027...
Here's a case that I believe is different from #133: Running this 504 byte input file through the decode function takes ~30 seconds in release mode (at about 170% CPU...
In many Java projects, I'm using [gradle witness](https://github.com/WhisperSystems/gradle-witness) to keep a list of checksums of all dependencies. This makes sure that when building a project on a different machine, I...
Would it be possible to require `std::iter::Sum` for `Float` or maybe for `Num`? Right now I cannot `.sum()` an iterator over `T: Float`.
I'm not sure if I overlooked the option, but it would be nice if I could specify "no title" for an axis.
5V Out
The JLink allows powering the target device through [pin 19 of the 20-pin connector](https://www.segger.com/products/debug-probes/j-link/technology/interface-description/) or [pin 7 of the 10-pin connector (opposite of TDI)](https://github.com/gfroerli/hardware-v2/blob/master/datasheets/ARM-JTAG-20-10_latest-schematic.pdf) (at least on the Olimex adapter....
I'm not sure if this is possible over the shared USB port, but: When debugging a device with UART output, it would be fantastic if the hs-probe could also be...
The curve25519-dalek crate has almost 5 million downloads (1.3 million of those in the last 90 days). It is a building block for many crypto libraries. The library only uses...
Looks like deserializing newtypes is not supported yet. Code to reproduce: ``` rust extern crate docopt; extern crate rustc_serialize; use docopt::Docopt; static USAGE: &'static str = " Usage: cli_client [-i...