AdinAck

Results 11 issues of AdinAck

When running the app, is says the current charge is "keyNotFound(code: "BCLM")%". Even though it says success, the battery charge is not being limited. I also get this message when...

It seems that a constructor returning `Option` is not supported. I am embedding Rust in a Swift project and of course Swift has `init?` so I'm thinking in the UDL...

## Motivation Now that the interface to create complementary PWM channels is exposed, it should include controlling the dead time as well. ## Change(s) Description - Add `set_dead_time` function to...

## Motivation - The provided `serial_echo` example seemed lacking imho - Would be really nice if it used interrupts ## Change(s) - Added `serial_echo_irq.rs` to `/examples`

Add the Signal structure to rtic-sync. A Signal has unlimited writers and one reader, many writes can occur before a read, all overwriting the previous. A reader can asynchronously wait...

*Moved from `stm32-rs-nightlies`* I ran into an issue when writing to a register where I wanted to return a value from the write, like this: ```rust let val = reg.write(|w|...

This PR tracks the addition of `defmt::Format` derives on various HAL structures.

It looks like some documentation got cut short in `dma::transfer`: ```rust /// Marker type for a transfer with a mutable source and backed by a pub struct MutTransfer; /// Marker...

In the `cortex-m-rt` docs it recommends PACs create a `Vector` type like so: ```rust pub union Vector { handler: unsafe extern "C" fn(), reserved: usize, } ``` and this is...

Currently, generated getters for optional enums emit the default enum variant if the field is not present in the message. This PR renames this behavior to "_or_default" and changes the...

breaking change