Niklas
Niklas
To reduce the size of the binary a bit we add -mno-unaligned-access because that made struct initialization generate quite a lot more code. In the new toolchain `assert` is defined...
When we run the scanner with 1khz (1ms) we sometimes get invalid data into the EPICS layer. This is largely solved by lowering the frequency to 667hz (1.5ms) but in...
Github triggers can only be constrained by branches and not tags. Since we don't want the publish job to run on pull_requests, we use `dist`s custom `publish-jobs` instead.
This might fix the issue in the release github action. edit: At least it seems so with `dist host --output-format=json` ```patch --- main.json 2025-06-09 12:32:16 +++ branch.json 2025-06-09 12:32:04 @@...
I guess it should be as simple as this now that aarch64 runners have been added.
Hi! I'm trying to use `new_bitfield_N` in a static. Is there a reason that the generated constructor isn't const? ``` error[E0015]: cannot call non-const fn `security_configuration::new_bitfield_1` in statics --> src/app_impl.rs:135:22...
Test fails for aarch64-unknown-linux-gnu. How to reproduce: ``` $ cargo run -- --wrap-static-fns bindgen-tests/tests/headers/wrap-static-fns.h -- -target aarch64-unknown-linux-gnu Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.08s Running `target/debug/bindgen --wrap-static-fns bindgen-tests/tests/headers/wrap-static-fns.h...
Hi, I noticed that there is no issue about `no_std` support. We are considering using fluent in a bare metal embedded project. I understand that `alloc` can/must be a hard...
Create a new module called "canvas" which is responsible for double buffering. Double buffering is required to enable asynchronous transfer of the frame buffer. While the "active" frame buffer is...