~ruther/qmk_firmware

07b6c1a58c8ccfd6e5d5bc57e34f6c44c24841a8 — tmk 12 years ago 07dff34
Fix debug pirnt and magic key.(M0110)
M converter/m0110_usb/README.md => converter/m0110_usb/README.md +1 -1
@@ 28,7 28,7 @@ In this pic:
3. `DATA`(Green)
4. `+5V`(Yellow)

Not that wire colors may vary in your cable.
Note that wire colors may vary in your cable.


### Pinout

M converter/m0110_usb/config.h => converter/m0110_usb/config.h +3 -2
@@ 36,9 36,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
/* Locking Caps Lock support */
//#define MATRIX_HAS_LOCKING_CAPS

/* key combination for command */
/* Backspace for command key */
#define BACKSPACE_CODE  0x33
#define IS_COMMAND() ( \
    keyboard_report->mods == (MOD_BIT(KC_LALT) | MOD_BIT(KC_LGUI)) \
    matrix_is_on((BACKSPACE_CODE>>3)&0x0F, BACKSPACE_CODE&0x07) \
)



M converter/m0110_usb/matrix.c => converter/m0110_usb/matrix.c +0 -7
@@ 60,13 60,6 @@ uint8_t matrix_cols(void)

void matrix_init(void)
{
    print_enable = true;
    debug_enable = true;
    debug_matrix = false;
    debug_keyboard = false;
    debug_mouse = false;
    print("debug enabled.\n");

    m0110_init();
    // initialize matrix state: all keys off
    for (uint8_t i=0; i < MATRIX_ROWS; i++) _matrix0[i] = 0x00;

M protocol/m0110.c => protocol/m0110.c +1 -1
@@ 321,7 321,7 @@ static inline uint8_t instant(void)
    m0110_send(M0110_INSTANT);
    uint8_t data = m0110_recv();
    if (data != M0110_NULL) {
        phex(data); print(" ");
        debug_hex(data); debug(" ");
    }
    return data;
}