Robin Mueller

Results 138 comments of Robin Mueller

I have the same problem right now and I am glad I found someone with the same problem. I had a solution for the Uno and the MEGA (found on...

A solution which compiles ( I can't test it because of unrelated linker errors): ```rust #[task( shared = [tx_transfer], )] async fn serial_tx_handler(mut cx: serial_tx_handler::Context, init_delay_ms: u32) { Systick::delay(init_delay_ms.millis()).await; ......

While it was possible to spawn the task inside the ISR, this is not really a valid approach anymore because all software tasks are running inside a loop now. This...

Page 16 of the [CCSDS standard](https://public.ccsds.org/Pubs/301x0b4e1.pdf) mentions that all segments in the CDS timestamp are right adjusted binary counters. May I know why you need little endian for those individual...

I ran into this as well. Might be useful to add some docs for this?

See https://github.com/rtic-rs/rtic/pull/977

I actually went for a zerocopy/serde implementation now. I can still send you my serde compatible version (has become a bit overengineered though..). I think something was not available in...

Yeah there are also other libraries out there based on `zerocopy`: https://docs.rs/ccsds_primary_header/latest/ccsds_primary_header/ . Deku has the advantage that it can handle bitfields as well though, so I am still interested...

For anyone stumbling upon this, until rel-v2024.1 gets released or there is a patched version of rel-v2023.2: 1. Remove `sync-s="true"` from the `manifest.xml` file on the `meta-xilinx` line,. You can...