diff options
Diffstat (limited to 'keyboards/converter/m0110_usb/config.h')
-rw-r--r-- | keyboards/converter/m0110_usb/config.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/keyboards/converter/m0110_usb/config.h b/keyboards/converter/m0110_usb/config.h new file mode 100644 index 000000000..f980217b8 --- /dev/null +++ b/keyboards/converter/m0110_usb/config.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /* | ||
2 | Copyright 2011,2012 Jun Wako <[email protected]> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | |||
17 | -------------- | ||
18 | |||
19 | Ported to QMK by Techsock <[email protected]> | ||
20 | */ | ||
21 | |||
22 | #pragma once | ||
23 | |||
24 | #define VENDOR_ID 0xFEED | ||
25 | #define PRODUCT_ID 0x0110 | ||
26 | #define DEVICE_VER 0x0101 | ||
27 | #define MANUFACTURER Apple | ||
28 | #define PRODUCT M0110(A) | ||
29 | |||
30 | /* matrix size */ | ||
31 | #define MATRIX_ROWS 14 | ||
32 | #define MATRIX_COLS 8 | ||
33 | |||
34 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
35 | #define LOCKING_SUPPORT_ENABLE | ||
36 | /* Locking resynchronize hack */ | ||
37 | #define LOCKING_RESYNC_ENABLE | ||
38 | |||
39 | /* magic key */ | ||
40 | #define IS_COMMAND() ( \ | ||
41 | get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_LALT) | MOD_BIT(KC_LGUI)) || \ | ||
42 | get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_LALT) | MOD_BIT(KC_LCTL)) \ | ||
43 | ) | ||
44 | |||
45 | /* boot magic key */ | ||
46 | #define BOOTMAGIC_KEY_SALT KC_M | ||
47 | |||
48 | /* ports */ | ||
49 | #define M0110_CLOCK_PORT PORTD | ||
50 | #define M0110_CLOCK_PIN PIND | ||
51 | #define M0110_CLOCK_DDR DDRD | ||
52 | #define M0110_CLOCK_BIT 1 | ||
53 | #define M0110_DATA_PORT PORTD | ||
54 | #define M0110_DATA_PIN PIND | ||
55 | #define M0110_DATA_DDR DDRD | ||
56 | #define M0110_DATA_BIT 0 | ||
57 | |||
58 | |||