67 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Copyright 2021 Jay Greco
 | 
						|
 *
 | 
						|
 * This program is free software: you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License as published by
 | 
						|
 * the Free Software Foundation, either version 2 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
 * GNU General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License
 | 
						|
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
#include "snap.h"
 | 
						|
 | 
						|
void matrix_init_kb(void) {
 | 
						|
    set_bitc_LED(LED_OFF);
 | 
						|
    matrix_init_remote_kb();
 | 
						|
    matrix_init_user();
 | 
						|
}
 | 
						|
 | 
						|
void keyboard_post_init_kb(void) {
 | 
						|
#ifdef CONSOLE_ENABLE
 | 
						|
    debug_enable = true;
 | 
						|
    debug_matrix = true;
 | 
						|
#endif
 | 
						|
    keyboard_post_init_user();
 | 
						|
}
 | 
						|
 | 
						|
void matrix_scan_kb(void) {
 | 
						|
    matrix_scan_remote_kb();
 | 
						|
    matrix_scan_user();
 | 
						|
}
 | 
						|
 | 
						|
// Use Bit-C LED to show CAPS LOCK and NUM LOCK status
 | 
						|
void led_update_ports(led_t led_state) {
 | 
						|
    set_bitc_LED(led_state.caps_lock ? LED_DIM : LED_OFF);
 | 
						|
}
 | 
						|
 | 
						|
bool shutdown_kb(bool jump_to_bootloader) {
 | 
						|
    if (!shutdown_user(jump_to_bootloader)) {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    set_bitc_LED(LED_DIM);
 | 
						|
#ifdef RGBLIGHT_ENABLE
 | 
						|
    rgblight_disable_noeeprom();
 | 
						|
#endif
 | 
						|
#ifdef OLED_ENABLE
 | 
						|
    oled_off();
 | 
						|
#endif
 | 
						|
    return true;
 | 
						|
}
 | 
						|
 | 
						|
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
 | 
						|
    // If console is enabled, it will print the matrix position and status of each key pressed
 | 
						|
#ifdef CONSOLE_ENABLE
 | 
						|
    dprintf("kc: 0x%04X, col: %u, row: %u, pressed: %b, time: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time);
 | 
						|
#endif
 | 
						|
 | 
						|
    process_record_remote_kb(keycode, record);
 | 
						|
    if (!process_record_user(keycode, record)) return false;
 | 
						|
 | 
						|
    return true;
 | 
						|
}
 |