Results 14 issues of Matti Virkkunen

So, your marketing website lists Edward Snowden himself as as example of somebody who might be using this add-on. Therefore I'm assuming you claim protection against an adversary who could...

Problematic line (and the other one that does the same thing, why are there two anyways?): ``` span.html(""+linkify(decrypt)+""); ``` As far as I can tell this lets your friends insert...

Currently the pins always implement both `InputPin` and `OutputPin` even thought the pin might not be in the correct mode, and presumably trying to use it in the wrong mode...

Dummy `OutputPin`/`InputPin` implementations would be useful for implementing optional I/O pins. A dummy `OutputPin` would simply discard any value written to it, while a dummy `InputPin` would always return a...

proposal
discussion
needs-impl

Currently there is only a hack to double its size. Ideally the user should be able to supply their own `&'static [u8]` to use for control transfers - however this...

design

`UsbDevice::poll` currently has a nasty warning: ``` /// Note: The list of classes passed in must be the same for every call while the device is /// configured, or the...

design

Allocating endpoints, validating the configuration, and generating the descriptors is something that could be done at compile time. The result would be a bit of generated code that configures endpoints,...

design

MFRC522 supports I2C and serial UART besides just SPI, this adds support for the UART protocol. On a microcontroller there probably isn't much advantage to using a UART over SPI,...

This file defines non-constant value that is not future proof: https://github.com/willi-kappler/natural_constants/blob/f6fd6d7f9b3b99c5f719761a9e08f3812ac2f213/src/geosciences.rs#L51 It should perhaps be redefined as a function that returns the value calculated from the current date, or, as...

### Describe the bug The `[tryboot]` conditional does not seem to work in the EEPROM configuration to change `BOOT_ORDER`. The [documentation](https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#configuration-properties) suggests that "Conditional filters are also supported except for...

enhancement