Add pcoves's userspace (#9354)
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Pablo COVES <pablo.coves@anatoscope.com>
This commit is contained in:
parent
071e0c2029
commit
facca23315
13 changed files with 375 additions and 0 deletions
32
users/pcoves/pcoves.h
Normal file
32
users/pcoves/pcoves.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
#define SECRET_ENABLE (__has_include("secret.h") && !defined(NO_SECRET))
|
||||
|
||||
enum {
|
||||
AUTRUCHE = SAFE_RANGE,
|
||||
#ifdef RAINBOW_UNICORN_ENABLE
|
||||
RAINBOW_UNICORN_TOGGLE,
|
||||
#endif
|
||||
#ifdef UNICODE_ENABLE
|
||||
EMOTE0,
|
||||
EMOTE1,
|
||||
EMOTE2,
|
||||
EMOTE3,
|
||||
#endif
|
||||
#if SECRET_ENABLE
|
||||
SECRET0,
|
||||
SECRET1,
|
||||
SECRET2,
|
||||
SECRET3,
|
||||
SECRET4,
|
||||
#endif
|
||||
PCOVES_SAFE_RANGE,
|
||||
};
|
||||
|
||||
__attribute__((weak)) void eeconfig_init_keymap(void);
|
||||
void eeconfig_init_user(void);
|
||||
|
||||
__attribute__((weak)) bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record);
|
Loading…
Add table
Add a link
Reference in a new issue