diff options
-rw-r--r-- | keyboards/at101_blackheart/at101_blackheart.c | 1 | ||||
-rw-r--r-- | keyboards/at101_blackheart/at101_blackheart.h | 28 | ||||
-rw-r--r-- | keyboards/at101_blackheart/config.h | 43 | ||||
-rw-r--r-- | keyboards/at101_blackheart/keymaps/default/keymap.c | 53 | ||||
-rw-r--r-- | keyboards/at101_blackheart/readme.md | 14 | ||||
-rw-r--r-- | keyboards/at101_blackheart/rules.mk | 59 |
6 files changed, 198 insertions, 0 deletions
diff --git a/keyboards/at101_blackheart/at101_blackheart.c b/keyboards/at101_blackheart/at101_blackheart.c new file mode 100644 index 000000000..aa07a7864 --- /dev/null +++ b/keyboards/at101_blackheart/at101_blackheart.c | |||
@@ -0,0 +1 @@ | |||
#include "at101_blackheart.h" | |||
diff --git a/keyboards/at101_blackheart/at101_blackheart.h b/keyboards/at101_blackheart/at101_blackheart.h new file mode 100644 index 000000000..24ac1b7c5 --- /dev/null +++ b/keyboards/at101_blackheart/at101_blackheart.h | |||
@@ -0,0 +1,28 @@ | |||
1 | #ifndef at101_blackheart_H | ||
2 | #define at101_blackheart_H | ||
3 | |||
4 | #include "quantum.h" | ||
5 | |||
6 | #define LAYOUT( \ | ||
7 | K0000, K0100, K0001, K0101, K0002, K0102, K0003, K0103, K0004, K0104, K0005, K0105, K0006, K0106, K0007, K0107, \ | ||
8 | K0200, K0300, K0201, K0301, K0202, K0302, K0203, K0303, K0204, K0304, K0205, K0305, K0206, K0306, K0207, K0307, K0208, K0308, K0209, K0309, K0009, \ | ||
9 | K0400, K0500, K0401, K0501, K0402, K0502, K0403, K0503, K0404, K0504, K0405, K0505, K0406, K0506, K0407, K0507, K0408, K0508, K0409, K0509, K0109, \ | ||
10 | K0600, K0700, K0601, K0701, K0602, K0702, K0603, K0703, K0604, K0704, K0605, K0705, K0606, K0608, K0708, K0609, K0709, \ | ||
11 | K0800, K1101, K0900, K0801, K0901, K0802, K0902, K0803, K0903, K0804, K0904, K0805, K0905, K0806, K0807, K0808, K0908, K0809, K0909, \ | ||
12 | K1000, K1100, K1001, K1102, K1005, K1105, K1006, K1106, K1007, K1107, K1008, K1108, K1009 \ | ||
13 | ) { \ | ||
14 | { K0000, K0001, K0002, K0003, K0004, K0005, K0006, K0007, KC_NO, K0009 }, \ | ||
15 | { K0100, K0101, K0102, K0103, K0104, K0105, K0106, K0107, KC_NO, K0109 }, \ | ||
16 | { K0200, K0201, K0202, K0203, K0204, K0205, K0206, K0207, K0208, K0209 }, \ | ||
17 | { K0300, K0301, K0302, K0303, K0304, K0305, K0306, K0307, K0308, K0309 }, \ | ||
18 | { K0400, K0401, K0402, K0403, K0404, K0405, K0406, K0407, K0408, K0409 }, \ | ||
19 | { K0500, K0501, K0502, K0503, K0504, K0505, K0506, K0507, K0508, K0509 }, \ | ||
20 | { K0600, K0601, K0602, K0603, K0604, K0605, K0606, KC_NO, K0608, K0609 }, \ | ||
21 | { K0700, K0701, K0702, K0703, K0704, K0705, KC_NO, KC_NO, K0708, K0709 }, \ | ||
22 | { K0800, K0801, K0802, K0803, K0804, K0805, K0806, K0807, K0808, K0809 }, \ | ||
23 | { K0900, K0901, K0902, K0903, K0904, K0905, KC_NO, KC_NO, K0908, K0909 }, \ | ||
24 | { K1000, K1001, KC_NO, KC_NO, KC_NO, K1005, K1006, K1007, K1008, K1009 }, \ | ||
25 | { K1100, K1101, K1102, KC_NO, KC_NO, K1105, K1106, K1107, K1108, KC_NO } \ | ||
26 | } | ||
27 | |||
28 | #endif | ||
diff --git a/keyboards/at101_blackheart/config.h b/keyboards/at101_blackheart/config.h new file mode 100644 index 000000000..6a809a02f --- /dev/null +++ b/keyboards/at101_blackheart/config.h | |||
@@ -0,0 +1,43 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "config_common.h" | ||
4 | |||
5 | /* USB Device descriptor parameter */ | ||
6 | #define VENDOR_ID 0xFEED | ||
7 | #define PRODUCT_ID 0x6060 | ||
8 | #define DEVICE_VER 0x0001 | ||
9 | #define MANUFACTURER blindassassin111 | ||
10 | #define PRODUCT AT101_Blackheart PCB | ||
11 | #define DESCRIPTION Replacement AT101 PCB | ||
12 | |||
13 | /* key matrix size */ | ||
14 | #define MATRIX_ROWS 12 | ||
15 | #define MATRIX_COLS 10 | ||
16 | |||
17 | /* key matrix pins */ | ||
18 | #define MATRIX_ROW_PINS { F0, F1, F4, D4, F6, F5, F7, B6, B5, D5, C7, C6 } | ||
19 | #define MATRIX_COL_PINS { D1, D0, B7, B3, B2, B1, B0, E6, D2, D3 } | ||
20 | #define UNUSED_PINS | ||
21 | |||
22 | /* COL2ROW or ROW2COL */ | ||
23 | #define DIODE_DIRECTION COL2ROW | ||
24 | |||
25 | /* Set 0 if debouncing isn't needed */ | ||
26 | #define DEBOUNCING_DELAY 5 | ||
27 | |||
28 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
29 | #define LOCKING_SUPPORT_ENABLE | ||
30 | |||
31 | /* Locking resynchronize hack */ | ||
32 | #define LOCKING_RESYNC_ENABLE | ||
33 | |||
34 | /* force n-key rollover*/ | ||
35 | #define FORCE_NKRO | ||
36 | |||
37 | /* key combination for command */ | ||
38 | #define IS_COMMAND() ( \ | ||
39 | keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ | ||
40 | ) | ||
41 | |||
42 | /* prevent stuck modifiers */ | ||
43 | #define PREVENT_STUCK_MODIFIERS \ No newline at end of file | ||
diff --git a/keyboards/at101_blackheart/keymaps/default/keymap.c b/keyboards/at101_blackheart/keymaps/default/keymap.c new file mode 100644 index 000000000..086c25e1c --- /dev/null +++ b/keyboards/at101_blackheart/keymaps/default/keymap.c | |||
@@ -0,0 +1,53 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
4 | |||
5 | LAYOUT( | ||
6 | 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_PSCR,KC_SLCK, KC_PAUS, | ||
7 | 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_INS, KC_HOME, KC_PGUP, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
8 | 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_DEL, KC_END, KC_PGDN, KC_P7, KC_P8, KC_P9, KC_PPLS, | ||
9 | 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, KC_PEQL, | ||
10 | KC_LSFT,KC_BSLS,KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,KC_LSFT,MO(1), KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT, | ||
11 | KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT, KC_RGUI,KC_MENU, KC_RCTL, KC_LEFT,KC_DOWN, KC_RGHT, KC_P0, KC_PDOT), | ||
12 | |||
13 | LAYOUT( | ||
14 | 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, KC_TRNS, | ||
15 | RESET, 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, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
16 | 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, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
17 | 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, KC_TRNS, KC_TRNS, | ||
18 | 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, KC_TRNS, KC_TRNS, KC_TRNS, | ||
19 | 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), | ||
20 | }; | ||
21 | |||
22 | void matrix_init_user(void) { | ||
23 | } | ||
24 | |||
25 | void matrix_scan_user(void) { | ||
26 | } | ||
27 | |||
28 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
29 | return true; | ||
30 | } | ||
31 | |||
32 | void led_set_user(uint8_t usb_led) { | ||
33 | DDRB |= (1 << 4); | ||
34 | DDRD |= (1 << 6) | (1 << 7); | ||
35 | |||
36 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||
37 | PORTD |= (1 << 7); | ||
38 | } else { | ||
39 | PORTD &= ~(1 << 7); | ||
40 | } | ||
41 | |||
42 | if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||
43 | PORTB |= (1 << 4); | ||
44 | } else { | ||
45 | PORTB &= ~(1 << 4); | ||
46 | } | ||
47 | |||
48 | if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { | ||
49 | PORTD |= (1 << 6); | ||
50 | } else { | ||
51 | PORTD &= ~(1 << 6); | ||
52 | } | ||
53 | } \ No newline at end of file | ||
diff --git a/keyboards/at101_blackheart/readme.md b/keyboards/at101_blackheart/readme.md new file mode 100644 index 000000000..7b356bc75 --- /dev/null +++ b/keyboards/at101_blackheart/readme.md | |||
@@ -0,0 +1,14 @@ | |||
1 | AT101 Blackheart PCB | ||
2 | === | ||
3 | |||
4 | A replacement PCB for AT101 keyboards. | ||
5 | |||
6 | Keyboard Maintainer: QMK Community and blindassassin111 | ||
7 | Hardware Supported: AT101 blackheart PCB | ||
8 | Hardware Availability: https://deskthority.net/group-buys-f50/programmable-vintage-board-pcbs-omnikey-at101-and-z-150-t19325.html | ||
9 | |||
10 | Make example for this keyboard (after setting up your build environment): | ||
11 | |||
12 | make at101_blackheart:default | ||
13 | |||
14 | See [build environment setup](https://docs.qmk.fm/build_environment_setup.html) then the [make instructions](https://docs.qmk.fm/make_instructions.html) for more information. | ||
diff --git a/keyboards/at101_blackheart/rules.mk b/keyboards/at101_blackheart/rules.mk new file mode 100644 index 000000000..fadff6f23 --- /dev/null +++ b/keyboards/at101_blackheart/rules.mk | |||
@@ -0,0 +1,59 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Processor frequency. | ||
5 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
6 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
7 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
8 | # automatically to create a 32-bit value in your source code. | ||
9 | # | ||
10 | # This will be an integer division of F_USB below, as it is sourced by | ||
11 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
12 | # does not *change* the processor frequency - it should merely be updated to | ||
13 | # reflect the processor speed set externally so that the code can use accurate | ||
14 | # software delays. | ||
15 | F_CPU = 16000000 | ||
16 | |||
17 | # | ||
18 | # LUFA specific | ||
19 | # | ||
20 | # Target architecture (see library "Board Types" documentation). | ||
21 | ARCH = AVR8 | ||
22 | |||
23 | # Input clock frequency. | ||
24 | # This will define a symbol, F_USB, in all source code files equal to the | ||
25 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
26 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
27 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
28 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
29 | # at the end, this will be done automatically to create a 32-bit value in your | ||
30 | # source code. | ||
31 | # | ||
32 | # If no clock division is performed on the input clock inside the AVR (via the | ||
33 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
34 | F_USB = $(F_CPU) | ||
35 | |||
36 | # Interrupt driven control endpoint task(+60) | ||
37 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
38 | |||
39 | |||
40 | # Bootloader selection | ||
41 | BOOTLOADER = halfkay | ||
42 | |||
43 | # Boot Section Size in *bytes* | ||
44 | # OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
45 | |||
46 | |||
47 | # Build Options | ||
48 | # comment out to disable the options. | ||
49 | # | ||
50 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | ||
51 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
52 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
53 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
54 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
55 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
56 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
57 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
58 | AUDIO_ENABLE = no | ||
59 | RGBLIGHT_ENABLE = no \ No newline at end of file | ||