Guillaume P.
Guillaume P.
OK, I'll try to do a PR when I have a bit of time. Thanks.
I'm biased, but https://github.com/TeXitoi/keyberon
STM32F0 is, IMHO, a good choice because of well supported rust crates and crystal less USB (but you need a LDO). Keyberon would work out of the box on it....
I see that you plan for a Arm STM32F030F4P6TR. This MCU doesn't have USB. I think STM32F042F4P6 would be a better choice: crystal less USB, hardware DFU, and 32KB of...
I never needed any delay, and that's why there is not actually. It can be needed if you have some capacitance on your circuit, maybe caused by some coil or...
I thought of a very simple solution: adding a method to matrix: ```rust pub fn get_with_delay(&mut self, mut delay: F) -> Result ``` And just call `delay()` before reading the...
Maybe the release of the one shot should be at the first not one shot release, allowing to: * one shot Ctrl * press alt * press suppr Or maybe...
What's the behavior in QMK and ZMK? If that's it for the 2, I'm OK with it.
What about: ```rust OneShot(&'static OneShot), // for the small action object, see previous PR // ... #[derive(Debug, Clone, Copy, Eq, PartialEq)] pub struct OneShot { /// Action to activate until...
@Skelebot ? For reference, the corresponding PR: https://github.com/TeXitoi/keyberon/pull/67