qmk_firmware/keyboards/planck
Stefan Kerkmann 3f5dc47296
[Core] Use polled waiting on ChibiOS platforms that support it (#17607)
* 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
2022-07-11 15:17:05 +02:00
..
ez Remove NO_ACTION_MACRO and NO_ACTION_FUNCTION from keyboard config.h (#16655) 2022-03-15 13:56:58 +00:00
keymaps Merge remote-tracking branch 'origin/master' into develop 2022-07-02 12:18:55 +00:00
light Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev1 Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev2 Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev3 Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev4 Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev5 Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
rev6 Remove NO_ACTION_MACRO and NO_ACTION_FUNCTION from keyboard config.h (#16655) 2022-03-15 13:56:58 +00:00
rev6_drop [Core] Use polled waiting on ChibiOS platforms that support it (#17607) 2022-07-11 15:17:05 +02:00
thk Tidy up NKRO_ENABLE rules (#15382) 2021-12-09 16:05:44 +11:00
config.h Remove NO_ACTION_MACRO and NO_ACTION_FUNCTION from keyboard config.h (#16655) 2022-03-15 13:56:58 +00:00
info.json Remove width, height and key_count from info.json (#14274) 2021-09-12 14:04:56 +10:00
planck.c Add Encoder Map Swap Hands config for boards that support both features (#17294) 2022-06-03 12:12:15 +01:00
planck.h [Keyboard] Use old custom matrix for Drop Planck+Preonic (#14488) 2021-09-18 20:10:32 -07:00
readme.md Add missing hardware availability for Plank EZ (#11069) 2020-12-08 14:12:41 -05:00

Planck

Planck

A compact 40% (12x4) ortholinear keyboard kit made and sold by OLKB and Massdrop. More info on qmk.fm

Keyboard Maintainer: Jack Humbert
Hardware Supported: Planck PCB rev1, rev2, rev3, rev4, rev5, rev6; Planck Light, Planck EZ
Hardware Availability: OLKB.com, Massdrop, Ergodox (Planck EZ)

Make example for this keyboard (after setting up your build environment):

make planck/rev4:default

Install examples:

make planck/rev5:default:dfu         # For Planck rev5 or earlier and Planck Light
make planck/rev6:default:dfu-util    # For Planck rev6

See the build environment setup and the make instructions for more information. Brand new to QMK? Start with our Complete Newbs Guide.