Andres Vahter
Andres Vahter
# What does this implement/fix? LD2420 energy output mode documentation was incorrect. In energy output mode it returns: ```rust presence: bool distance: u16 energies: [u16; 16] ``` Also length was...
[UdpFullStack](https://docs.rs/embedded-nal/latest/embedded_nal/trait.UdpFullStack.html) is implemented for UDP: https://github.com/kellerkindt/w5500/blob/master/src/udp.rs#L292. But [TcpFullStack](https://docs.rs/embedded-nal/latest/embedded_nal/trait.TcpFullStack.html) is missing for TCP, only TcpClientStack is available: https://github.com/kellerkindt/w5500/blob/master/src/tcp.rs#L263.
I can see from README that AWS IoT example is in to be released state. What is status with AWS, is it technically already usable and just example is missing...
It is convenient if monotonic for RTIC is available in HAL. Otherwise users have to do it manually and relay on buggy versions that they might find from github. Recently...
Currently only single sample mode is supported by HAL. G0 is very similar to L0 and it supports [ADC over DMA](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/src/adc.rs). However firstly we need to implement `DMAMUX`: #12 and...
It would be convenient to use it like this: ``` --tlefile https://www.celestrak.com/NORAD/elements/noaa.txt ```
`rt` flag is enabled for embassy-stm32. ``` --> src/main.rs:30:1 | 30 | #[app(device = embassy_stm32, peripherals = true, dispatchers = [TIM16, TIM17])] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not find `Interrupt` in `embassy_stm32`...
I managed to get monotonic panic. TIM3 on stm32g030k6 should be 16bit timer. ```toml embassy-stm32 = { git = "https://github.com/embassy-rs/embassy.git", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c", features = [ "defmt", "stm32g030k6", "unstable-pac", "exti",...
This PR is on top of https://github.com/embassy-rs/embassy/pull/3106 and adds also DMA support to STM32 ADC V3. Original PR added it to V4. # Needs - [x] Unified ADC `DMACFG` enum:...