summaryrefslogtreecommitdiffstats
path: root/keyboards/preonic/rev3_drop
Commit message (Collapse)AuthorAgeFilesLines
* Remove RGBLIGHT_ANIMATION and clean up effect defines for L-Q (#18727)Drashna Jaelre2022-10-151-1/+11
|
* Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan2022-09-231-1/+1
|
* Merge remote-tracking branch 'upstream/master' into developfauxpark2022-08-202-9/+7
|\
| * Move keyboard USB IDs and strings to data driven, pass 2: P-R (#18091)Ryan2022-08-202-9/+7
| |
* | Remove `UNUSED_PINS` (#17931)Nick Brassel2022-08-061-1/+0
| |
* | [Core] Use polled waiting on ChibiOS platforms that support it (#17607)Stefan Kerkmann2022-07-111-12/+13
|/ | | | | | | | | | | | | | | | | | | | | | | | * Use polled waiting on platforms that support it Due to context switching overhead waiting a very short amount of time on a sleeping thread is often not accurate and in fact not usable for timing critical usage i.e. in a driver. Thus we use polled waiting for ranges in the us range on platforms that support it instead. The fallback is the thread sleeping mechanism. This includes: * ARM platforms with CYCCNT register (ARMv7, ARMv8) this is incremented at CPU clock frequency * GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at CPU clock frequency * RP2040 ARMv6 port which uses the integrated timer peripheral which is incremented with a fixed 1MHz frequency * Use wait_us() instead of chSysPolledDelayX ...as it is powered by busy waiting now. * Add chibios waiting methods test bench
* Add Encoder Map Swap Hands config for boards that support both features (#17294)Drashna Jaelre2022-06-031-0/+3
|
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-151-2/+0
| | | | (#16655)
* Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-091-2/+1
|
* Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-011-2/+0
|
* preonic/rev3_drop: Fix old custom matrix code (#14857)Sergey Vlasov2021-10-181-3/+5
| | | | | | | | | | The old custom matrix code for Preonic rev3 was relying on the `matrix_col_t` type, because the code actually reads the row pins and assembles the state for whole columns, and then transposes the matrix in the custom debouncing code. Restore that type (which is no longer defined by the core QMK code) to make the custom matrix code work properly (when `matrix_row_t` was used instead of `matrix_col_t`, the state of two electrical rows was lost, and those electrical rows corresponded to the bottom physical row, which did not work).
* [Keyboard] Enables I2C for OLKB rev*_drop boards (#14514)Jack Humbert2021-09-193-6/+11
| | | Co-authored-by: daskygit <32983009+daskygit@users.noreply.github.com>
* [Keyboard] Use old custom matrix for Drop Planck+Preonic (#14488)Drashna Jaelre2021-09-189-0/+919
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Jack Humbert <jack.humb@gmail.com>