diff options
author | ishtob <ishtob@gmail.com> | 2019-04-22 23:26:51 -0400 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-04-22 20:26:51 -0700 |
commit | ce8fb1eab923a8ce37022a898597048e5893b078 (patch) | |
tree | eaf6e163d0ac625ed5fb333ce27f6aaed840e390 /keyboards/boston_meetup/config.h | |
parent | a2cec0594b15dc667adf7f1b0e35cb698dc1758d (diff) |
Boston meetup 2019 (#5611)
* Add boston_meetup folder for community meetup macropads
* Modify OLED indicators to match macropad
* PR cleanup
* Spelling fix
Co-Authored-By: ishtob <ishtob@gmail.com>
* convert custom matrix to standard matrix defines
* refactor layer define with enum
* Remove un-used files
* remove "\" in keymap
Diffstat (limited to 'keyboards/boston_meetup/config.h')
-rw-r--r-- | keyboards/boston_meetup/config.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/keyboards/boston_meetup/config.h b/keyboards/boston_meetup/config.h new file mode 100644 index 0000000000..b025e18df5 --- /dev/null +++ b/keyboards/boston_meetup/config.h @@ -0,0 +1,60 @@ +/* +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" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xFB30 +#define PRODUCT_ID 0x26BE +#define MANUFACTURER ishtob +#define PRODUCT Boston Meetup Board +#define DESCRIPTION A limited-run community meetup board + +//#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 +//#define NO_ACTION_MACRO +//#define NO_ACTION_FUNCTION |