Dario Nieuwenhuis
Dario Nieuwenhuis
I'm trying to run the Oculus World demo using primusrun. It works, but this error is spammed continuously (every frame I'd say) in the terminal: ``` primus: warning: recreating incompatible...
- Support for changing colors using two attributes: light-color and dark-color - Updated the demo to show it.
clang doesn't like the 2-operand form of adcs/sbcs/sbc, with errors like these: ``` ../third_party/x25519-cortex-m4/x25519-cortex-m4-gcc.s:107:2: error: invalid instruction, any one of the following would fix this: adcs r2,r8 ^ ../third_party/x25519-cortex-m4/x25519-cortex-m4-gcc.s:107:12: note:...
Currently GenericTimerService takes a `&'static dyn Clock`. This has the following disadvantages: - No way to avoid dynamic dispatch - The GenericTimerService has to store the `&'static dyn Clock`, which...
The Go documentation states the following on `http.Request.RemoteAddr`: ``` The HTTP server in this package sets RemoteAddr to an "IP:port" address before invoking a handler. ``` Therefore, you could expect...
When running the `quad` example with the `gl` backend on Wayland, execution hangs and no window is shown. Some "printf-debugging" shows it's hanging at the `present_surface` call. Happens both on...
`Peripherals::steal()` has a write to a `static mut`: https://github.com/rust-embedded/cortex-m/blob/6b013138b734b9bbeb24a345f75d2bcc1c69fa8d/src/peripheral/mod.rs#L180 I expected it to be zero-cost, just constructing and returning the `Peripherals` which is a noop since it is ZST. This...
The `allocator` example no longer builds due to a semver-breaking breaking change in `linked-list-allocator`. Once `alloc-cortex-m` gets a new release we should update this repo to it. https://github.com/rust-embedded/alloc-cortex-m/issues/42
Currently you have to do something like this ```rust let mut ipv4_in1 = [0u8; 1500]; let mut ipv4_in2 = [0u8; 1500]; let mut ipv4_in3 = [0u8; 1500]; let mut ipv4_in4...
When enabling fragmentation-related features, the builder requires passing in the corresponding fragmentation buffers. Otherwise `finalize` panics. Ideally, enabling a Cargo feature shouldn't break working code: features should be additive. The...