uliano
uliano
- Version of embedded-graphics in use (if applicable):"0.7. - Target: real hardware - If using real hardware: mipidsi = "0.6.0" [(https://crates.io/crates/mipidsi)] ## Description of the problem/feature request/other I can draw...
the last line of clock_init while ((RCC->CFGR & 12) == 0) spin(1); // Wait until done should probably be: while ((RCC->CFGR & 12) != 8) spin(1);
It works flawlessly with the versioned releases: ``` embassy-stm32 = { version = "0.1.0" , features = ["defmt", "time-driver-any", "stm32f446re", "memory-x", "unstable-pac", "exti"] } embassy-executor = {version = "0.5.0" ,...
### What Operating System(s) are you seeing this problem on? Windows ### Which Wayland compositor or X11 Window manager(s) are you using? _No response_ ### WezTerm version 20230929-093024-5e0fd1a0 ### Did...
Added two new constructors to ExclusiveDevice to allow for SPI devices that don't require a CS pin
### Summary - Introduced `NoPin` (in `embedded-hal::digital`) as a dummy pin for hardware-managed CS scenarios. - Added two new constructors to `ExclusiveDevice`, namely `new_no_cs` and `new_no_cs_no_delay` (could't figure out any...