diff options
| author | Eric <22215921+ericywl@users.noreply.github.com> | 2018-04-30 22:46:23 +0800 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-04-30 07:46:23 -0700 |
| commit | de97c560f5b731f45f70b92d82509cc3ba97b9e9 (patch) | |
| tree | 0117557f419e8579ed7185be82d01e9bb3b10379 /keyboards/fc980c | |
| parent | bc89c4f104a9066a6d5eb80c92c504724a976cd5 (diff) | |
| download | qmk_firmware-de97c560f5b731f45f70b92d82509cc3ba97b9e9.tar.gz qmk_firmware-de97c560f5b731f45f70b92d82509cc3ba97b9e9.zip | |
Added FC980C Config (#2850)
Diffstat (limited to 'keyboards/fc980c')
| -rw-r--r-- | keyboards/fc980c/fc980c.h | 54 | ||||
| -rw-r--r-- | keyboards/fc980c/info.json | 111 | ||||
| -rw-r--r-- | keyboards/fc980c/keymaps/actuation-point-example/keymap.c | 93 | ||||
| -rw-r--r-- | keyboards/fc980c/keymaps/coloneljesus/keymap.c | 35 | ||||
| -rw-r--r-- | keyboards/fc980c/keymaps/default/keymap.c | 35 | ||||
| -rw-r--r-- | keyboards/fc980c/matrix.c | 2 |
6 files changed, 222 insertions, 108 deletions
diff --git a/keyboards/fc980c/fc980c.h b/keyboards/fc980c/fc980c.h index c3992bbed..74c468061 100644 --- a/keyboards/fc980c/fc980c.h +++ b/keyboards/fc980c/fc980c.h | |||
| @@ -37,33 +37,35 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 37 | ---------------------------------------------------------------------------------------------------------------------- | 37 | ---------------------------------------------------------------------------------------------------------------------- |
| 38 | */ | 38 | */ |
| 39 | 39 | ||
| 40 | #define KEYMAP( \ | 40 | #define LAYOUT( \ |
| 41 | K0D, K2D,K5D,K3D,K6D,K7D,K7F,K7E,K7C,K72,K71,K70,K73, K74,K76,K77,K75, \ | 41 | K0D, K2D, K5D, K3D, K6D, K7D, K7F, K7E, K7C, K72, K71, K70, K73, K74, K76, K77, K75, \ |
| 42 | K0A,K69,K59,K58,K5B,K6F,K5F,K5E,K6C,K5C,K52,K51,K50,K55, K54,K56,K57,K65, \ | 42 | K0A, K69, K59, K58, K5B, K6F, K5F, K5E, K6C, K5C, K52, K51, K50, K55, K54, K56, K57, K65, \ |
| 43 | K6A,K39,K68,K6B,K3B,K3F,K6E,K3E,K3C,K62,K61,K60,K33,K53, K64,K66,K67,K25, \ | 43 | K6A, K39, K68, K6B, K3B, K3F, K6E, K3E, K3C, K62, K61, K60, K33, K53, K64, K66, K67, K25, \ |
| 44 | K3A,K29,K38,K28,K2B,K2F,K2E,K2C,K1C,K32,K31,K20, K63, K24,K26,K27, \ | 44 | K3A, K29, K38, K28, K2B, K2F, K2E, K2C, K1C, K32, K31, K20, K63, K24, K26, K27, \ |
| 45 | K2A, K18,K08,K1B,K0B,K1F,K1E,K0E,K22,K11,K21, K30, K34, K14,K16,K17,K15, \ | 45 | K2A, K18, K08, K1B, K0B, K1F, K1E, K0E, K22, K11, K21, K30, K34, K14, K16, K17, K15, \ |
| 46 | K1A,K09,K19, K0F, K02,K01,K10, K00,K04,K06, K07,K05 \ | 46 | K1A, K09, K19, K0F, K02, K01, K10, K00, K04, K06, K07, K05) \ |
| 47 | ) { \ | 47 | { \ |
| 48 | { K00, K01, K02, KC_NO,K04, K05, K06, K07 , \ | 48 | {K00, K01, K02, KC_NO, K04, K05, K06, K07, \ |
| 49 | K08, K09, K0A, K0B, KC_NO,K0D, K0E, K0F }, \ | 49 | K08, K09, K0A, K0B, KC_NO, K0D, K0E, K0F}, \ |
| 50 | { K10, K11, KC_NO,KC_NO,K14, K15, K16, K17 , \ | 50 | {K10, K11, KC_NO, KC_NO, K14, K15, K16, K17, \ |
| 51 | K18, K19, K1A, K1B, K1C, KC_NO,K1E, K1F }, \ | 51 | K18, K19, K1A, K1B, K1C, KC_NO, K1E, K1F}, \ |
| 52 | { K20, K21, K22, KC_NO,K24, K25, K26, K27 , \ | 52 | {K20, K21, K22, KC_NO, K24, K25, K26, K27, \ |
| 53 | K28, K29, K2A, K2B, K2C, K2D, K2E, K2F }, \ | 53 | K28, K29, K2A, K2B, K2C, K2D, K2E, K2F}, \ |
| 54 | { K30, K31, K32, K33, K34, KC_NO,KC_NO,KC_NO , \ | 54 | {K30, K31, K32, K33, K34, KC_NO, KC_NO, KC_NO, \ |
| 55 | K38, K39, K3A, K3B, K3C, K3D, K3E, K3F }, \ | 55 | K38, K39, K3A, K3B, K3C, K3D, K3E, K3F}, \ |
| 56 | { KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO , \ | 56 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \ |
| 57 | KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO,KC_NO }, \ | 57 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, \ |
| 58 | { K50, K51, K52, K53, K54, K55, K56, K57 , \ | 58 | {K50, K51, K52, K53, K54, K55, K56, K57, \ |
| 59 | K58, K59, KC_NO,K5B, K5C, K5D, K5E, K5F }, \ | 59 | K58, K59, KC_NO, K5B, K5C, K5D, K5E, K5F}, \ |
| 60 | { K60, K61, K62, K63, K64, K65, K66, K67 , \ | 60 | {K60, K61, K62, K63, K64, K65, K66, K67, \ |
| 61 | K68, K69, K6A, K6B, K6C, K6D, K6E, K6F }, \ | 61 | K68, K69, K6A, K6B, K6C, K6D, K6E, K6F}, \ |
| 62 | { K70, K71, K72, K73, K74, K75, K76, K77 , \ | 62 | { \ |
| 63 | KC_NO,KC_NO,KC_NO,KC_NO,K7C, K7D, K7E, K7F } \ | 63 | K70, K71, K72, K73, K74, K75, K76, K77, \ |
| 64 | } | 64 | KC_NO, KC_NO, KC_NO, KC_NO, K7C, K7D, K7E, K7F \ |
| 65 | } \ | ||
| 66 | } | ||
| 65 | /* | 67 | /* |
| 66 | KEYMAP( | 68 | LAYOUT( |
| 67 | _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, | 69 | _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, |
| 68 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, | 70 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, |
| 69 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, | 71 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______,_______, |
diff --git a/keyboards/fc980c/info.json b/keyboards/fc980c/info.json new file mode 100644 index 000000000..f3007f2f8 --- /dev/null +++ b/keyboards/fc980c/info.json | |||
| @@ -0,0 +1,111 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "fc980c", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 19.5, | ||
| 6 | "height": 6.75, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT": { | ||
| 9 | "layout": [ | ||
| 10 | { "label": "Esc", "x": 0, "y": 0 }, | ||
| 11 | { "label": "F1", "x": 2, "y": 0 }, | ||
| 12 | { "label": "F2", "x": 3, "y": 0 }, | ||
| 13 | { "label": "F3", "x": 4, "y": 0 }, | ||
| 14 | { "label": "F4", "x": 5, "y": 0 }, | ||
| 15 | { "label": "F5", "x": 6.5, "y": 0 }, | ||
| 16 | { "label": "F6", "x": 7.5, "y": 0 }, | ||
| 17 | { "label": "F7", "x": 8.5, "y": 0 }, | ||
| 18 | { "label": "F8", "x": 9.5, "y": 0 }, | ||
| 19 | { "label": "F9", "x": 11, "y": 0 }, | ||
| 20 | { "label": "F10", "x": 12, "y": 0 }, | ||
| 21 | { "label": "F11", "x": 13, "y": 0 }, | ||
| 22 | { "label": "F12", "x": 14, "y": 0 }, | ||
| 23 | { "label": "Delete", "x": 15.5, "y": 0 }, | ||
| 24 | { "label": "Insert", "x": 16.5, "y": 0 }, | ||
| 25 | { "label": "Pg Up", "x": 17.5, "y": 0 }, | ||
| 26 | { "label": "Pg Dn", "x": 18.5, "y": 0 }, | ||
| 27 | { "label": "~", "x": 0, "y": 1.5 }, | ||
| 28 | { "label": "!", "x": 1, "y": 1.5 }, | ||
| 29 | { "label": "@", "x": 2, "y": 1.5 }, | ||
| 30 | { "label": "#", "x": 3, "y": 1.5 }, | ||
| 31 | { "label": "$", "x": 4, "y": 1.5 }, | ||
| 32 | { "label": "%", "x": 5, "y": 1.5 }, | ||
| 33 | { "label": "^", "x": 6, "y": 1.5 }, | ||
| 34 | { "label": "&", "x": 7, "y": 1.5 }, | ||
| 35 | { "label": "*", "x": 8, "y": 1.5 }, | ||
| 36 | { "label": "(", "x": 9, "y": 1.5 }, | ||
| 37 | { "label": ")", "x": 10, "y": 1.5 }, | ||
| 38 | { "label": "_", "x": 11, "y": 1.5 }, | ||
| 39 | { "label": "+", "x": 12, "y": 1.5 }, | ||
| 40 | { "label": "Backspace", "x": 13, "y": 1.5, "w": 2 }, | ||
| 41 | { "label": "Num Lock", "x": 15.5, "y": 1.5 }, | ||
| 42 | { "label": "/", "x": 16.5, "y": 1.5 }, | ||
| 43 | { "label": "*", "x": 17.5, "y": 1.5 }, | ||
| 44 | { "label": "-", "x": 18.5, "y": 1.5 }, | ||
| 45 | { "label": "Tab", "x": 0, "y": 2.5, "w": 1.5 }, | ||
| 46 | { "label": "Q", "x": 1.5, "y": 2.5 }, | ||
| 47 | { "label": "W", "x": 2.5, "y": 2.5 }, | ||
| 48 | { "label": "E", "x": 3.5, "y": 2.5 }, | ||
| 49 | { "label": "R", "x": 4.5, "y": 2.5 }, | ||
| 50 | { "label": "T", "x": 5.5, "y": 2.5 }, | ||
| 51 | { "label": "Y", "x": 6.5, "y": 2.5 }, | ||
| 52 | { "label": "U", "x": 7.5, "y": 2.5 }, | ||
| 53 | { "label": "I", "x": 8.5, "y": 2.5 }, | ||
| 54 | { "label": "O", "x": 9.5, "y": 2.5 }, | ||
| 55 | { "label": "P", "x": 10.5, "y": 2.5 }, | ||
| 56 | { "label": "{", "x": 11.5, "y": 2.5 }, | ||
| 57 | { "label": "}", "x": 12.5, "y": 2.5 }, | ||
| 58 | { "label": "|", "x": 13.5, "y": 2.5, "w": 1.5 }, | ||
| 59 | { "label": "7", "x": 15.5, "y": 2.5 }, | ||
| 60 | { "label": "8", "x": 16.5, "y": 2.5 }, | ||
| 61 | { "label": "9", "x": 17.5, "y": 2.5 }, | ||
| 62 | { "label": "+", "x": 18.5, "y": 2.5, "h": 2 }, | ||
| 63 | { "label": "Caps Lock", "x": 0, "y": 3.5, "w": 1.75 }, | ||
| 64 | { "label": "A", "x": 1.75, "y": 3.5 }, | ||
| 65 | { "label": "S", "x": 2.75, "y": 3.5 }, | ||
| 66 | { "label": "D", "x": 3.75, "y": 3.5 }, | ||
| 67 | { "label": "F", "x": 4.75, "y": 3.5 }, | ||
| 68 | { "label": "G", "x": 5.75, "y": 3.5 }, | ||
| 69 | { "label": "H", "x": 6.75, "y": 3.5 }, | ||
| 70 | { "label": "J", "x": 7.75, "y": 3.5 }, | ||
| 71 | { "label": "K", "x": 8.75, "y": 3.5 }, | ||
| 72 | { "label": "L", "x": 9.75, "y": 3.5 }, | ||
| 73 | { "label": ":", "x": 10.75, "y": 3.5 }, | ||
| 74 | { "label": "\"", "x": 11.75, "y": 3.5 }, | ||
| 75 | { "label": "Enter", "x": 12.75, "y": 3.5, "w": 2.25 }, | ||
| 76 | { "label": "4", "x": 15.5, "y": 3.5 }, | ||
| 77 | { "label": "5", "x": 16.5, "y": 3.5 }, | ||
| 78 | { "label": "6", "x": 17.5, "y": 3.5 }, | ||
| 79 | { "label": "Shift", "x": 0, "y": 4.5, "w": 2.25 }, | ||
| 80 | { "label": "Z", "x": 2.25, "y": 4.5 }, | ||
| 81 | { "label": "X", "x": 3.25, "y": 4.5 }, | ||
| 82 | { "label": "C", "x": 4.25, "y": 4.5 }, | ||
| 83 | { "label": "V", "x": 5.25, "y": 4.5 }, | ||
| 84 | { "label": "B", "x": 6.25, "y": 4.5 }, | ||
| 85 | { "label": "N", "x": 7.25, "y": 4.5 }, | ||
| 86 | { "label": "M", "x": 8.25, "y": 4.5 }, | ||
| 87 | { "label": "<", "x": 9.25, "y": 4.5 }, | ||
| 88 | { "label": ">", "x": 10.25, "y": 4.5 }, | ||
| 89 | { "label": "?", "x": 11.25, "y": 4.5 }, | ||
| 90 | { "label": "Shift", "x": 12.25, "y": 4.5, "w": 1.75 }, | ||
| 91 | { "label": "1", "x": 15.5, "y": 4.5 }, | ||
| 92 | { "label": "2", "x": 16.5, "y": 4.5 }, | ||
| 93 | { "label": "3", "x": 17.5, "y": 4.5 }, | ||
| 94 | { "label": "Enter", "x": 18.5, "y": 4.5, "h": 2 }, | ||
| 95 | { "label": "\u2191", "x": 14.25, "y": 4.75 }, | ||
| 96 | { "label": "Ctrl", "x": 0, "y": 5.5, "w": 1.25 }, | ||
| 97 | { "label": "Win", "x": 1.25, "y": 5.5 }, | ||
| 98 | { "label": "Alt", "x": 2.25, "y": 5.5, "w": 1.25 }, | ||
| 99 | { "x": 3.5, "y": 5.5, "w": 6 }, | ||
| 100 | { "label": "Alt", "x": 9.5, "y": 5.5, "w": 1.25 }, | ||
| 101 | { "label": "Ctrl", "x": 10.75, "y": 5.5 }, | ||
| 102 | { "label": "Fn", "x": 11.75, "y": 5.5, "w": 1.25 }, | ||
| 103 | { "label": "0", "x": 16.5, "y": 5.5 }, | ||
| 104 | { "label": ".", "x": 17.5, "y": 5.5 }, | ||
| 105 | { "label": "\u2190", "x": 13.25, "y": 5.75 }, | ||
| 106 | { "label": "\u2193", "x": 14.25, "y": 5.75 }, | ||
| 107 | { "label": "\u2192", "x": 15.25, "y": 5.75 } | ||
| 108 | ] | ||
| 109 | } | ||
| 110 | } | ||
| 111 | } | ||
diff --git a/keyboards/fc980c/keymaps/actuation-point-example/keymap.c b/keyboards/fc980c/keymaps/actuation-point-example/keymap.c index dcecd86b9..ac993ae6b 100644 --- a/keyboards/fc980c/keymaps/actuation-point-example/keymap.c +++ b/keyboards/fc980c/keymaps/actuation-point-example/keymap.c | |||
| @@ -14,10 +14,11 @@ GNU General Public License for more details. | |||
| 14 | You should have received a copy of the GNU General Public License | 14 | You should have received a copy of the GNU General Public License |
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | #include "fc980c.h" | 17 | #include QMK_KEYBOARD_H |
| 18 | #include "actuation_point.h" | 18 | #include "actuation_point.h" |
| 19 | 19 | ||
| 20 | enum custom_keycodes { | 20 | enum custom_keycodes |
| 21 | { | ||
| 21 | AP_UP = SAFE_RANGE, // Higher actuation point, more sensitive | 22 | AP_UP = SAFE_RANGE, // Higher actuation point, more sensitive |
| 22 | AP_DN, // Lower actuation point, less sensitive | 23 | AP_DN, // Lower actuation point, less sensitive |
| 23 | AP_READ_RDAC, // Prints current RDAC value to console | 24 | AP_READ_RDAC, // Prints current RDAC value to console |
| @@ -25,53 +26,59 @@ enum custom_keycodes { | |||
| 25 | }; | 26 | }; |
| 26 | 27 | ||
| 27 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 28 | [0] = KEYMAP( | 29 | [0] = LAYOUT( |
| 29 | KC_ESC, KC_F1,KC_F2,KC_F3,KC_F4,KC_F5,KC_F6,KC_F7,KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP,KC_PGDN, | 30 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP, KC_PGDN, |
| 30 | KC_GRV, KC_1,KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_NLCK,KC_PSLS,KC_PAST,KC_PMNS, | 31 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, |
| 31 | KC_TAB, KC_Q,KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC,KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, | 32 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, |
| 32 | MO(1) , KC_A,KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, | 33 | MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, |
| 33 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, | 34 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, |
| 34 | KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RCTL,MO(1), KC_LEFT,KC_DOWN,KC_RGHT, KC_P0, KC_PDOT | 35 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, MO(1), KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), |
| 35 | ), | 36 | [1] = LAYOUT( |
| 36 | [1] = KEYMAP( | 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, AP_READ_RDAC, AP_READ_EEPROM, AP_DN, AP_UP, _______, _______, KC_HOME, KC_END, |
| 37 | _______, _______,_______,_______,_______,_______,_______, _______, _______,AP_READ_RDAC,AP_READ_EEPROM,AP_DN,AP_UP, _______,_______,KC_HOME,KC_END, | 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 38 | _______,_______,_______,_______,_______,_______,_______,_______, _______, _______,_______,_______,_______,_______, _______,_______,_______,_______, | 39 | KC_CAPS, KC_MPRV, KC_VOLU, KC_MNXT, KC_PGUP, KC_INS, KC_HOME, LCTL(KC_LEFT), LCTL(KC_RGHT), KC_END, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, _______, |
| 39 | KC_CAPS,KC_MPRV,KC_VOLU,KC_MNXT,KC_PGUP,KC_INS,KC_HOME, LCTL(KC_LEFT),LCTL(KC_RGHT),KC_END, KC_PSCR,KC_SLCK,KC_PAUS,_______, _______,_______,_______,_______, | 40 | _______, KC_MUTE, KC_VOLD, KC_MPLY, KC_PGDN, KC_DEL, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______, _______, _______, _______, _______, |
| 40 | _______,KC_MUTE,KC_VOLD,KC_MPLY,KC_PGDN,KC_DEL,KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,_______,_______, _______, _______,_______,_______, | 41 | _______, _______, _______, _______, _______, _______, LCTL(KC_BSPC), LCTL(KC_DEL), _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, |
| 41 | _______, _______,_______,_______,_______,_______,LCTL(KC_BSPC),LCTL(KC_DEL), _______,_______,_______, _______, KC_PGUP, _______,_______,_______,_______, | 42 | _______, _______, _______, _______, _______, KC_APP, _______, KC_HOME, KC_PGDN, KC_END, _______, _______), |
| 42 | _______,_______,_______, _______, _______,KC_APP, _______, KC_HOME,KC_PGDN,KC_END, _______,_______ | ||
| 43 | ), | ||
| 44 | }; | 43 | }; |
| 45 | 44 | ||
| 46 | void matrix_init_user(void) { | 45 | void matrix_init_user(void){}; |
| 47 | }; | ||
| 48 | 46 | ||
| 49 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 47 | bool process_record_user(uint16_t keycode, keyrecord_t *record) |
| 50 | if (record->event.pressed) { | 48 | { |
| 51 | switch(keycode) { | 49 | if (record->event.pressed) |
| 52 | case AP_UP: { | 50 | { |
| 53 | actuation_point_up(); | 51 | switch (keycode) |
| 54 | return false; | 52 | { |
| 55 | } | 53 | case AP_UP: |
| 56 | case AP_DN: { | 54 | { |
| 57 | actuation_point_down(); | 55 | actuation_point_up(); |
| 58 | return false; | 56 | return false; |
| 59 | } | 57 | } |
| 60 | case AP_READ_RDAC: { | 58 | case AP_DN: |
| 61 | xprintf("RDAC: %d", read_rdac()); | 59 | { |
| 62 | return false; | 60 | actuation_point_down(); |
| 63 | } | 61 | return false; |
| 64 | case AP_READ_EEPROM: { | 62 | } |
| 65 | xprintf("EEPROM: %d", read_eeprom()); | 63 | case AP_READ_RDAC: |
| 66 | return false; | 64 | { |
| 67 | } | 65 | xprintf("RDAC: %d", read_rdac()); |
| 66 | return false; | ||
| 67 | } | ||
| 68 | case AP_READ_EEPROM: | ||
| 69 | { | ||
| 70 | xprintf("EEPROM: %d", read_eeprom()); | ||
| 71 | return false; | ||
| 72 | } | ||
| 68 | 73 | ||
| 69 | default: return true; | 74 | default: |
| 75 | return true; | ||
| 70 | } | 76 | } |
| 71 | } else { | 77 | } |
| 78 | else | ||
| 79 | { | ||
| 72 | return true; | 80 | return true; |
| 73 | } | 81 | } |
| 74 | }; | 82 | }; |
| 75 | 83 | ||
| 76 | const uint16_t PROGMEM fn_actions[] = { | 84 | const uint16_t PROGMEM fn_actions[] = {}; |
| 77 | }; | ||
diff --git a/keyboards/fc980c/keymaps/coloneljesus/keymap.c b/keyboards/fc980c/keymaps/coloneljesus/keymap.c index d82a616eb..26d476ab6 100644 --- a/keyboards/fc980c/keymaps/coloneljesus/keymap.c +++ b/keyboards/fc980c/keymaps/coloneljesus/keymap.c | |||
| @@ -14,26 +14,23 @@ GNU General Public License for more details. | |||
| 14 | You should have received a copy of the GNU General Public License | 14 | You should have received a copy of the GNU General Public License |
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | #include "fc980c.h" | 17 | #include QMK_KEYBOARD_H |
| 18 | 18 | ||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 20 | [0] = KEYMAP( | 20 | [0] = LAYOUT( |
| 21 | KC_ESC, KC_F1,KC_F2,KC_F3,KC_F4,KC_F5,KC_F6,KC_F7,KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP,KC_PGDN, | 21 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP, KC_PGDN, |
| 22 | KC_GRV, KC_1,KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_NLCK,KC_PSLS,KC_PAST,KC_PMNS, | 22 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, |
| 23 | KC_TAB, KC_Q,KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC,KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, | 23 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, |
| 24 | MO(1) , KC_A,KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, | 24 | MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, |
| 25 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, | 25 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, |
| 26 | KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RCTL,MO(1), KC_LEFT,KC_DOWN,KC_RGHT, KC_P0, KC_PDOT | 26 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, MO(1), KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), |
| 27 | ), | 27 | [1] = LAYOUT( |
| 28 | [1] = KEYMAP( | 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_END, |
| 29 | _______, _______,_______,_______,_______,_______,_______, _______, _______,_______,_______,_______,_______, _______,_______,KC_HOME,KC_END, | 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 30 | _______,_______,_______,_______,_______,_______,_______,_______, _______, _______,_______,_______,_______,_______, _______,_______,_______,_______, | 30 | KC_CAPS, KC_MPRV, KC_VOLU, KC_MNXT, KC_PGUP, KC_INS, KC_HOME, LCTL(KC_LEFT), LCTL(KC_RGHT), KC_END, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, _______, |
| 31 | KC_CAPS,KC_MPRV,KC_VOLU,KC_MNXT,KC_PGUP,KC_INS,KC_HOME, LCTL(KC_LEFT),LCTL(KC_RGHT),KC_END, KC_PSCR,KC_SLCK,KC_PAUS,_______, _______,_______,_______,_______, | 31 | _______, KC_MUTE, KC_VOLD, KC_MPLY, KC_PGDN, KC_DEL, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______, _______, _______, _______, _______, |
| 32 | _______,KC_MUTE,KC_VOLD,KC_MPLY,KC_PGDN,KC_DEL,KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,_______,_______, _______, _______,_______,_______, | 32 | _______, _______, _______, _______, _______, _______, LCTL(KC_BSPC), LCTL(KC_DEL), _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, |
| 33 | _______, _______,_______,_______,_______,_______,LCTL(KC_BSPC),LCTL(KC_DEL), _______,_______,_______, _______, KC_PGUP, _______,_______,_______,_______, | 33 | _______, _______, _______, _______, _______, KC_APP, _______, KC_HOME, KC_PGDN, KC_END, _______, _______), |
| 34 | _______,_______,_______, _______, _______,KC_APP, _______, KC_HOME,KC_PGDN,KC_END, _______,_______ | ||
| 35 | ), | ||
| 36 | }; | 34 | }; |
| 37 | 35 | ||
| 38 | const uint16_t PROGMEM fn_actions[] = { | 36 | const uint16_t PROGMEM fn_actions[] = {}; |
| 39 | }; | ||
diff --git a/keyboards/fc980c/keymaps/default/keymap.c b/keyboards/fc980c/keymaps/default/keymap.c index 4a1872ad0..b3f7bb7b1 100644 --- a/keyboards/fc980c/keymaps/default/keymap.c +++ b/keyboards/fc980c/keymaps/default/keymap.c | |||
| @@ -14,26 +14,23 @@ GNU General Public License for more details. | |||
| 14 | You should have received a copy of the GNU General Public License | 14 | You should have received a copy of the GNU General Public License |
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | #include "fc980c.h" | 17 | #include QMK_KEYBOARD_H |
| 18 | 18 | ||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 20 | [0] = KEYMAP( | 20 | [0] = LAYOUT( |
| 21 | KC_ESC, KC_F1,KC_F2,KC_F3,KC_F4,KC_F5,KC_F6,KC_F7,KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP,KC_PGDN, | 21 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_INS, KC_PGUP, KC_PGDN, |
| 22 | KC_GRV, KC_1,KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_NLCK,KC_PSLS,KC_PAST,KC_PMNS, | 22 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, |
| 23 | KC_TAB, KC_Q,KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC,KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, | 23 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_P7, KC_P8, KC_P9, KC_PPLS, |
| 24 | KC_CAPS,KC_A,KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, | 24 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, |
| 25 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, | 25 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, |
| 26 | KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RCTL,MO(1), KC_LEFT,KC_DOWN,KC_RGHT, KC_P0, KC_PDOT | 26 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, MO(1), KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), |
| 27 | ), | 27 | [1] = LAYOUT( |
| 28 | [1] = KEYMAP( | 28 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_END, |
| 29 | _______, _______,_______,_______,_______,_______,_______,_______, _______, _______, _______,_______,_______, _______,_______,KC_HOME,KC_END, | 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 30 | _______,_______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______,_______,_______, _______,_______,_______,_______, | 30 | _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, _______, _______, _______, |
| 31 | _______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR, KC_SLCK, KC_PAUS, _______,_______,_______, _______,_______,_______,_______, | 31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
| 32 | _______,_______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______, _______,_______,_______, | 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, |
| 33 | _______, _______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______, KC_PGUP, _______,_______,_______,_______, | 33 | _______, _______, _______, _______, _______, KC_APP, _______, KC_HOME, KC_PGDN, KC_END, _______, _______), |
| 34 | _______,_______,_______, _______, _______,KC_APP, _______, KC_HOME,KC_PGDN,KC_END, _______,_______ | ||
| 35 | ), | ||
| 36 | }; | 34 | }; |
| 37 | 35 | ||
| 38 | const uint16_t PROGMEM fn_actions[] = { | 36 | const uint16_t PROGMEM fn_actions[] = {}; |
| 39 | }; | ||
diff --git a/keyboards/fc980c/matrix.c b/keyboards/fc980c/matrix.c index bde0f3c13..1126f3047 100644 --- a/keyboards/fc980c/matrix.c +++ b/keyboards/fc980c/matrix.c | |||
| @@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 28 | #include "timer.h" | 28 | #include "timer.h" |
| 29 | #include "matrix.h" | 29 | #include "matrix.h" |
| 30 | #include "led.h" | 30 | #include "led.h" |
| 31 | // #include "fc980c.h" | 31 | // #include QMK_KEYBOARD_H |
| 32 | 32 | ||
| 33 | 33 | ||
| 34 | // Timer resolution check | 34 | // Timer resolution check |
