Daniel Svensson

Results 55 issues of Daniel Svensson

This is the same behavior as centerprints.

enhancement

Authored by Spike, with some minor adjustments.

enhancement
Quake
plugin: ezhud

Adds support for: * r_tracker_lines * r_tracker_time

enhancement
Quake

`pip` will try to lookup wheels in lower case URLs, while `pip2pi` will generate in whatever case the package name has. One example of this is `PyYAML`, which will not...

Not sure if it's possible, but it feels like something that would be nice to deal with an @InjectSomething tag. Perhaps with supportFragmentManager vs fragmentManager distinction. Currently do this in...

enhancement

Figure out a good API for transmitting data. Blocked by me not having an extra CC1101 module to talk to, nor a personal use case.

The embedded-hal eco system defines a concept of timers. This should be passed into the constructor like the `SPI` and `CS` structures, and used in for example `receive(...)`.

Figure out how to use linux-embedded-hal on Raspberry Pi with interrupts.

The following code: ```rust self.modify_register(config::Register::MDMCFG2, |r| { MDMCFG2(r).modify().sync_mode(mode.value()).bits() })?; ``` ... should ideally not mention MDMCFG2 in the body, nor modify(): ```rust self.modify_register(config::Register::MDMCFG2, |r| { r.sync_mode(mode.value()).bits() })?; ``` And similarily,...

Add an example that transmits one packet, and another example that receives this packet using embedded-hal on for example the bluepill platform.