[Keyboard] handwired/trackpoint: refactor and readme cleanup (#5325)

* handwired/trackpoint: refactor

- layout macro KEYMAP renamed to LAYOUT
- keymap now uses #include QMK_KEYBOARD_H

* handwired/trackpoint: readme cleanup

- fix wiring layout image URL
- update readme structure

* handwired/trackpoint: rename readme to lowercase

* handwired/trackpoint: update header files to use #pragma once
This commit is contained in:
noroadsleft
2019-03-06 11:51:41 -08:00
committed by Drashna Jaelre
parent da2eedc0c2
commit be8257f0a7
5 changed files with 86 additions and 83 deletions
+4 -7
View File
@@ -1,13 +1,10 @@
#ifndef TRACKPOINT_H
#define TRACKPOINT_H
#pragma once
#include "quantum.h"
#define KEYMAP( \
k00, k01, k02 \
#define LAYOUT( \
k00, k01, k02 \
) \
{ \
{ k00, k01, k02} \
{ k00, k01, k02} \
}
#endif