Wouter Geraedts
Wouter Geraedts
Fixes #158.
Currently if you have ```rust let mut validation = Validation::default(); validation.algorithms = vec![ Algorithm::HS256, Algorithm::HS384, Algorithm::HS512, Algorithm::RS256, Algorithm::RS384, Algorithm::RS512, ]; ``` and try to validate a `RS256` signed token, you...
I noticed no hardware interrupts being triggered on pin `INTn`. Fixed by: * fixing the mask construction for the sockets from a bitwise AND `&` to bitwise OR `|`. *...
Quickly ported the ESP32C3 support and example to the ESP32C6 HP core. ### TODO - [ ] Restructure & deduplicate this code with the ESPC3 code. - [x] The GPIO...
A proposal for using the internal memory to store the page that is being swapped, spread over multiple pages to maximize flash life expectancy. Also adds the swap exchange step...
During the exchange of pages a page may be lost at brownout because it only exists in RAM. This can happen during or shortly after this statement: https://github.com/jhbruhn/moonboot/blob/efadc79b9edaeec0366ae6ab2276290bc09a46cd/src/boot/mod.rs#L252-L254 Fixing this...
I am currently writing a `device-driver` crate for the [Lumissil IS31FL3761 LED matrix driver IC](https://www.lumissil.com/applications/industrial/appliance/major-appliances/range-hood/is31fl3761). This IC is part of a family of chipsets that have a varying amount of...
This PR fixes two minor issues in my search to fix #3248. It does not actually fix practical issues for the typical usecase. * During `reset_hardware_deassert` the nreset pin would...
The trait `AdcChannel` method [`degrade_adc`](https://github.com/embassy-rs/embassy/blob/9b8d6d6f22193ba020ed18c622cb8c6d59e1254f/embassy-stm32/src/adc/mod.rs#L146-L154) consumes `self`, and in the case of op-amps causes `set_opampen(false)` to be called in [`Drop`](https://github.com/embassy-rs/embassy/blob/9b8d6d6f22193ba020ed18c622cb8c6d59e1254f/embassy-stm32/src/opamp.rs#L455-L461). When then sampling the internal line you get noise. To...
Issues have been reported with STM32C092RC flash erasing memory whilst writing (other) memory. Meanwhile CMSIS-Pack 2.3.0 has been released by STM with a few new flash algorithms. Steps performed: *...