~ruther/qmk_firmware

dd7534cccabd9e1cea86e69741ed8c68cb3d0299 — epaew 6 years ago e4dfcf8
Keyboard: fix for debug crkbd (#4469)

2 files changed, 9 insertions(+), 6 deletions(-)

M keyboards/crkbd/crkbd.c
M keyboards/crkbd/rev1/split_scomm.c
M keyboards/crkbd/crkbd.c => keyboards/crkbd/crkbd.c +7 -3
@@ 1,6 1,10 @@
#include "crkbd.h"
#include "ssd1306.h" 
#include "ssd1306.h"

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
	return process_record_gfx(keycode,record) && process_record_user(keycode, record);
}
\ No newline at end of file
#ifdef SSD1306OLED
  return process_record_gfx(keycode,record) && process_record_user(keycode, record);
#else
  return process_record_user(keycode, record);
#endif
}

M keyboards/crkbd/rev1/split_scomm.c => keyboards/crkbd/rev1/split_scomm.c +2 -3
@@ 63,10 63,9 @@ int serial_update_buffers(int master_update)
        if( smatstatus == TRANSACTION_END ) {
            s_change_old = s_change_new;
#ifdef CONSOLE_ENABLE
            uprintf("slave matrix = %b %b %b %b %b\n",
            uprintf("slave matrix = %b %b %b %b\n",
                    serial_slave_buffer[0], serial_slave_buffer[1],
                    serial_slave_buffer[2], serial_slave_buffer[3],
                    serial_slave_buffer[4] );
                    serial_slave_buffer[2], serial_slave_buffer[3]);
#endif
        }
    } else {