diff options
Diffstat (limited to 'keyboards/handwired/ibm122m')
-rw-r--r-- | keyboards/handwired/ibm122m/config.h | 6 | ||||
-rw-r--r-- | keyboards/handwired/ibm122m/info.json | 2 | ||||
-rw-r--r-- | keyboards/handwired/ibm122m/keymaps/lukaus/keymap.c | 24 | ||||
-rw-r--r-- | keyboards/handwired/ibm122m/rules.mk | 1 |
4 files changed, 3 insertions, 30 deletions
diff --git a/keyboards/handwired/ibm122m/config.h b/keyboards/handwired/ibm122m/config.h index e0e95d6d3b..bd1fdc97dc 100644 --- a/keyboards/handwired/ibm122m/config.h +++ b/keyboards/handwired/ibm122m/config.h @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define PRODUCT_ID 0x0000 #define DEVICE_VER 0x0001 #define MANUFACTURER IBM -#define PRODUCT IBM Model M 122 key +#define PRODUCT IBM Model M 122 key /* key matrix size */ #define MATRIX_ROWS 8 @@ -102,8 +102,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. * */ -#define B6_AUDIO -#define C6_AUDIO +#define AUDIO_PIN_ALT B6 +#define AUDIO_PIN C6 /* control how magic key switches layers */ //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true diff --git a/keyboards/handwired/ibm122m/info.json b/keyboards/handwired/ibm122m/info.json index b9ce9e8f83..46db3c0d75 100644 --- a/keyboards/handwired/ibm122m/info.json +++ b/keyboards/handwired/ibm122m/info.json @@ -1,8 +1,6 @@ { "keyboard_name": "IBM Model M 122-key", - "url": "", "maintainer": "qmk", - "bootloader": "", "width": 24.75, "height": 8, "layouts": { diff --git a/keyboards/handwired/ibm122m/keymaps/lukaus/keymap.c b/keyboards/handwired/ibm122m/keymaps/lukaus/keymap.c index 130465e8d8..9f37798ed1 100644 --- a/keyboards/handwired/ibm122m/keymaps/lukaus/keymap.c +++ b/keyboards/handwired/ibm122m/keymaps/lukaus/keymap.c @@ -137,30 +137,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ),*/ }; -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) -{ - // MACRODOWN only works in this function - switch(id) { - case 0: - if (record->event.pressed) { - register_code(KC_RSFT); - } else { - unregister_code(KC_RSFT); - } - break; - } - return MACRO_NONE; -}; - - -void matrix_init_user(void) { - -} - -void matrix_scan_user(void) { - -} - bool left_shift_down = false; bool right_shift_down = false; diff --git a/keyboards/handwired/ibm122m/rules.mk b/keyboards/handwired/ibm122m/rules.mk index f775fa03b3..c26bc7a991 100644 --- a/keyboards/handwired/ibm122m/rules.mk +++ b/keyboards/handwired/ibm122m/rules.mk @@ -28,4 +28,3 @@ MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) UNICODE_ENABLE = no # Unicode BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID AUDIO_ENABLE = yes # Audio output on port C6 -FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |