835207193a
Updated formatting again... |
||
---|---|---|
.. | ||
backlight.c | ||
backlight.h | ||
config.h | ||
extended_keymap_common.c | ||
extended_keymap_common.h | ||
extended_keymap_jack.c | ||
keymap_brett.c | ||
keymap_common.c | ||
keymap_common.h | ||
keymap_dotcom.c | ||
keymap_jack.c | ||
keymap_joe.c | ||
keymap_matthew.c | ||
keymap_nathan.c | ||
keymap_peasant.c | ||
keymap_reed.c | ||
keymap_sean.c | ||
keymap_shane.c | ||
keymap_simon.c | ||
keymap_tim.c | ||
keymap_wilba.c | ||
led.c | ||
Makefile | ||
Makefile.pjrc | ||
matrix.c | ||
matrix_center.c | ||
matrix_handwire.c | ||
README.md |
Planck keyboard firmware
DIY/Assembled compact ortholinear 40% keyboard by Ortholinear Keyboards.
Extended Keymap
If you include extended_keymap_common.h instead of keymap_common.h at the top of your file, you'll have access to a bunch of goodies:
- Use
LSFT()
,LCTL()
, et. al. (listed in extended_keymap_common.h) as modifiers for keys (daisy-chain-able) - Use
FUNC(1)
instead ofFN1
(etc.) to access the function layers beyond the 32 function layer limit - Use
CM_F
instead ofKC_F
to get the ColeMak equivilent for shortcuts (maps backwards) - Use
MACRODOWN()
instead ofMACRO()
to easily make a keydown macro (CM_*
works here too)
Some notes on usage:
- The
KEYMAP()
macro is unable to be used due to the bitwise modifications that take place - refer to extended_keymap_jack.c to see how to set things up with theKC_
prefix - Keep an eye on the Makefile - this needs to include the correct files to work
- Don't forget to use
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
instead of the 8bit equivilent
Build
Follow this guide to setup your development environment before anything else. Abbreviated instructions are provide at the bottom of this document
Download the whole firmware here and navigate to the keyboard/planck folder. Once your dev env is setup, you'll be able to type make
to generate your .hex that you can load with the Teensy app onto your Planck (once you've hit reset/shorted GND & RST).
Depending on which keymap you would like to use, you will have to compile slightly differently.
####Default
To build the default keymap, simply move to the tmk_keyboard/keyboard/planck/ and run make
as follows:
$ make
####Extended Keymaps
Extended keymaps need to be specified as follows:
$ make KEYMAP=[common|jack|<name>]
Applicable keymaps should follow the format extended_keymap_name.c
####Common Keymaps
Common keymaps need to be specified as follows:
$ make KEYMAP=[common|jack|<name>] COMMON=true
Applicable keymaps should follow the format keymap_name.c
Keymap
Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create file named keymap_<name>.c
and see keymap document (you can find in top README.md) and existent keymap files.
To build firmware binary hex file with a certain keymap just do make
with KEYMAP
option like:
$ make KEYMAP=[<name>]