diff options
| author | Nicholas Shaff <nick@shadedream.com> | 2019-02-05 08:36:49 -0600 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-02-05 06:36:49 -0800 |
| commit | 9b232a7f885e320061aae994713acd31297eac5c (patch) | |
| tree | a0649ecd2fd490bf908c4fe6c4ab5a89e436c912 /keyboards/sentraq/s60_x/config.h | |
| parent | 33526778209f9de570edd0b7af1a42eed8fffdc2 (diff) | |
| download | qmk_firmware-9b232a7f885e320061aae994713acd31297eac5c.tar.gz qmk_firmware-9b232a7f885e320061aae994713acd31297eac5c.zip | |
Keyboards: Move the other Sentraq keyboards into the sentraq vendor directory (#5052)
* Moving sentraq keyboards to sentraq subdirectory.
* Updating readme markdown to correct make commands.
* Updating s60_x references to point to the new vendor subdirectory.
* Fixed stripped spaces in markdown.
* Updated help information in s60_x readme and linked to additional documentation.
Diffstat (limited to 'keyboards/sentraq/s60_x/config.h')
| -rw-r--r-- | keyboards/sentraq/s60_x/config.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/keyboards/sentraq/s60_x/config.h b/keyboards/sentraq/s60_x/config.h new file mode 100644 index 000000000..bb2602dca --- /dev/null +++ b/keyboards/sentraq/s60_x/config.h | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | Copyright 2016 Julien Pecqueur <julien@peclu.net> | ||
| 4 | Copyright 2016 Felix Uhl <ifreilicht@gmail.com> | ||
| 5 | |||
| 6 | This program is free software: you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation, either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #ifndef CONFIG_H | ||
| 21 | #define CONFIG_H | ||
| 22 | |||
| 23 | #include "config_common.h" | ||
| 24 | |||
| 25 | /* USB Device descriptor parameter */ | ||
| 26 | #define VENDOR_ID 0xFEED | ||
| 27 | #define PRODUCT_ID 0x6060 | ||
| 28 | #define DEVICE_VER 0x0001 | ||
| 29 | #define MANUFACTURER Massdrop | ||
| 30 | |||
| 31 | /* key matrix size */ | ||
| 32 | #define MATRIX_ROWS 5 | ||
| 33 | #define MATRIX_COLS 15 | ||
| 34 | |||
| 35 | /* number of backlight levels */ | ||
| 36 | #define BACKLIGHT_PIN B7 | ||
| 37 | #ifdef BACKLIGHT_PIN | ||
| 38 | #define BACKLIGHT_LEVELS 3 | ||
| 39 | #endif | ||
| 40 | |||
| 41 | /* COL2ROW or ROW2COL */ | ||
| 42 | #define DIODE_DIRECTION COL2ROW | ||
| 43 | |||
| 44 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 45 | #define DEBOUNCING_DELAY 5 | ||
| 46 | |||
| 47 | #ifdef SUBPROJECT_default | ||
| 48 | #include "default/config.h" | ||
| 49 | #endif | ||
| 50 | #ifdef SUBPROJECT_rgb | ||
| 51 | #include "rgb/config.h" | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #endif | ||
