Updates according to contribution guidelines

Removed superfluous backslashes
Corrected path in make and flash example
This commit is contained in:
Zackarias Montell 2021-11-07 10:02:04 +01:00
parent c81a119efb
commit 7e4a6c8a7b
2 changed files with 14 additions and 14 deletions

View File

@ -19,16 +19,16 @@
#include "quantum.h"
#define LAYOUT_planck_1x2uC( \
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
k30, k31, k32, k33, k34, k35, k37, k38, k39, k3a, k3b \
) \
{ \
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
{ k30, k31, k32, k33, k34, k35, k35, k37, k38, k39, k3a, k3b } \
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b,
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b,
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b,
k30, k31, k32, k33, k34, k35, k37, k38, k39, k3a, k3b
)
{
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b },
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b },
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b },
{ k30, k31, k32, k33, k34, k35, k35, k37, k38, k39, k3a, k3b }
}
#define LAYOUT LAYOUT_planck_1x2uC

View File

@ -5,16 +5,16 @@
A compact 40% (12x4) ortholinear keyboard kit sold by OLKB before they developed the rev1 PCB.
Keyboard Maintainer: [Wholteza](https://github.com/wholteza)
Hardware Supported: [Teensy 2.0](https://www.pjrc.com/store/teensy.html)
Hardware Availability: [PJRC](https://www.pjrc.com/store/teensy.html)
Hardware Supported: [Teensy 2.0](https://www.pjrc.com/store/teensy.html), [Planck lo-pro switch plate and bottom case](https://olkb.com/collections/planck)
Hardware Availability: [PJRC](https://www.pjrc.com/store/teensy.html), [OLKB](https://olkb.com/collections/planck)
Make example for this keyboard (after setting up your build environment):
make planck/rev4:default
make handwired/planck:default
Flashing example for this keyboard:
make planck/rev4:default
make handwired/planck:default:flash
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).