summaryrefslogtreecommitdiffstats
path: root/keyboards/boston_meetup
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/boston_meetup')
-rw-r--r--keyboards/boston_meetup/2019/2019.c98
-rw-r--r--keyboards/boston_meetup/2019/2019.h19
-rw-r--r--keyboards/boston_meetup/2019/config.h162
-rw-r--r--keyboards/boston_meetup/2019/info.json5
-rw-r--r--keyboards/boston_meetup/2019/keymaps/default/keymap.c147
-rw-r--r--keyboards/boston_meetup/2019/keymaps/default/readme.md51
-rw-r--r--keyboards/boston_meetup/2019/readme.md13
-rw-r--r--keyboards/boston_meetup/2019/rules.mk25
-rw-r--r--keyboards/boston_meetup/boston_meetup.c2
-rw-r--r--keyboards/boston_meetup/boston_meetup.h19
-rw-r--r--keyboards/boston_meetup/config.h51
-rw-r--r--keyboards/boston_meetup/info.json14
-rw-r--r--keyboards/boston_meetup/readme.md14
-rw-r--r--keyboards/boston_meetup/rules.mk2
14 files changed, 0 insertions, 622 deletions
diff --git a/keyboards/boston_meetup/2019/2019.c b/keyboards/boston_meetup/2019/2019.c
deleted file mode 100644
index e558048f6a..0000000000
--- a/keyboards/boston_meetup/2019/2019.c
+++ /dev/null
@@ -1,98 +0,0 @@
-/* Copyright 2019 ishtob
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-#include "2019.h"
-
-#ifdef RGB_MATRIX_ENABLE
-#include "rgb_matrix.h"
-
-led_config_t g_led_config = { {
- { 5, NO_LED, NO_LED, 0 },
- { NO_LED, NO_LED, NO_LED, NO_LED },
- { 4, NO_LED, NO_LED, 1 },
- { 3, NO_LED, NO_LED, 2 }
-}, {
- { 188, 16 }, { 187, 48 }, { 149, 64 }, { 112, 64 }, { 37, 48 }, { 38, 16 }
-}, {
- 4, 4, 4, 4, 4, 4
-} };
-#endif
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_kb(oled_rotation_t rotation) { return OLED_ROTATION_180; }
-
-bool oled_task_kb(void) {
- if (!oled_task_user()) {
- return false;
- }
- oled_write_P(PSTR("BOSTON MK LAYER"), false);
- oled_advance_char();
- oled_write_char(get_highest_layer(layer_state) + 0x30, true);
-
- led_t led_state = host_keyboard_led_state();
- oled_set_cursor(18, 0);
- oled_write_P(PSTR("NUM"), led_state.num_lock);
- oled_set_cursor(18, 1);
- oled_write_P(PSTR("CAP"), led_state.caps_lock);
- oled_set_cursor(18, 2);
- oled_write_P(PSTR("SCR"), led_state.scroll_lock);
-
- uint8_t mod_state = get_mods();
- oled_set_cursor(10, 3);
- oled_write_P(PSTR("S"), mod_state & MOD_MASK_SHIFT);
- oled_advance_char();
- oled_write_P(PSTR("C"), mod_state & MOD_MASK_CTRL);
- oled_advance_char();
- oled_write_P(PSTR("A"), mod_state & MOD_MASK_ALT);
- oled_advance_char();
- oled_write_P(PSTR("G"), mod_state & MOD_MASK_GUI);
- oled_advance_char();
-
-/* Matrix display is 12 x 12 pixels */
-#define MATRIX_DISPLAY_X 8
-#define MATRIX_DISPLAY_Y 16
-
- // matrix
- for (uint8_t x = 0; x < MATRIX_ROWS; x++) {
- for (uint8_t y = 0; y < MATRIX_COLS; y++) {
- bool on = (matrix_get_row(x) & (1 << y)) > 0;
-
- // force on for oled location
- if((x == 0) && (y >= (MATRIX_COLS - 2))) on = 1;
-
- oled_write_pixel(MATRIX_DISPLAY_X + y + y + 2, MATRIX_DISPLAY_Y + x + x + 2, on);
- oled_write_pixel(MATRIX_DISPLAY_X + y + y + 3, MATRIX_DISPLAY_Y + x + x + 2, on);
- oled_write_pixel(MATRIX_DISPLAY_X + y + y + 2, MATRIX_DISPLAY_Y + x + x + 3, on);
- oled_write_pixel(MATRIX_DISPLAY_X + y + y + 3, MATRIX_DISPLAY_Y + x + x + 3, on);
- }
- }
-
- // outline
- for (uint8_t x = 0; x < 12; x++) {
- oled_write_pixel(MATRIX_DISPLAY_X + x, MATRIX_DISPLAY_Y, true);
- oled_write_pixel(MATRIX_DISPLAY_X + x, MATRIX_DISPLAY_Y + 12, true);
- }
- for (uint8_t y = 0; y < 12; y++) {
- oled_write_pixel(MATRIX_DISPLAY_X, MATRIX_DISPLAY_Y+y, true);
- oled_write_pixel(MATRIX_DISPLAY_X + 12, MATRIX_DISPLAY_Y+y, true);
- }
-
- // bodge for layer number left hand side
- for (uint8_t y = 0; y < 8; y++) {
- oled_write_pixel(95, 0 + y, true);
- }
- return false;
-}
-#endif
diff --git a/keyboards/boston_meetup/2019/2019.h b/keyboards/boston_meetup/2019/2019.h
deleted file mode 100644
index fbba5c3154..0000000000
--- a/keyboards/boston_meetup/2019/2019.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright 2019 ishtob
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-#pragma once
-
-#include "boston_meetup.h"
-
diff --git a/keyboards/boston_meetup/2019/config.h b/keyboards/boston_meetup/2019/config.h
deleted file mode 100644
index 7429845958..0000000000
--- a/keyboards/boston_meetup/2019/config.h
+++ /dev/null
@@ -1,162 +0,0 @@
-#pragma once
-
-#undef MATRIX_ROWS
-#undef MATRIX_COLS
-/* key matrix size */
-#define MATRIX_ROWS 4
-#define MATRIX_COLS 4
-
-/*
- * Keyboard Matrix Assignments
- *
- * Change this to how you wired your keyboard
- * COLS: AVR pins used for columns, left to right
- * ROWS: AVR pins used for rows, top to bottom
- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
- * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
- *
-*/
-
-#undef MATRIX_ROW_PINS
-#undef MATRIX_COL_PINS
-
-#define MATRIX_ROW_PINS { A3, B8, B9, B1 }
-#define MATRIX_COL_PINS { A7, A8, B2, B10 }
-
-#define ENCODERS_PAD_A { B13 }
-#define ENCODERS_PAD_B { B14 }
-
-//Audio
-#undef AUDIO_VOICES
-#undef AUDIO_PIN
-#define AUDIO_PIN A5
-#define AUDIO_PIN_ALT A4
-#define AUDIO_PIN_ALT_AS_NEGATIVE
-
-#ifdef AUDIO_ENABLE
- #define STARTUP_SONG SONG(ONE_UP_SOUND)
- // #define STARTUP_SONG SONG(NO_SOUND)
-
-#define AUDIO_CLICKY
- /* to enable clicky on startup */
- //#define AUDIO_CLICKY_ON
-#define AUDIO_CLICKY_FREQ_RANDOMNESS 1.5f
-#endif
-
-// configure oled driver for the 128x32 oled
-#define OLED_UPDATE_INTERVAL 33 // ~30fps
-
-/*
- * Keyboard Matrix Assignments
- *
- * Change this to how you wired your keyboard
- * COLS: AVR pins used for columns, left to right
- * ROWS: AVR pins used for rows, top to bottom
- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
- * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
- *
-*/
-
-/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
-#define DEBOUNCE 6
-
-/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
-//#define LOCKING_SUPPORT_ENABLE
-/* Locking resynchronize hack */
-//#define LOCKING_RESYNC_ENABLE
-
-/*
- * Force NKRO
- *
- * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
- * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
- * makefile for this to work.)
- *
- * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
- * until the next keyboard reset.
- *
- * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
- * fully operational during normal computer usage.
- *
- * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
- * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
- * bootmagic, NKRO mode will always be enabled until it is toggled again during a
- * power-up.
- *
- */
-//#define FORCE_NKRO
-
-/*
- * Feature disable options
- * These options are also useful to firmware size reduction.
- */
-
-/* disable debug print */
-//#define NO_DEBUG
-
-/* disable print */
-//#define NO_PRINT
-
-/* disable action features */
-//#define NO_ACTION_LAYER
-//#define NO_ACTION_TAPPING
-//#define NO_ACTION_ONESHOT
-
-/* Haptic Driver initialization settings
- * Feedback Control Settings */
-#define FB_ERM_LRA 1 /* For ERM:0 or LRA:1*/
-#define FB_BRAKEFACTOR 6 /* For 1x:0, 2x:1, 3x:2, 4x:3, 6x:4, 8x:5, 16x:6, Disable Braking:7 */
-#define FB_LOOPGAIN 1 /* For Low:0, Medium:1, High:2, Very High:3 */
-
-/* default 3V ERM vibration motor voltage and library*/
-#if FB_ERM_LRA == 0
-#define RATED_VOLTAGE 3
-#define V_RMS 2.3
-#define V_PEAK 3.30
-/* Library Selection */
-#define LIB_SELECTION 4 /* For Empty:0' TS2200 library A to D:1-5, LRA Library: 6 */
-
-/* default 2V LRA voltage and library */
-#elif FB_ERM_LRA == 1
-#define RATED_VOLTAGE 2
-#define V_RMS 2.0
-#define V_PEAK 2.85
-#define F_LRA 200
-/* Library Selection */
-#define LIB_SELECTION 6 /* For Empty:0' TS2200 library A to D:1-5, LRA Library: 6 */
-
-#endif
-
-/* Control 1 register settings */
-#define DRIVE_TIME 25
-#define AC_COUPLE 0
-#define STARTUP_BOOST 1
-
-/* Control 2 Settings */
-#define BIDIR_INPUT 1
-#define BRAKE_STAB 1 /* Loopgain is reduced when braking is almost complete to improve stability */
-#define SAMPLE_TIME 3
-#define BLANKING_TIME 1
-#define IDISS_TIME 1
-
-/* Control 3 settings */
-#define NG_THRESH 2
-#define ERM_OPEN_LOOP 1
-#define SUPPLY_COMP_DIS 0
-#define DATA_FORMAT_RTO 0
-#define LRA_DRIVE_MODE 0
-#define N_PWM_ANALOG 0
-#define LRA_OPEN_LOOP 0
-/* Control 4 settings */
-#define ZC_DET_TIME 0
-#define AUTO_CAL_TIME 3
-
-#define RGBLIGHT_ANIMATIONS
-
-#define RGBLED_NUM 10
-#define RGB_DI_PIN B5
-#define DRIVER_LED_TOTAL RGBLED_NUM
-
-#define RGB_MATRIX_KEYPRESSES
-
-#define SOLENOID_PIN A14
diff --git a/keyboards/boston_meetup/2019/info.json b/keyboards/boston_meetup/2019/info.json
deleted file mode 100644
index 5f8f8c95f7..0000000000
--- a/keyboards/boston_meetup/2019/info.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "usb": {
- "device_version": "20.1.9"
- }
-}
diff --git a/keyboards/boston_meetup/2019/keymaps/default/keymap.c b/keyboards/boston_meetup/2019/keymaps/default/keymap.c
deleted file mode 100644
index a7a874a0a8..0000000000
--- a/keyboards/boston_meetup/2019/keymaps/default/keymap.c
+++ /dev/null
@@ -1,147 +0,0 @@
-#include QMK_KEYBOARD_H
-
-// Each layer gets a name for readability, which is then used in the keymap matrix below.
-// The underscores don't mean anything - you can have a layer called STUFF or any other name.
-// Layer names don't all need to be of the same length, obviously, and you can also skip them
-// entirely and just use numbers.
-
-enum custom_layers {
- _BASE,
- _LOWER,
- _RAISE,
- _ADJUST
-};
-
-enum custom_keycodes {
- LOWER = SAFE_RANGE,
- RAISE,
-};
-
-// Custom macros
-#define CTL_ESC CTL_T(KC_ESC) // Tap for Esc, hold for Ctrl
-#define CTL_TTAB CTL_T(KC_TAB) // Tap for Esc, hold for Ctrl
-#define CTL_ENT CTL_T(KC_ENT) // Tap for Enter, hold for Ctrl
-#define SFT_ENT SFT_T(KC_ENT) // Tap for Enter, hold for Shift
-// Requires KC_TRNS/_______ for the trigger key in the destination layer
-#define LT_MC(kc) LT(_MOUSECURSOR, kc) // L-ayer T-ap M-ouse C-ursor
-#define LT_RAI(kc) LT(_RAISE, kc) // L-ayer T-ap to Raise
-
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-/* Base
- * ,------.
- * | Esc |
- * |------+------+-------------.
- * | : | 7 | 8 | 9 |
- * |------+------+------+------|
- * | RAISE| 4 | 5 | 6 |
- * |------+------+------+------|
- * | LOWER| 1 | 2 | 3 |
- * `---------------------------'
- */
-[_BASE] = LAYOUT(
- KC_ESC,
- KC_COLN, KC_P7, KC_P8, KC_P9,
- RAISE, KC_P4, KC_P5, KC_P6,
- LOWER, KC_P1, KC_P2, KC_P3
-),
-
-/* Lower
- * ,------.
- * | Nmlk |
- * |------+------+-------------.
- * | : | / | * | - |
- * |------+------+------+------|
- * | | | = | + |
- * |------+------+------+------|
- * | | 0 | . | ENT |
- * `---------------------------'
- */
-[_LOWER] = LAYOUT(
- KC_NLCK,
- KC_COLN, KC_PSLS, KC_PAST, KC_PMNS,
- _______, XXXXXXX, KC_EQL, KC_PPLS,
- _______, KC_P0, KC_PDOT, KC_PENT
-),
-
-/* Raise
- * ,------.
- * | Esc |
- * |------+------+-------------.
- * |RGB TG|RGB M+|RGB M-| |
- * |------+------+------+------|
- * | |RGB H+|RGB S+|RGB V+|
- * |------+------+------+------|
- * | ` |RGB H-|RGB S-|RGB V-|
- * `---------------------------'
- */
-[_RAISE] = LAYOUT(
- KC_NLCK,
- RGB_TOG, RGB_MOD, RGB_RMOD, XXXXXXX,
- _______, RGB_HUI, RGB_SAI, RGB_VAI,
- _______, RGB_HUD, RGB_SAD, RGB_VAD
-
-),
-
-/* Adjust
- * ,------.
- * | DFU |
- * |------+------+-------------.
- * |HPT TG|HPT FB|HPT RS| BKSP |
- * |------+------+------+------|
- * | |HPT M+| | |
- * |------+------+------+------|
- * | |HPT M-|Clk TG| Del |
- * `---------------------------'
- */
-[_ADJUST] = LAYOUT(
- QK_BOOT,
- HPT_TOG, HPT_FBK, HPT_RST, KC_BSPC,
- _______, HPT_MODI, XXXXXXX, XXXXXXX,
- _______, HPT_MODD, CK_TOGG, KC_DEL
-),
-
-
-};
-
-layer_state_t layer_state_set_user(layer_state_t state) {
- return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
-}
-
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case LOWER:
- if (record->event.pressed) {
- //not sure how to have keyboard check mode and set it to a variable, so my work around
- //uses another variable that would be set to true after the first time a reactive key is pressed.
- layer_on(_LOWER);
- } else {
- layer_off(_LOWER);
- }
- return false;
- break;
- case RAISE:
- if (record->event.pressed) {
- //not sure how to have keyboard check mode and set it to a variable, so my work around
- //uses another variable that would be set to true after the first time a reactive key is pressed.
- layer_on(_RAISE);
- } else {
- layer_off(_RAISE);
- }
- return false;
- break;
- }
- return true;
-}
-
-bool music_mask_user(uint16_t keycode) {
- switch (keycode) {
- case RAISE:
- case LOWER:
- return false;
- default:
- return true;
- }
-}
diff --git a/keyboards/boston_meetup/2019/keymaps/default/readme.md b/keyboards/boston_meetup/2019/keymaps/default/readme.md
deleted file mode 100644
index 75f80b5191..0000000000
--- a/keyboards/boston_meetup/2019/keymaps/default/readme.md
+++ /dev/null
@@ -1,51 +0,0 @@
-# The Default Boston Meetup 2019 board Layout
-
-Keymap:
-```
-Base
-,------.
-| Esc |
-|------+------+-------------.
-| : | 7 | 8 | 9 |
-|------+------+------+------|
-| RAISE| 4 | 5 | 6 |
-|------+------+------+------|
-| LOWER| 1 | 2 | 3 |
-`---------------------------'
-
-Lower
-,------.
-| Nmlk |
-|------+------+-------------.
-| : | / | * | - |
-|------+------+------+------|
-| | | = | + |
-|------+------+------+------|
-| | 0 | . | ENT |
-`---------------------------'
-
-Raise
-,------.
-| Esc |
-|------+------+-------------.
-|RGB TG|RGB M+|RGB M-| |
-|------+------+------+------|
-| |RGB H+|RGB S+|RGB V+|
-|------+------+------+------|
-| |RGB H-|RGB S-|RGB V-|
-`---------------------------'
-
-Adjust:
-,------.
-| DFU |
-|------+------+-------------.
-|HPT TG|HPT FB|HPT RS| BKSP |
-|------+------+------+------|
-| |HPT M+| | |
-|------+------+------+------|
-| |HPT M-|Clk TG| Del |
-`---------------------------'
-
-```
-
-RGB still work in progress \ No newline at end of file
diff --git a/keyboards/boston_meetup/2019/readme.md b/keyboards/boston_meetup/2019/readme.md
deleted file mode 100644
index 2bdac9dcde..0000000000
--- a/keyboards/boston_meetup/2019/readme.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Boston Meetup 2019 Macropad
-
-![Boston Meetup 2019](https://i.imgur.com/6LgBc4g.jpg)
-
-Limited-run board designed for Boston MK community meetup 2019.
-
-Keyboard Maintainer: [ishtob](https://github.com/ishtob), [QMK](https://github.com/qmk)
-
-Make example for this keyboard (after setting up your build environment):
-
- make boston_meetup/2019:default
-
-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). \ No newline at end of file
diff --git a/keyboards/boston_meetup/2019/rules.mk b/keyboards/boston_meetup/2019/rules.mk
deleted file mode 100644
index 69919a16c6..0000000000
--- a/keyboards/boston_meetup/2019/rules.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-# MCU name
-MCU = STM32F303
-BOARD = QMK_PROTON_C
-
-# Bootloader selection
-BOOTLOADER = stm32-dfu
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = yes # Mouse keys
-EXTRAKEY_ENABLE = yes # Audio control and System control
-CONSOLE_ENABLE = no # Console for debug
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = yes # Enable N-Key Rollover
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-AUDIO_ENABLE = yes # Audio output
-RGBLIGHT_ENABLE = no
-RGB_MATRIX_ENABLE = no
-RGB_MATRIX_DRIVER = WS2812
-HAPTIC_ENABLE = yes
-HAPTIC_DRIVER = DRV2605L
-OLED_ENABLE = yes
-OLED_DRIVER = SSD1306
diff --git a/keyboards/boston_meetup/boston_meetup.c b/keyboards/boston_meetup/boston_meetup.c
deleted file mode 100644
index a9201ac852..0000000000
--- a/keyboards/boston_meetup/boston_meetup.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include "boston_meetup.h"
-
diff --git a/keyboards/boston_meetup/boston_meetup.h b/keyboards/boston_meetup/boston_meetup.h
deleted file mode 100644
index e1d9d92060..0000000000
--- a/keyboards/boston_meetup/boston_meetup.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#ifdef KEYBOARD_boston_meetup_2019
- #include "2019.h"
-#define LAYOUT( \
- K00, \
- K10, K11, K12, K13, \
- K20, K21, K22, K23, \
- K30, K31, K32, K33 \
- ) \
-{ \
- { K00, KC_NO, KC_NO, KC_NO }, \
- { K10, K11, K12, K13 }, \
- { K20, K21, K22, K23 }, \
- { K30, K31, K32, K33 } \
-}
-#endif
-
-#include "quantum.h" \ No newline at end of file
diff --git a/keyboards/boston_meetup/config.h b/keyboards/boston_meetup/config.h
deleted file mode 100644
index 8e9919c23a..0000000000
--- a/keyboards/boston_meetup/config.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
-Copyright 2012 Jun Wako <wakojun@gmail.com>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-
-#include "config_common.h"
-
-//#define AUDIO_VOICES
-
-//#define BACKLIGHT_PIN B7
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION COL2ROW
-
-/* define if matrix has ghost */
-//#define MATRIX_HAS_GHOST
-
-/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
-//#define LOCKING_SUPPORT_ENABLE
-/* Locking resynchronize hack */
-//#define LOCKING_RESYNC_ENABLE
-
-/*
- * Feature disable options
- * These options are also useful to firmware size reduction.
- */
-
-/* disable debug print */
-//#define NO_DEBUG
-
-/* disable print */
-//#define NO_PRINT
-
-/* disable action features */
-//#define NO_ACTION_LAYER
-//#define NO_ACTION_TAPPING
-//#define NO_ACTION_ONESHOT
diff --git a/keyboards/boston_meetup/info.json b/keyboards/boston_meetup/info.json
deleted file mode 100644
index 2c25d4ff06..0000000000
--- a/keyboards/boston_meetup/info.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "keyboard_name": "Boston Meetup Board",
- "manufacturer": "ishtob",
- "url": "",
- "maintainer": "qmk",
- "usb": {
- "vid": "0xFB30",
- "pid": "0x26BE"
- },
- "layouts": {
- "LAYOUT": {
- "layout": [{"label":"K00", "x":0, "y":0}, {"label":"K10", "x":0, "y":1}, {"label":"K11", "x":1, "y":1}, {"label":"K12", "x":2, "y":1}, {"label":"K13", "x":3, "y":1}, {"label":"K20", "x":0, "y":2}, {"label":"K21", "x":1, "y":2}, {"label":"K22", "x":2, "y":2}, {"label":"K23", "x":3, "y":2}, {"label":"K30", "x":0, "y":3}, {"label":"K31", "x":1, "y":3}, {"label":"K32", "x":2, "y":3}, {"label":"K33", "x":3, "y":3}] }
- }
-}
diff --git a/keyboards/boston_meetup/readme.md b/keyboards/boston_meetup/readme.md
deleted file mode 100644
index 2fa1ec9583..0000000000
--- a/keyboards/boston_meetup/readme.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Boston Meetup Macropads
-
-![Boston Meetup Macropads](https://i.imgur.com/yQcBF8g.jpg)
-
-Limited-run boards designed for Boston MK community meetups.
-
-Keyboard Maintainer: [ishtob](https://github.com/ishtob), [QMK](https://github.com/qmk)
-Hardware Supported: Boston Meetup PCB 2018, 2019
-
-Make example for this keyboard (after setting up your build environment):
-
- make boston_meetup/YYYY:default
-
-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). \ No newline at end of file
diff --git a/keyboards/boston_meetup/rules.mk b/keyboards/boston_meetup/rules.mk
deleted file mode 100644
index 6dd899edc8..0000000000
--- a/keyboards/boston_meetup/rules.mk
+++ /dev/null
@@ -1,2 +0,0 @@
-
-DEFAULT_FOLDER = boston_meetup/2019