diff options
| author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-01-12 02:07:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-11 10:07:14 -0800 |
| commit | 1df37114320b816fe318316bce705d772859c610 (patch) | |
| tree | 4c00c9cfe831ecdea6c12d64b47da3471e978a60 /keyboards/amjkeyboard | |
| parent | 3d63c814d321be7e97dfdef295ee6e1deb3a1fcc (diff) | |
| download | qmk_firmware-1df37114320b816fe318316bce705d772859c610.tar.gz qmk_firmware-1df37114320b816fe318316bce705d772859c610.zip | |
[Keyboard] AMJ84 (#15742)
Diffstat (limited to 'keyboards/amjkeyboard')
| -rw-r--r-- | keyboards/amjkeyboard/amj84/amj84.c | 4 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/amj84.h | 30 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/config.h | 112 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/info.json | 97 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/keymaps/default/keymap.c | 53 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/readme.md | 27 | ||||
| -rw-r--r-- | keyboards/amjkeyboard/amj84/rules.mk | 18 |
8 files changed, 342 insertions, 0 deletions
diff --git a/keyboards/amjkeyboard/amj84/amj84.c b/keyboards/amjkeyboard/amj84/amj84.c new file mode 100644 index 000000000..49116c48c --- /dev/null +++ b/keyboards/amjkeyboard/amj84/amj84.c | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | // Copyright 2022 peepeetee (@peepeetee) | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #include "amj84.h" | ||
diff --git a/keyboards/amjkeyboard/amj84/amj84.h b/keyboards/amjkeyboard/amj84/amj84.h new file mode 100644 index 000000000..19718da8c --- /dev/null +++ b/keyboards/amjkeyboard/amj84/amj84.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | // Copyright 2022 peepeetee (@peepeetee) | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include "quantum.h" | ||
| 7 | |||
| 8 | /* This is a shortcut to help you visually see your layout. | ||
| 9 | * | ||
| 10 | * The first section contains all of the arguments representing the physical | ||
| 11 | * layout of the board and position of the keys. | ||
| 12 | * | ||
| 13 | * The second converts the arguments into a two-dimensional array which | ||
| 14 | * represents the switch matrix. | ||
| 15 | */ | ||
| 16 | #define LAYOUT( \ | ||
| 17 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ | ||
| 18 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ | ||
| 19 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, \ | ||
| 20 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ | ||
| 21 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E, \ | ||
| 22 | K50, K51, K52, K55, K58, K59, K5A, K5B, K5C, K5D, K5E \ | ||
| 23 | ) { \ | ||
| 24 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ | ||
| 25 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ | ||
| 26 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E }, \ | ||
| 27 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ | ||
| 28 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E }, \ | ||
| 29 | { K50, K51, K52,KC_NO,KC_NO,K55,KC_NO,KC_NO,K58,K59,K5A, K5B, K5C, K5D, K5E } \ | ||
| 30 | } | ||
diff --git a/keyboards/amjkeyboard/amj84/config.h b/keyboards/amjkeyboard/amj84/config.h new file mode 100644 index 000000000..279d1268e --- /dev/null +++ b/keyboards/amjkeyboard/amj84/config.h | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | // Copyright 2022 peepeetee (@peepeetee) | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include "config_common.h" | ||
| 7 | |||
| 8 | /* USB Device descriptor parameter */ | ||
| 9 | #define VENDOR_ID 0x00D8 //A+M+J | ||
| 10 | #define PRODUCT_ID 0x6068 | ||
| 11 | #define DEVICE_VER 0x0001 | ||
| 12 | #define MANUFACTURER Han Chen | ||
| 13 | #define PRODUCT AMJ84 | ||
| 14 | |||
| 15 | /* key matrix size */ | ||
| 16 | #define MATRIX_ROWS 6 | ||
| 17 | #define MATRIX_COLS 15 | ||
| 18 | |||
| 19 | /* | ||
| 20 | * Keyboard Matrix Assignments | ||
| 21 | * | ||
| 22 | * Change this to how you wired your keyboard | ||
| 23 | * COLS: AVR pins used for columns, left to right | ||
| 24 | * ROWS: AVR pins used for rows, top to bottom | ||
| 25 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 26 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 27 | * | ||
| 28 | */ | ||
| 29 | #define MATRIX_ROW_PINS { D0, F7, F6, F5, F4, D5 } | ||
| 30 | #define MATRIX_COL_PINS { F1, F0, E6, C7, C6, B0, D4, B1, B7, B5, B4, D7, D6, B3, D1 } | ||
| 31 | #define UNUSED_PINS | ||
| 32 | |||
| 33 | /* COL2ROW, ROW2COL */ | ||
| 34 | #define DIODE_DIRECTION COL2ROW | ||
| 35 | |||
| 36 | /* | ||
| 37 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 38 | */ | ||
| 39 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 40 | |||
| 41 | //#define LED_NUM_LOCK_PIN B0 | ||
| 42 | //#define LED_CAPS_LOCK_PIN B2 | ||
| 43 | //#define LED_SCROLL_LOCK_PIN B2 | ||
| 44 | //#define LED_COMPOSE_PIN B3 | ||
| 45 | //#define LED_KANA_PIN B4 | ||
| 46 | |||
| 47 | #define BACKLIGHT_PIN B6 | ||
| 48 | #define BACKLIGHT_LEVELS 3 | ||
| 49 | #define BACKLIGHT_BREATHING | ||
| 50 | |||
| 51 | |||
| 52 | |||
| 53 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 54 | #define DEBOUNCE 5 | ||
| 55 | |||
| 56 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 57 | //#define MATRIX_HAS_GHOST | ||
| 58 | |||
| 59 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 60 | #define LOCKING_SUPPORT_ENABLE | ||
| 61 | /* Locking resynchronize hack */ | ||
| 62 | #define LOCKING_RESYNC_ENABLE | ||
| 63 | |||
| 64 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 65 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 66 | */ | ||
| 67 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
| 68 | |||
| 69 | /* | ||
| 70 | * Force NKRO | ||
| 71 | * | ||
| 72 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 73 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 74 | * makefile for this to work.) | ||
| 75 | * | ||
| 76 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 77 | * until the next keyboard reset. | ||
| 78 | * | ||
| 79 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 80 | * fully operational during normal computer usage. | ||
| 81 | * | ||
| 82 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 83 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 84 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 85 | * power-up. | ||
| 86 | * | ||
| 87 | */ | ||
| 88 | #define FORCE_NKRO | ||
| 89 | |||
| 90 | /* | ||
| 91 | * Feature disable options | ||
| 92 | * These options are also useful to firmware size reduction. | ||
| 93 | */ | ||
| 94 | |||
| 95 | /* disable debug print */ | ||
| 96 | //#define NO_DEBUG | ||
| 97 | |||
| 98 | /* disable print */ | ||
| 99 | //#define NO_PRINT | ||
| 100 | |||
| 101 | /* disable action features */ | ||
| 102 | //#define NO_ACTION_LAYER | ||
| 103 | //#define NO_ACTION_TAPPING | ||
| 104 | //#define NO_ACTION_ONESHOT | ||
| 105 | |||
| 106 | /* disable these deprecated features by default */ | ||
| 107 | #define NO_ACTION_MACRO | ||
| 108 | #define NO_ACTION_FUNCTION | ||
| 109 | |||
| 110 | /* Bootmagic Lite key configuration */ | ||
| 111 | #define BOOTMAGIC_LITE_ROW 0 | ||
| 112 | #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/amjkeyboard/amj84/info.json b/keyboards/amjkeyboard/amj84/info.json new file mode 100644 index 000000000..484823fcc --- /dev/null +++ b/keyboards/amjkeyboard/amj84/info.json | |||
| @@ -0,0 +1,97 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "AMJ84", | ||
| 3 | "maintainer": "peepeetee", | ||
| 4 | "url": "", | ||
| 5 | "layouts": { | ||
| 6 | "LAYOUT": { | ||
| 7 | "layout": [ | ||
| 8 | { "x": 0, "y": 0 }, | ||
| 9 | { "x": 1, "y": 0 }, | ||
| 10 | { "x": 2, "y": 0 }, | ||
| 11 | { "x": 3, "y": 0 }, | ||
| 12 | { "x": 4, "y": 0 }, | ||
| 13 | { "x": 5, "y": 0 }, | ||
| 14 | { "x": 6, "y": 0 }, | ||
| 15 | { "x": 7, "y": 0 }, | ||
| 16 | { "x": 8, "y": 0 }, | ||
| 17 | { "x": 9, "y": 0 }, | ||
| 18 | { "x": 10, "y": 0 }, | ||
| 19 | { "x": 11, "y": 0 }, | ||
| 20 | { "x": 12, "y": 0 }, | ||
| 21 | { "x": 13, "y": 0 }, | ||
| 22 | { "x": 14, "y": 0 }, | ||
| 23 | { "x": 15, "y": 0 }, | ||
| 24 | { "x": 0, "y": 1 }, | ||
| 25 | { "x": 1, "y": 1 }, | ||
| 26 | { "x": 2, "y": 1 }, | ||
| 27 | { "x": 3, "y": 1 }, | ||
| 28 | { "x": 4, "y": 1 }, | ||
| 29 | { "x": 5, "y": 1 }, | ||
| 30 | { "x": 6, "y": 1 }, | ||
| 31 | { "x": 7, "y": 1 }, | ||
| 32 | { "x": 8, "y": 1 }, | ||
| 33 | { "x": 9, "y": 1 }, | ||
| 34 | { "x": 10, "y": 1 }, | ||
| 35 | { "x": 11, "y": 1 }, | ||
| 36 | { "x": 12, "y": 1 }, | ||
| 37 | { "w": 2, "x": 13, "y": 1 }, | ||
| 38 | { "x": 15, "y": 1 }, | ||
| 39 | { "w": 1.5, "x": 0, "y": 2 }, | ||
| 40 | { "x": 1.5, "y": 2 }, | ||
| 41 | { "x": 2.5, "y": 2 }, | ||
| 42 | { "x": 3.5, "y": 2 }, | ||
| 43 | { "x": 4.5, "y": 2 }, | ||
| 44 | { "x": 5.5, "y": 2 }, | ||
| 45 | { "x": 6.5, "y": 2 }, | ||
| 46 | { "x": 7.5, "y": 2 }, | ||
| 47 | { "x": 8.5, "y": 2 }, | ||
| 48 | { "x": 9.5, "y": 2 }, | ||
| 49 | { "x": 10.5, "y": 2 }, | ||
| 50 | { "x": 11.5, "y": 2 }, | ||
| 51 | { "x": 12.5, "y": 2 }, | ||
| 52 | { "w": 1.5, "x": 13.5, "y": 2 }, | ||
| 53 | { "x": 15, "y": 2 }, | ||
| 54 | { "w": 1.75, "x": 0, "y": 3 }, | ||
| 55 | { "x": 1.75, "y": 3 }, | ||
| 56 | { "x": 2.75, "y": 3 }, | ||
| 57 | { "x": 3.75, "y": 3 }, | ||
| 58 | { "x": 4.75, "y": 3 }, | ||
| 59 | { "x": 5.75, "y": 3 }, | ||
| 60 | { "x": 6.75, "y": 3 }, | ||
| 61 | { "x": 7.75, "y": 3 }, | ||
| 62 | { "x": 8.75, "y": 3 }, | ||
| 63 | { "x": 9.75, "y": 3 }, | ||
| 64 | { "x": 10.75, "y": 3 }, | ||
| 65 | { "x": 11.75, "y": 3 }, | ||
| 66 | { "x": 12.75, "y": 3 }, | ||
| 67 | { "w": 1.25, "x": 13.75, "y": 3 }, | ||
| 68 | { "x": 15, "y": 3 }, | ||
| 69 | { "w": 2.25, "x": 0, "y": 4 }, | ||
| 70 | { "x": 2.25, "y": 4 }, | ||
| 71 | { "x": 3.25, "y": 4 }, | ||
| 72 | { "x": 4.25, "y": 4 }, | ||
| 73 | { "x": 5.25, "y": 4 }, | ||
| 74 | { "x": 6.25, "y": 4 }, | ||
| 75 | { "x": 7.25, "y": 4 }, | ||
| 76 | { "x": 8.25, "y": 4 }, | ||
| 77 | { "x": 9.25, "y": 4 }, | ||
| 78 | { "x": 10.25, "y": 4 }, | ||
| 79 | { "x": 11.25, "y": 4 }, | ||
| 80 | { "w": 1.75, "x": 12.25, "y": 4 }, | ||
| 81 | { "x": 14, "y": 4 }, | ||
| 82 | { "x": 15, "y": 4 }, | ||
| 83 | { "w": 1.25, "x": 0, "y": 5 }, | ||
| 84 | { "w": 1.25, "x": 1.25, "y": 5 }, | ||
| 85 | { "w": 1.25, "x": 2.5, "y": 5 }, | ||
| 86 | { "w": 5.25, "x": 3.75, "y": 5 }, | ||
| 87 | { "x": 9, "y": 5 }, | ||
| 88 | { "x": 10, "y": 5 }, | ||
| 89 | { "x": 11, "y": 5 }, | ||
| 90 | { "x": 12, "y": 5 }, | ||
| 91 | { "x": 13, "y": 5 }, | ||
| 92 | { "x": 14, "y": 5 }, | ||
| 93 | { "x": 15, "y": 5 } | ||
| 94 | ] | ||
| 95 | } | ||
| 96 | } | ||
| 97 | } | ||
diff --git a/keyboards/amjkeyboard/amj84/keymaps/default/keymap.c b/keyboards/amjkeyboard/amj84/keymaps/default/keymap.c new file mode 100644 index 000000000..11f848235 --- /dev/null +++ b/keyboards/amjkeyboard/amj84/keymaps/default/keymap.c | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | // Copyright 2022 peepeetee (@peepeetee) | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #include QMK_KEYBOARD_H | ||
| 5 | |||
| 6 | |||
| 7 | |||
| 8 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 9 | /* Base */ | ||
| 10 | /* Keymap 0: Default Layer | ||
| 11 | * ,----------------------------------------------------------------. | ||
| 12 | * |Esc| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Home |Del| | ||
| 13 | * |------------------------------------------------------------|---| | ||
| 14 | * |` | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |PgU| | ||
| 15 | * |------------------------------------------------------------|---| | ||
| 16 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |PgD| | ||
| 17 | * |------------------------------------------------------------|---| | ||
| 18 | * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Return |Ins| | ||
| 19 | * |------------------------------------------------------------|---| | ||
| 20 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |Fn0| | ||
| 21 | * |------------------------------------------------------------|---| | ||
| 22 | * |Ctrl|Win |Alt | Space |END|Alt |Ctrl|Left |Down|Rig| | ||
| 23 | * `----------------------------------------------------------------' | ||
| 24 | */ | ||
| 25 | [0] = LAYOUT( | ||
| 26 | 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_HOME,KC_DEL, | ||
| 27 | 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_PGUP, | ||
| 28 | 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_PGDN, | ||
| 29 | 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_NO, KC_ENT, KC_INS, | ||
| 30 | KC_LSFT,KC_NO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,KC_RSFT,KC_UP, MO(1), | ||
| 31 | KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_END, KC_NO, KC_RALT,KC_RCTL,KC_LEFT,KC_DOWN,KC_RIGHT), | ||
| 32 | /* Keymap 1: Fn Layer | ||
| 33 | * ,-----------------------------------------------------------. | ||
| 34 | * | `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Delete | | ||
| 35 | * |-----------------------------------------------------------| | ||
| 36 | * | | |Up | | | |Cal| |Ins| |Psc|Slk|Pau| | | ||
| 37 | * |-----------------------------------------------------------| | ||
| 38 | * | |Lef|Dow|Rig| | | | | | |Hom|PgU| | | ||
| 39 | * |-----------------------------------------------------------| | ||
| 40 | * | | |App|Fn1|Fn2|Fn3|VoD|VoU|Mut|End|PgD| | | | ||
| 41 | * |-----------------------------------------------------------| | ||
| 42 | * | | | | | | | | | | ||
| 43 | * `-----------------------------------------------------------' | ||
| 44 | */ | ||
| 45 | [1] = LAYOUT( | ||
| 46 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
| 47 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
| 48 | KC_TRNS,KC_TRNS,KC_UP, KC_TRNS,KC_TRNS,KC_TRNS,KC_CALC,KC_TRNS,KC_INS, KC_TRNS,KC_PSCR,KC_SLCK,KC_PAUS,KC_TRNS,KC_TRNS, | ||
| 49 | BL_BRTG,KC_LEFT,KC_DOWN,KC_RGHT,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_HOME,KC_PGUP,KC_TRNS,KC_TRNS,KC_TRNS, | ||
| 50 | BL_STEP,KC_NO, KC_TRNS,KC_APP, KC_FN1, KC_FN2, KC_FN3, KC_VOLD,KC_VOLU,KC_MUTE,KC_END, KC_PGDN,KC_TRNS,KC_TRNS,KC_TRNS, | ||
| 51 | KC_SLEP,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS) | ||
| 52 | |||
| 53 | }; | ||
diff --git a/keyboards/amjkeyboard/amj84/keymaps/default/readme.md b/keyboards/amjkeyboard/amj84/keymaps/default/readme.md new file mode 100644 index 000000000..9233dcbfd --- /dev/null +++ b/keyboards/amjkeyboard/amj84/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for amj84 | |||
diff --git a/keyboards/amjkeyboard/amj84/readme.md b/keyboards/amjkeyboard/amj84/readme.md new file mode 100644 index 000000000..c0df110eb --- /dev/null +++ b/keyboards/amjkeyboard/amj84/readme.md | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # amj84 | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A 84 key keyboard by AMJ | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [peepeetee](https://github.com/peepeetee) | ||
| 8 | * Hardware Supported: AMJ84 | ||
| 9 | * Hardware Availability: no longer available | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make amjkeyboard/amj84:default | ||
| 14 | |||
| 15 | Flashing example for this keyboard: | ||
| 16 | |||
| 17 | make amjkeyboard/amj84:default:flash | ||
| 18 | |||
| 19 | 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). | ||
| 20 | |||
| 21 | ## Bootloader | ||
| 22 | |||
| 23 | Enter the bootloader in 3 ways: | ||
| 24 | |||
| 25 | * **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard | ||
| 26 | * **Physical reset button**: Briefly press the button on the back of the PCB | ||
| 27 | * **Keycode in layout**: Press the key mapped to `RESET` if it is available | ||
diff --git a/keyboards/amjkeyboard/amj84/rules.mk b/keyboards/amjkeyboard/amj84/rules.mk new file mode 100644 index 000000000..8649486da --- /dev/null +++ b/keyboards/amjkeyboard/amj84/rules.mk | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 15 | NKRO_ENABLE = no # Enable N-Key Rollover | ||
| 16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 18 | AUDIO_ENABLE = no # Audio output | ||
