aboutsummaryrefslogtreecommitdiff
path: root/converter
diff options
context:
space:
mode:
Diffstat (limited to 'converter')
-rw-r--r--converter/adb_usb/Makefile2
-rw-r--r--converter/next_usb/Makefile26
-rw-r--r--converter/next_usb/Makefile.pjrc63
-rw-r--r--converter/next_usb/config.h38
-rw-r--r--converter/ps2_usb/Makefile.vusb10
-rw-r--r--converter/ps2_usb/README.md3
-rw-r--r--converter/serialmouse_usb/Makefile106
-rw-r--r--converter/serialmouse_usb/README.md11
-rw-r--r--converter/serialmouse_usb/config.h119
-rw-r--r--converter/serialmouse_usb/keymap.c33
-rw-r--r--converter/serialmouse_usb/keymap_common.c30
-rw-r--r--converter/serialmouse_usb/keymap_common.h174
-rw-r--r--converter/serialmouse_usb/led.c24
-rw-r--r--converter/serialmouse_usb/matrix.c83
-rw-r--r--converter/sun_usb/Makefile1
-rw-r--r--converter/sun_usb/README20
-rw-r--r--converter/sun_usb/command_extra.c28
-rw-r--r--converter/sun_usb/matrix.c16
-rw-r--r--converter/usb_usb/README4
-rw-r--r--converter/usb_usb/config.h1
-rw-r--r--converter/usb_usb/main.cpp1
21 files changed, 770 insertions, 23 deletions
diff --git a/converter/adb_usb/Makefile b/converter/adb_usb/Makefile
index 73cae8ab3..bbb7810ee 100644
--- a/converter/adb_usb/Makefile
+++ b/converter/adb_usb/Makefile
@@ -121,7 +121,7 @@ EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
121CONSOLE_ENABLE = yes # Console for debug(+400) 121CONSOLE_ENABLE = yes # Console for debug(+400)
122COMMAND_ENABLE = yes # Commands for debug and configuration 122COMMAND_ENABLE = yes # Commands for debug and configuration
123#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend 123#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
124#NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA 124#NKRO_ENABLE = yes # USB Nkey Rollover
125 125
126 126
127# Optimize size but this may cause error "relocation truncated to fit" 127# Optimize size but this may cause error "relocation truncated to fit"
diff --git a/converter/next_usb/Makefile b/converter/next_usb/Makefile
index 51d9de6b1..fef539a14 100644
--- a/converter/next_usb/Makefile
+++ b/converter/next_usb/Makefile
@@ -20,6 +20,7 @@ CONFIG_H = config.h
20MCU = atmega32u4 # Teensy 2.0 20MCU = atmega32u4 # Teensy 2.0
21#MCU = at90usb646 # Teensy++ 1.0 21#MCU = at90usb646 # Teensy++ 1.0
22#MCU = at90usb1286 # Teensy++ 2.0 22#MCU = at90usb1286 # Teensy++ 2.0
23#MCU = atmega32u2 # TMK converter
23 24
24 25
25# Processor frequency. 26# Processor frequency.
@@ -30,6 +31,29 @@ MCU = atmega32u4 # Teensy 2.0
30F_CPU = 16000000 31F_CPU = 16000000
31 32
32 33
34#
35# LUFA specific
36#
37# Target architecture (see library "Board Types" documentation).
38ARCH = AVR8
39
40# Input clock frequency.
41# This will define a symbol, F_USB, in all source code files equal to the
42# input clock frequency (before any prescaling is performed) in Hz. This value may
43# differ from F_CPU if prescaling is used on the latter, and is required as the
44# raw input clock is fed directly to the PLL sections of the AVR for high speed
45# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
46# at the end, this will be done automatically to create a 32-bit value in your
47# source code.
48#
49# If no clock division is performed on the input clock inside the AVR (via the
50# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
51F_USB = $(F_CPU)
52
53# Interrupt driven control endpoint task(+60)
54#OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
55
56
33# Boot Section Size in *bytes* 57# Boot Section Size in *bytes*
34# Teensy halfKay 512 58# Teensy halfKay 512
35# Teensy++ halfKay 1024 59# Teensy++ halfKay 1024
@@ -58,6 +82,6 @@ VPATH += $(TOP_DIR)
58 82
59 83
60include $(TOP_DIR)/protocol.mk 84include $(TOP_DIR)/protocol.mk
61include $(TOP_DIR)/protocol/pjrc.mk 85include $(TOP_DIR)/protocol/lufa.mk
62include $(TOP_DIR)/common.mk 86include $(TOP_DIR)/common.mk
63include $(TOP_DIR)/rules.mk 87include $(TOP_DIR)/rules.mk
diff --git a/converter/next_usb/Makefile.pjrc b/converter/next_usb/Makefile.pjrc
new file mode 100644
index 000000000..51d9de6b1
--- /dev/null
+++ b/converter/next_usb/Makefile.pjrc
@@ -0,0 +1,63 @@
1# Target file name (without extension).
2TARGET = next_usb
3
4# Directory common source filess exist
5TOP_DIR = ../..
6
7# Directory keyboard dependent files exist
8TARGET_DIR = .
9
10# keyboard dependent files
11SRC = keymap.c \
12 matrix.c \
13 led.c
14
15CONFIG_H = config.h
16
17# MCU name, you MUST set this to match the board you are using
18# type "make clean" after changing this, so all files will be rebuilt
19#MCU = at90usb162 # Teensy 1.0
20MCU = atmega32u4 # Teensy 2.0
21#MCU = at90usb646 # Teensy++ 1.0
22#MCU = at90usb1286 # Teensy++ 2.0
23
24
25# Processor frequency.
26# Normally the first thing your program should do is set the clock prescaler,
27# so your program will run at the correct speed. You should also set this
28# variable to same clock speed. The _delay_ms() macro uses this, and many
29# examples use this variable to calculate timings. Do not add a "UL" here.
30F_CPU = 16000000
31
32
33# Boot Section Size in *bytes*
34# Teensy halfKay 512
35# Teensy++ halfKay 1024
36# Atmel DFU loader 4096
37# LUFA bootloader 4096
38# USBaspLoader 2048
39OPT_DEFS += -DBOOTLOADER_SIZE=4096
40
41
42# Build Options
43# *Comment out* to disable the options.
44#
45#BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
46MOUSEKEY_ENABLE = yes # Mouse keys
47EXTRAKEY_ENABLE = yes # Audio control and System control
48CONSOLE_ENABLE = yes # Console for debug(+400)
49COMMAND_ENABLE = yes # Commands for debug and configuration
50#NKRO_ENABLE = yes # USB Nkey Rollover
51
52SRC += next_kbd.c
53
54
55# Search Path
56VPATH += $(TARGET_DIR)
57VPATH += $(TOP_DIR)
58
59
60include $(TOP_DIR)/protocol.mk
61include $(TOP_DIR)/protocol/pjrc.mk
62include $(TOP_DIR)/common.mk
63include $(TOP_DIR)/rules.mk
diff --git a/converter/next_usb/config.h b/converter/next_usb/config.h
index b3d188b0c..cd80b5af1 100644
--- a/converter/next_usb/config.h
+++ b/converter/next_usb/config.h
@@ -60,6 +60,7 @@ POSSIBILITY OF SUCH DAMAGE.
60 60
61//#define TEENSY_CONFIG 1 61//#define TEENSY_CONFIG 1
62#define PRO_MICRO_CONFIG 1 62#define PRO_MICRO_CONFIG 1
63//#define TMK_CONFIG 1
63 64
64// comment out if you don't want the keyboard's LEDs to flash upon initialization 65// comment out if you don't want the keyboard's LEDs to flash upon initialization
65#define NEXT_KBD_INIT_FLASH_LEDS 66#define NEXT_KBD_INIT_FLASH_LEDS
@@ -143,6 +144,43 @@ POSSIBILITY OF SUCH DAMAGE.
143#endif 144#endif
144//================= End of Teensy 2.0 Configuration ================== 145//================= End of Teensy 2.0 Configuration ==================
145 146
147
148//================ Start of TMK converter Configuration =================
149#ifdef TMK_CONFIG
150
151// this is the debugging LED that flashes when a key is being pressed
152// comment out in order to disable debugging LED
153#define NEXT_KBD_LED1_PORT PORTD
154#define NEXT_KBD_LED1_PIN PIND
155#define NEXT_KBD_LED1_DDR DDRD
156#define NEXT_KBD_LED1_BIT 6
157
158#define NEXT_KBD_LED1_ON NEXT_KBD_LED1_PORT |= (1<<NEXT_KBD_LED1_BIT);
159#define NEXT_KBD_LED1_OFF NEXT_KBD_LED1_PORT &= ~(1<<NEXT_KBD_LED1_BIT);
160
161// corresponds to the Keyboard In wire on the NeXT connector
162#define NEXT_KBD_OUT_PORT PORTD
163#define NEXT_KBD_OUT_PIN PIND
164#define NEXT_KBD_OUT_DDR DDRD
165#define NEXT_KBD_OUT_BIT 1
166
167// corresponds to the Keyboard Out wire on the NeXT connector
168#define NEXT_KBD_IN_PORT PORTD
169#define NEXT_KBD_IN_PIN PIND
170#define NEXT_KBD_IN_DDR DDRD
171#define NEXT_KBD_IN_BIT 0
172
173// this pin is an input for the power key on the NeXT keyboard
174// as the keyboard is powered on this should be normally high;
175// if it is pulled low it means the power button is being preseed
176#define NEXT_KBD_PWR_PORT PORTD
177#define NEXT_KBD_PWR_PIN PIND
178#define NEXT_KBD_PWR_DDR DDRD
179#define NEXT_KBD_PWR_BIT 4
180
181#endif
182//================= End of TMK converter Configuration ==================
183
146/* key combination for command */ 184/* key combination for command */
147#define IS_COMMAND() ( \ 185#define IS_COMMAND() ( \
148 (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))|| \ 186 (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))|| \
diff --git a/converter/ps2_usb/Makefile.vusb b/converter/ps2_usb/Makefile.vusb
index 1bb44f887..ddf186845 100644
--- a/converter/ps2_usb/Makefile.vusb
+++ b/converter/ps2_usb/Makefile.vusb
@@ -8,10 +8,16 @@ TOP_DIR = ../..
8TARGET_DIR = . 8TARGET_DIR = .
9 9
10# keyboard dependent files 10# keyboard dependent files
11SRC = keymap.c \ 11SRC = keymap_common.c \
12 matrix.c \ 12 matrix.c \
13 led.c 13 led.c
14 14
15ifdef KEYMAP
16 SRC := keymap_$(KEYMAP).c $(SRC)
17else
18 SRC := keymap_plain.c $(SRC)
19endif
20
15# Use USART for PS/2. With V-USB INT and BUSYWAIT code is not useful. 21# Use USART for PS/2. With V-USB INT and BUSYWAIT code is not useful.
16SRC += protocol/ps2_usart.c 22SRC += protocol/ps2_usart.c
17OPT_DEFS += -DPS2_USE_USART 23OPT_DEFS += -DPS2_USE_USART
@@ -95,7 +101,7 @@ VPATH += $(TARGET_DIR)
95VPATH += $(TOP_DIR) 101VPATH += $(TOP_DIR)
96 102
97 103
98include $(TOP_DIR)/protocol/vusb.mk
99include $(TOP_DIR)/protocol.mk 104include $(TOP_DIR)/protocol.mk
100include $(TOP_DIR)/common.mk 105include $(TOP_DIR)/common.mk
106include $(TOP_DIR)/protocol/vusb.mk
101include $(TOP_DIR)/rules.mk 107include $(TOP_DIR)/rules.mk
diff --git a/converter/ps2_usb/README.md b/converter/ps2_usb/README.md
index 586394b23..8a535949d 100644
--- a/converter/ps2_usb/README.md
+++ b/converter/ps2_usb/README.md
@@ -58,8 +58,7 @@ To select method edit Makefile.
58 58
59V-USB Support 59V-USB Support
60------------- 60-------------
61You can also use this converter on ATmega(168/328) with V-USB instead of Teensy. 61With V-USB you can use this converter on ATmega(168/328) but it doesn't support NKRO at this time.
62The converter on V-USB lacks some features for now: USB NKRO and System/Media control.
63 62
64Circuit: 63Circuit:
65 64
diff --git a/converter/serialmouse_usb/Makefile b/converter/serialmouse_usb/Makefile
new file mode 100644
index 000000000..ea0e439bd
--- /dev/null
+++ b/converter/serialmouse_usb/Makefile
@@ -0,0 +1,106 @@
1#
2# Makefile for Teensy
3#
4# Target file name (without extension).
5TARGET = serialmouse_usb
6
7# Directory common source filess exist
8TOP_DIR = ../..
9
10# Directory keyboard dependent files exist
11TARGET_DIR = .
12
13# project specific files
14SRC = keymap.c \
15 matrix.c \
16 led.c
17
18CONFIG_H = config.h
19
20
21# MCU name
22#MCU = at90usb1287
23MCU = atmega32u4
24
25# Processor frequency.
26# This will define a symbol, F_CPU, in all source code files equal to the
27# processor frequency in Hz. You can then use this symbol in your source code to
28# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
29# automatically to create a 32-bit value in your source code.
30#
31# This will be an integer division of F_USB below, as it is sourced by
32# F_USB after it has run through any CPU prescalers. Note that this value
33# does not *change* the processor frequency - it should merely be updated to
34# reflect the processor speed set externally so that the code can use accurate
35# software delays.
36F_CPU = 16000000
37
38
39#
40# LUFA specific
41#
42# Target architecture (see library "Board Types" documentation).
43ARCH = AVR8
44
45# Input clock frequency.
46# This will define a symbol, F_USB, in all source code files equal to the
47# input clock frequency (before any prescaling is performed) in Hz. This value may
48# differ from F_CPU if prescaling is used on the latter, and is required as the
49# raw input clock is fed directly to the PLL sections of the AVR for high speed
50# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
51# at the end, this will be done automatically to create a 32-bit value in your
52# source code.
53#
54# If no clock division is performed on the input clock inside the AVR (via the
55# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
56F_USB = $(F_CPU)
57
58# Interrupt driven control endpoint task(+60)
59#OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
60
61
62# Boot Section Size in *bytes*
63# Teensy halfKay 512
64# Teensy++ halfKay 1024
65# Atmel DFU loader 4096
66# LUFA bootloader 4096
67# USBaspLoader 2048
68OPT_DEFS += -DBOOTLOADER_SIZE=512
69
70
71# Build Options
72# comment out to disable the options.
73#
74#BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
75#MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
76#EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
77CONSOLE_ENABLE = yes # Console for debug(+400)
78#COMMAND_ENABLE = yes # Commands for debug and configuration
79#NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
80
81
82# Serial Mouse Options
83# You can choose a mouse protocol and the implementation of
84# the underlying serial connection.
85#
86SERIAL_MOUSE_MICROSOFT_ENABLE = yes # Enable support for Microsoft-compatible mice
87#SERIAL_MOUSE_MOUSESYSTEMS_ENABLE = yes # Enable support for Mousesystems-compatible mice
88#SERIAL_MOUSE_USE_UART = yes # use hardware UART for serial connection
89SERIAL_MOUSE_USE_SOFT = yes # use software serial implementation
90
91# Optional serial mouse driver features
92# Support scrolling while holding the middle mouse button
93# (currently only supported for Mousesystems mice):
94#OPT_DEFS += -DSERIAL_MOUSE_CENTER_SCROLL
95
96# Optimize size but this may cause error "relocation truncated to fit"
97#EXTRALDFLAGS = -Wl,--relax
98
99# Search Path
100VPATH += $(TARGET_DIR)
101VPATH += $(TOP_DIR)
102
103include $(TOP_DIR)/protocol.mk
104include $(TOP_DIR)/protocol/lufa.mk
105include $(TOP_DIR)/common.mk
106include $(TOP_DIR)/rules.mk
diff --git a/converter/serialmouse_usb/README.md b/converter/serialmouse_usb/README.md
new file mode 100644
index 000000000..ef8a00671
--- /dev/null
+++ b/converter/serialmouse_usb/README.md
@@ -0,0 +1,11 @@
1Serial mouse converter
2======================
3See https://github.com/tmk/tmk_keyboard/pull/131
4
5
6Supported protocols
7-------------------
8### Microsoft
9Not tested.
10
11### Mousesystems
diff --git a/converter/serialmouse_usb/config.h b/converter/serialmouse_usb/config.h
new file mode 100644
index 000000000..b257d997c
--- /dev/null
+++ b/converter/serialmouse_usb/config.h
@@ -0,0 +1,119 @@
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_H
19#define CONFIG_H
20
21#include <avr/interrupt.h>
22
23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x2222
25#define DEVICE_VER 0x0001
26#define MANUFACTURER t.m.k.
27#define PRODUCT serial mouse converter
28#define DESCRIPTION convert serial mouse into USB
29
30
31/* matrix size */
32#define MATRIX_ROWS 0
33#define MATRIX_COLS 0
34
35
36/* key combination for command */
37#define IS_COMMAND() false
38
39
40
41#ifdef SERIAL_MOUSE_MICROSOFT
42 /*
43 * Serial(USART) configuration (for Microsoft serial mice)
44 * asynchronous, positive logic, 1200baud, bit order: LSB first
45 * 1-start bit, 7-data bit, no parity, 1-stop bit
46 */
47 #define SERIAL_UART_BAUD 1200
48 #define SERIAL_UART_DATA UDR1
49 #define SERIAL_UART_UBRR ((F_CPU/(16UL*SERIAL_UART_BAUD))-1)
50 #define SERIAL_UART_RXD_VECT USART1_RX_vect
51 #define SERIAL_UART_TXD_READY (UCSR1A&(1<<UDRE1))
52 #define SERIAL_UART_INIT() do { \
53 UBRR1L = (uint8_t) SERIAL_UART_UBRR; /* baud rate */ \
54 UBRR1H = (uint8_t) (SERIAL_UART_UBRR>>8); /* baud rate */ \
55 UCSR1B |= (1<<RXCIE1) | (1<<RXEN1); /* RX interrupt, RX: enable */ \
56 UCSR1C = (1<<UCSZ11) | (0<<UCSZ10); /* no parity, 1 stop bit, 7-bit characters */ \
57 sei(); \
58 } while(0)
59
60 // for Microsoft mouse protocol
61 /* Serial(USART) configuration
62 * asynchronous, negative logic, 1200baud, no flow control
63 * 1-start bit, 7-data bit, non parity, 1-stop bit
64 */
65 #define SERIAL_SOFT_BAUD 1200
66 #define SERIAL_SOFT_DATA_7BIT
67 #define SERIAL_SOFT_PARITY_NONE
68 #define SERIAL_SOFT_BIT_ORDER_LSB
69 #define SERIAL_SOFT_LOGIC_NEGATIVE
70 /* RXD Port */
71 #define SERIAL_SOFT_RXD_DDR DDRD
72 #define SERIAL_SOFT_RXD_PORT PORTD
73 #define SERIAL_SOFT_RXD_PIN PIND
74 #define SERIAL_SOFT_RXD_BIT 2
75 #define SERIAL_SOFT_RXD_VECT INT2_vect
76 /* RXD Interupt */
77 #define SERIAL_SOFT_RXD_INIT() do { \
78 /* pin configuration: input with pull-up */ \
79 SERIAL_SOFT_RXD_DDR &= ~(1<<SERIAL_SOFT_RXD_BIT); \
80 SERIAL_SOFT_RXD_PORT |= (1<<SERIAL_SOFT_RXD_BIT); \
81 /* enable interrupt: INT2(rising edge) */ \
82 EICRA |= ((1<<ISC21)|(1<<ISC20)); \
83 EIMSK |= (1<<INT2); \
84 sei(); \
85 } while (0)
86 #define SERIAL_SOFT_RXD_INT_ENTER()
87 #define SERIAL_SOFT_RXD_INT_EXIT() do { \
88 /* clear interrupt flag */ \
89 EIFR = (1<<INTF2); \
90 } while (0)
91 #define SERIAL_SOFT_RXD_READ() (SERIAL_SOFT_RXD_PIN&(1<<SERIAL_SOFT_RXD_BIT))
92 /* TXD Port */
93 #define SERIAL_SOFT_TXD_HI()
94 #define SERIAL_SOFT_TXD_LO()
95 #define SERIAL_SOFT_TXD_INIT()
96#elif defined(SERIAL_MOUSE_MOUSESYSTEMS)
97 /*
98 * Serial(USART) configuration (for Mousesystems serial mice)
99 * asynchronous, positive logic, 1200baud, bit order: LSB first
100 * 1-start bit, 8-data bit, no parity, 1-stop bit
101 */
102 #define SERIAL_UART_BAUD 1200
103 #define SERIAL_UART_DATA UDR1
104 #define SERIAL_UART_UBRR ((F_CPU/(16UL*SERIAL_UART_BAUD))-1)
105 #define SERIAL_UART_RXD_VECT USART1_RX_vect
106 #define SERIAL_UART_TXD_READY (UCSR1A&(1<<UDRE1))
107 #define SERIAL_UART_INIT() do { \
108 UBRR1L = (uint8_t) SERIAL_UART_UBRR; /* baud rate */ \
109 UBRR1H = (uint8_t) (SERIAL_UART_UBRR>>8); /* baud rate */ \
110 UCSR1B |= (1<<RXCIE1) | (1<<RXEN1); /* RX interrupt, RX: enable */ \
111 UCSR1C = (1<<UCSZ11) | (1<<UCSZ10); /* no parity, 1 stop bit, 8-bit characters */ \
112 sei(); \
113 } while(0)
114#endif
115
116
117
118
119#endif
diff --git a/converter/serialmouse_usb/keymap.c b/converter/serialmouse_usb/keymap.c
new file mode 100644
index 000000000..de8f75c2a
--- /dev/null
+++ b/converter/serialmouse_usb/keymap.c
@@ -0,0 +1,33 @@
1/*
2Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#include <stdint.h>
18#include <stdbool.h>
19#include "keymap.h"
20
21
22/* translates key to keycode */
23uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
24{
25 return KC_NO;
26}
27
28/* translates Fn keycode to action */
29action_t keymap_fn_to_action(uint8_t keycode)
30{
31 return (action_t){};
32}
33
diff --git a/converter/serialmouse_usb/keymap_common.c b/converter/serialmouse_usb/keymap_common.c
new file mode 100644
index 000000000..241d2e33b
--- /dev/null
+++ b/converter/serialmouse_usb/keymap_common.c
@@ -0,0 +1,30 @@
1/*
2Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#include "keymap_common.h"
18
19
20/* translates key to keycode */
21uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
22{
23 return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
24}
25
26/* translates Fn keycode to action */
27action_t keymap_fn_to_action(uint8_t keycode)
28{
29 return (action_t){ .code = pgm_read_word(&fn_actions[FN_INDEX(keycode)]) };
30}
diff --git a/converter/serialmouse_usb/keymap_common.h b/converter/serialmouse_usb/keymap_common.h
new file mode 100644
index 000000000..216a8dc02
--- /dev/null
+++ b/converter/serialmouse_usb/keymap_common.h
@@ -0,0 +1,174 @@
1/*
2Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#ifndef KEYMAP_COMMON_H
18#define KEYMAP_COMMON_H
19
20#include <stdint.h>
21#include <stdbool.h>
22#include <avr/pgmspace.h>
23#include "keycode.h"
24#include "action.h"
25#include "action_macro.h"
26#include "report.h"
27#include "print.h"
28#include "debug.h"
29#include "keymap.h"
30
31
32// 32*8(256) byte array which converts PS/2 code into USB code
33extern const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
34extern const uint16_t fn_actions[];
35
36
37/* All keys */
38#define KEYMAP_ALL( \
39 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
40 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
41 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5D, KF1,KE9,KFA, K6C,K75,K7D, \
42 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K79, \
43 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
44 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA, \
45 \
46 K61, /* for European ISO */ \
47 K51, K13, K6A, K64, K67, /* for Japanese JIS */ \
48 K08, K10, K18, K20, K28, K30, K38, K40, K48, K50, K57, K5F, /* F13-24 */ \
49 KB7, KBF, KDE, /* System Power, Sleep, Wake */ \
50 KA3, KB2, KA1, /* Mute, Volume Up, Volume Down */ \
51 KCD, K95, KBB, KB4, KD0, /* Next, Previous, Stop, Pause, Media Select */ \
52 KC8, KAB, KC0, /* Mail, Calculator, My Computer */ \
53 K90, KBA, KB8, KB0, /* WWW Search, Home, Back, Forward */ \
54 KA8, KA0, K98 /* WWW Stop, Refresh, Favorites */ \
55) { \
56 { KC_NO, KC_##K01, KC_NO, KC_##K03, KC_##K04, KC_##K05, KC_##K06, KC_##K07 }, \
57 { KC_##K08, KC_##K09, KC_##K0A, KC_##K0B, KC_##K0C, KC_##K0D, KC_##K0E, KC_NO }, \
58 { KC_##K10, KC_##K11, KC_##K12, KC_##K13, KC_##K14, KC_##K15, KC_##K16, KC_NO }, \
59 { KC_##K18, KC_NO, KC_##K1A, KC_##K1B, KC_##K1C, KC_##K1D, KC_##K1E, KC_NO }, \
60 { KC_##K20, KC_##K21, KC_##K22, KC_##K23, KC_##K24, KC_##K25, KC_##K26, KC_NO }, \
61 { KC_##K28, KC_##K29, KC_##K2A, KC_##K2B, KC_##K2C, KC_##K2D, KC_##K2E, KC_NO }, \
62 { KC_##K30, KC_##K31, KC_##K32, KC_##K33, KC_##K34, KC_##K35, KC_##K36, KC_NO }, \
63 { KC_##K38, KC_NO, KC_##K3A, KC_##K3B, KC_##K3C, KC_##K3D, KC_##K3E, KC_NO }, \
64 { KC_##K40, KC_##K41, KC_##K42, KC_##K43, KC_##K44, KC_##K45, KC_##K46, KC_NO }, \
65 { KC_##K48, KC_##K49, KC_##K4A, KC_##K4B, KC_##K4C, KC_##K4D, KC_##K4E, KC_NO }, \
66 { KC_##K50, KC_##K51, KC_##K52, KC_NO, KC_##K54, KC_##K55, KC_NO, KC_##K57 }, \
67 { KC_##K58, KC_##K59, KC_##K5A, KC_##K5B, KC_NO, KC_##K5D, KC_NO, KC_##K5F }, \
68 { KC_NO, KC_##K61, KC_NO, KC_NO, KC_##K64, KC_NO, KC_##K66, KC_##K67 }, \
69 { KC_NO, KC_##K69, KC_##K6A, KC_##K6B, KC_##K6C, KC_NO, KC_NO, KC_NO }, \
70 { KC_##K70, KC_##K71, KC_##K72, KC_##K73, KC_##K74, KC_##K75, KC_##K76, KC_##K77 }, \
71 { KC_##K78, KC_##K79, KC_##K7A, KC_##K7B, KC_##K7C, KC_##K7D, KC_##K7E, KC_NO }, \
72 { KC_NO, KC_NO, KC_NO, KC_##K83, KC_NO, KC_NO, KC_NO, KC_NO }, \
73 { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \
74 { KC_##K90, KC_##K91, KC_NO, KC_NO, KC_##K94, KC_##K95, KC_NO, KC_NO }, \
75 { KC_##K98, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_##K9F }, \
76 { KC_##KA0, KC_##KA1, KC_NO, KC_##KA3, KC_NO, KC_NO, KC_NO, KC_##KA7 }, \
77 { KC_##KA8, KC_NO, KC_NO, KC_##KAB, KC_NO, KC_NO, KC_NO, KC_##KAF }, \
78 { KC_##KB0, KC_NO, KC_##KB2, KC_NO, KC_##KB4, KC_NO, KC_NO, KC_##KB7 }, \
79 { KC_##KB8, KC_NO, KC_##KBA, KC_##KBB, KC_NO, KC_NO, KC_NO, KC_##KBF }, \
80 { KC_##KC0, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \
81 { KC_##KC8, KC_NO, KC_##KCA, KC_NO, KC_NO, KC_##KCD, KC_NO, KC_NO }, \
82 { KC_##KD0, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \
83 { KC_NO, KC_NO, KC_##KDA, KC_NO, KC_NO, KC_NO, KC_##KDE, KC_NO }, \
84 { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \
85 { KC_NO, KC_##KE9, KC_NO, KC_##KEB, KC_##KEC, KC_NO, KC_NO, KC_NO }, \
86 { KC_##KF0, KC_##KF1, KC_##KF2, KC_NO, KC_##KF4, KC_##KF5, KC_NO, KC_NO }, \
87 { KC_NO, KC_NO, KC_##KFA, KC_NO, KC_##KFC, KC_##KFD, KC_##KFE, KC_NO }, \
88}
89
90/* US layout */
91#define KEYMAP( \
92 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
93 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
94 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5D, KF1,KE9,KFA, K6C,K75,K7D, \
95 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K79, \
96 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
97 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA \
98) \
99KEYMAP_ALL( \
100 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
101 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
102 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5D, KF1,KE9,KFA, K6C,K75,K7D, \
103 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K79, \
104 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
105 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA, \
106 \
107 NUBS, \
108 RO, KANA, JYEN, HENK, MHEN, \
109 F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, \
110 SYSTEM_POWER, SYSTEM_SLEEP, SYSTEM_WAKE, \
111 AUDIO_MUTE, AUDIO_VOL_UP, AUDIO_VOL_DOWN, \
112 MEDIA_NEXT_TRACK, MEDIA_PREV_TRACK, MEDIA_STOP, MEDIA_PLAY_PAUSE, MEDIA_SELECT, \
113 MAIL, CALCULATOR, MY_COMPUTER, \
114 WWW_SEARCH, WWW_HOME, WWW_BACK, WWW_FORWARD, \
115 WWW_STOP, WWW_REFRESH, WWW_FAVORITES \
116)
117
118/* ISO layout */
119#define KEYMAP_ISO( \
120 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
121 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
122 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B, KF1,KE9,KFA, K6C,K75,K7D, \
123 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52,K5D,K5A, K6B,K73,K74,K79, \
124 K12,K61,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
125 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA \
126) \
127KEYMAP_ALL( \
128 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
129 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
130 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5D, KF1,KE9,KFA, K6C,K75,K7D, \
131 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K79, \
132 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
133 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA, \
134 \
135 K61, \
136 RO, KANA, JYEN, HENK, MHEN, \
137 F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, \
138 SYSTEM_POWER, SYSTEM_SLEEP, SYSTEM_WAKE, \
139 AUDIO_MUTE, AUDIO_VOL_UP, AUDIO_VOL_DOWN, \
140 MEDIA_NEXT_TRACK, MEDIA_PREV_TRACK, MEDIA_STOP, MEDIA_PLAY_PAUSE, MEDIA_SELECT, \
141 MAIL, CALCULATOR, MY_COMPUTER, \
142 WWW_SEARCH, WWW_HOME, WWW_BACK, WWW_FORWARD, \
143 WWW_STOP, WWW_REFRESH, WWW_FAVORITES \
144)
145
146/* JIS layout */
147#define KEYMAP_JIS( \
148 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
149 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K6A,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
150 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B, KF1,KE9,KFA, K6C,K75,K7D, \
151 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52,K5D, K5A, K6B,K73,K74,K79, \
152 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A,K51, K59, KF5, K69,K72,K7A, \
153 K14,K9F,K11, K67,K29,K64,K13, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA \
154) \
155KEYMAP_ALL( \
156 K76,K05,K06,K04,K0C,K03,K0B,K83,K0A,K01,K09,K78,K07, KFC,K7E,KFE, \
157 K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, KF0,KEC,KFD, K77,KCA,K7C,K7B, \
158 K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5D, KF1,KE9,KFA, K6C,K75,K7D, \
159 K58,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K79, \
160 K12,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, KF5, K69,K72,K7A, \
161 K14,K9F,K11, K29, K91,KA7,KAF,K94, KEB,KF2,KF4, K70, K71,KDA, \
162 \
163 NUBS, \
164 K51, K13, K6A, K64, K67, \
165 F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, \
166 SYSTEM_POWER, SYSTEM_SLEEP, SYSTEM_WAKE, \
167 AUDIO_MUTE, AUDIO_VOL_UP, AUDIO_VOL_DOWN, \
168 MEDIA_NEXT_TRACK, MEDIA_PREV_TRACK, MEDIA_STOP, MEDIA_PLAY_PAUSE, MEDIA_SELECT, \
169 MAIL, CALCULATOR, MY_COMPUTER, \
170 WWW_SEARCH, WWW_HOME, WWW_BACK, WWW_FORWARD, \
171 WWW_STOP, WWW_REFRESH, WWW_FAVORITES \
172)
173
174#endif
diff --git a/converter/serialmouse_usb/led.c b/converter/serialmouse_usb/led.c
new file mode 100644
index 000000000..f76545f0b
--- /dev/null
+++ b/converter/serialmouse_usb/led.c
@@ -0,0 +1,24 @@
1/*
2Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include "stdint.h"
19#include "led.h"
20
21
22void led_set(uint8_t usb_led)
23{
24}
diff --git a/converter/serialmouse_usb/matrix.c b/converter/serialmouse_usb/matrix.c
new file mode 100644
index 000000000..0e0d87f80
--- /dev/null
+++ b/converter/serialmouse_usb/matrix.c
@@ -0,0 +1,83 @@
1/*
2Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include <stdint.h>
19#include <stdbool.h>
20#include <avr/io.h>
21#include <util/delay.h>
22#include "action.h"
23#include "print.h"
24#include "util.h"
25#include "debug.h"
26#include "matrix.h"
27
28
29inline
30uint8_t matrix_rows(void)
31{
32 return MATRIX_ROWS;
33}
34
35inline
36uint8_t matrix_cols(void)
37{
38 return MATRIX_COLS;
39}
40
41void matrix_init(void)
42{
43 debug_enable = true;
44 debug_mouse=true;
45 return;
46}
47
48uint8_t matrix_scan(void)
49{
50 return 0;
51}
52
53bool matrix_is_modified(void)
54{
55 return false;
56}
57
58inline
59bool matrix_has_ghost(void)
60{
61 return false;
62}
63
64inline
65bool matrix_is_on(uint8_t row, uint8_t col)
66{
67 return false;
68}
69
70inline
71uint8_t matrix_get_row(uint8_t row)
72{
73 return 0;
74}
75
76void matrix_print(void)
77{
78}
79
80uint8_t matrix_key_count(void)
81{
82 return 0;
83}
diff --git a/converter/sun_usb/Makefile b/converter/sun_usb/Makefile
index 35c4bb123..b32497cd9 100644
--- a/converter/sun_usb/Makefile
+++ b/converter/sun_usb/Makefile
@@ -63,6 +63,7 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
63MOUSEKEY_ENABLE = yes # Mouse keys 63MOUSEKEY_ENABLE = yes # Mouse keys
64EXTRAKEY_ENABLE = yes # Audio control and System control 64EXTRAKEY_ENABLE = yes # Audio control and System control
65CONSOLE_ENABLE = yes # Console for debug 65CONSOLE_ENABLE = yes # Console for debug
66COMMAND_ENABLE = yes # Commands for debug and configuration
66#NKRO_ENABLE = yes # USB Nkey Rollover 67#NKRO_ENABLE = yes # USB Nkey Rollover
67 68
68 69
diff --git a/converter/sun_usb/README b/converter/sun_usb/README
index ee59fc757..276f6bfff 100644
--- a/converter/sun_usb/README
+++ b/converter/sun_usb/README
@@ -77,3 +77,23 @@ Just use 'make'
77 $ cd sun_usb 77 $ cd sun_usb
78 $ make 78 $ make
79Then, load the binary to MCU with your favorite programmer. 79Then, load the binary to MCU with your favorite programmer.
80
81
82Sun commands
83------------
84You can send Sun protocol commands with TMK `Magic` key combo. By default `Magic` key is `LShift` + `RShift`, `LAlt` + `RAlt' or `LMeta` + `RMeta`.
85https://github.com/tmk/tmk_keyboard#magic-commands
86
87Following Sun specific commands are available. For example, to send 'Bell On' you can press `LShift` + `RShift` + `Up` keys simultaneously.
88
89```
90----- Sun converter Help -----
91Up: Bell On
92Down: Bell Off
93Left: Click On
94Right: Click Off
95PgUp: LED all On
96PgDown: LED all On
97Insert: Layout
98Delete: Reset
99```
diff --git a/converter/sun_usb/command_extra.c b/converter/sun_usb/command_extra.c
index 50389467e..aba3fe6da 100644
--- a/converter/sun_usb/command_extra.c
+++ b/converter/sun_usb/command_extra.c
@@ -11,11 +11,19 @@ bool command_extra(uint8_t code)
11 case KC_H: 11 case KC_H:
12 case KC_SLASH: /* ? */ 12 case KC_SLASH: /* ? */
13 print("\n\n----- Sun converter Help -----\n"); 13 print("\n\n----- Sun converter Help -----\n");
14 print("UP: Bell On\n"); 14 print("Up: Bell On\n");
15 print("DOWN: Bell Off\n"); 15 print("Down: Bell Off\n");
16 print("LEFT: Click On\n"); 16 print("Left: Click On\n");
17 print("RIGHT: Click Off\n"); 17 print("Right: Click Off\n");
18 print("PgUp: LED all On\n");
19 print("PgDown: LED all On\n");
20 print("Insert: Layout\n");
21 print("Delete: Reset\n");
18 return false; 22 return false;
23 case KC_DEL:
24 print("Reset\n");
25 serial_send(0x01);
26 break;
19 case KC_UP: 27 case KC_UP:
20 print("Bell On\n"); 28 print("Bell On\n");
21 serial_send(0x02); 29 serial_send(0x02);
@@ -32,7 +40,17 @@ bool command_extra(uint8_t code)
32 print("Click Off\n"); 40 print("Click Off\n");
33 serial_send(0x0B); 41 serial_send(0x0B);
34 break; 42 break;
35 case KC_NUMLOCK: 43 case KC_PGUP:
44 print("LED all on\n");
45 serial_send(0x0E);
46 serial_send(0xFF);
47 break;
48 case KC_PGDOWN:
49 print("LED all off\n");
50 serial_send(0x0E);
51 serial_send(0x00);
52 break;
53 case KC_INSERT:
36 print("layout\n"); 54 print("layout\n");
37 serial_send(0x0F); 55 serial_send(0x0F);
38 break; 56 break;
diff --git a/converter/sun_usb/matrix.c b/converter/sun_usb/matrix.c
index 988622bc3..f333f542b 100644
--- a/converter/sun_usb/matrix.c
+++ b/converter/sun_usb/matrix.c
@@ -65,7 +65,7 @@ void matrix_init(void)
65{ 65{
66 DDRD |= (1<<6); 66 DDRD |= (1<<6);
67 PORTD |= (1<<6); 67 PORTD |= (1<<6);
68 debug_enable = true; 68 //debug_enable = true;
69 69
70 serial_init(); 70 serial_init();
71 71
@@ -86,14 +86,16 @@ uint8_t matrix_scan(void)
86 debug_hex(code); debug(" "); 86 debug_hex(code); debug(" ");
87 87
88 switch (code) { 88 switch (code) {
89 case 0x7E: // reset fail
90 case 0xFE: // layout
91 case 0xFF: // reset success 89 case 0xFF: // reset success
90 case 0xFE: // layout
91 case 0x7E: // reset fail
92 if (code == 0xFF) print("reset: 0xFF ");
93 if (code == 0x7E) print("reset fail: 0x7E ");
94 if (code == 0xFE) print("layout: 0xFE ");
95 // response byte
92 _delay_ms(500); 96 _delay_ms(500);
93 // ignore response byte 97 if (code = serial_recv()) print_hex8(code);
94 debug("(response ignored:"); 98 print("\n");
95 while ((code = serial_recv())) { debug(" "); debug_hex(code); }
96 debug(") ");
97 // FALL THROUGH 99 // FALL THROUGH
98 case 0x7F: 100 case 0x7F:
99 // all keys up 101 // all keys up
diff --git a/converter/usb_usb/README b/converter/usb_usb/README
index d0547cde9..a48937110 100644
--- a/converter/usb_usb/README
+++ b/converter/usb_usb/README
@@ -14,12 +14,8 @@ Build firmware
14-------------- 14--------------
15 $ git clone git://github.com/tmk/tmk_keyboard.git 15 $ git clone git://github.com/tmk/tmk_keyboard.git
16 $ cd tmk_keyboard 16 $ cd tmk_keyboard
17 $ git checkout usb_hid
18 $ git submodule init 17 $ git submodule init
19 $ git submodule update 18 $ git submodule update
20
21and download LUFA and unzip under protocol/lufa and edit LUFA_PATH in protocol/lufa.mk. Then,
22
23 $ cd converter/usb_usb 19 $ cd converter/usb_usb
24 $ make 20 $ make
25 21
diff --git a/converter/usb_usb/config.h b/converter/usb_usb/config.h
index ecf4ed9b1..d614973f7 100644
--- a/converter/usb_usb/config.h
+++ b/converter/usb_usb/config.h
@@ -33,6 +33,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
33#define MATRIX_ROWS 32 33#define MATRIX_ROWS 32
34#define MATRIX_COLS 8 34#define MATRIX_COLS 8
35 35
36#define USE_LEGACY_KEYMAP
36 37
37/* key combination for command */ 38/* key combination for command */
38#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) 39#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))
diff --git a/converter/usb_usb/main.cpp b/converter/usb_usb/main.cpp
index 46c728e9b..20b7af66a 100644
--- a/converter/usb_usb/main.cpp
+++ b/converter/usb_usb/main.cpp
@@ -59,7 +59,6 @@ int main(void)
59 LED_TX_INIT; 59 LED_TX_INIT;
60 LED_TX_ON; 60 LED_TX_ON;
61 61
62 print_enable = true;
63 debug_enable = true; 62 debug_enable = true;
64 debug_matrix = true; 63 debug_matrix = true;
65 debug_keyboard = true; 64 debug_keyboard = true;