mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 07:04:17 -04:00
Big cleanup
- standardize the documentation in my config files - Removed all the unused/unneeded feature .c/.h files (including RGBmatrix) - now that I think I have my featureset set, I consolidated my rules.mk to lessen the 'include if' commands
This commit is contained in:
parent
d6c6d5d731
commit
c5cb76fab5
15 changed files with 53 additions and 326 deletions
|
@ -4,7 +4,10 @@
|
|||
* - enable features specific to certain board (e.g. encoders, rgb, oled)
|
||||
* - a way to save memory on MCU
|
||||
*
|
||||
* feature specific inclusions driven by rules.mk
|
||||
* Pattern
|
||||
* - This will hold config for features we force to be on
|
||||
* - bring in additional configuration for features that can be enabled/disabled
|
||||
* - clear and reset the setting
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
@ -13,13 +16,18 @@
|
|||
#undef LOCKING_SUPPORT_ENABLE
|
||||
#undef LOCKING_RESYNC_ENABLE
|
||||
|
||||
|
||||
|
||||
//Clear variables we plan to use that might be set elsewhere
|
||||
#undef USB_POLLING_INTERVAL_MS
|
||||
|
||||
//Set common configuration for all keyboards
|
||||
#define USB_POLLING_INTERVAL_MS 1
|
||||
|
||||
//#include "_layouts.h"
|
||||
|
||||
|
||||
|
||||
|
||||
#include "config/tapping_config.h"
|
||||
|
||||
#if defined(CAPS_WORD_ENABLE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue