* add userspace and atreus keymap * cleaning up notes/comments * Update keyboards/atreus/keymaps/ridingqwerty/atreus.c Co-Authored-By: Joel Challis <git@zvecr.com> * Update keyboards/atreus/keymaps/ridingqwerty/atreus.c Co-Authored-By: Joel Challis <git@zvecr.com> * Create readme.md * remove reference to matrix_init_kb from atreus.c * correct atreus.c * remove unnecessary defines * merge register/unregister sequence into single tapcode * move 'LAYOUT to keymap.c; remove atreus.h * remove TAPPING_TERM from keyboard-level config.h
		
			
				
	
	
		
			30 lines
		
	
	
		
			647 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			647 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
#include "ridingqwerty.h"
 | 
						|
 | 
						|
#if defined(KEYMAP_SAFE_RANGE)
 | 
						|
  #define PLACEHOLDER_SAFE_RANGE KEYMAP_SAFE_RANGE
 | 
						|
#else
 | 
						|
  #define PLACEHOLDER_SAFE_RANGE SAFE_RANGE
 | 
						|
#endif
 | 
						|
 | 
						|
bool process_record_secrets(uint16_t keycode, keyrecord_t *record);
 | 
						|
bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
 | 
						|
 | 
						|
enum userspace_custom_keycodes {
 | 
						|
    FIRST = PLACEHOLDER_SAFE_RANGE,
 | 
						|
    RUSTY,
 | 
						|
    FUEL,
 | 
						|
    C0RE,
 | 
						|
    MUNKY,
 | 
						|
    AR1ST,
 | 
						|
    VAXIS,
 | 
						|
    OS_LAB,
 | 
						|
    CDLOCAL,
 | 
						|
    SYSNOC,
 | 
						|
    RG_QUOT,
 | 
						|
    LAST
 | 
						|
};
 | 
						|
 | 
						|
bool process_record_secrets(uint16_t keycode, keyrecord_t *record);
 | 
						|
bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
 |