diff options
author | Joel Challis <git@zvecr.com> | 2022-02-15 01:42:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 01:42:58 +0000 |
commit | b0621223bc53f634a28243b874379e8e157878fd (patch) | |
tree | 25849db31989959bd72181621da23346ad3fd4bf /data/templates/keyboard/config.h | |
parent | c9f192bae88ba4190d2e7f0bd560563b377f394d (diff) | |
download | qmk_firmware-b0621223bc53f634a28243b874379e8e157878fd.tar.gz qmk_firmware-b0621223bc53f634a28243b874379e8e157878fd.zip |
Various fixes for new-keyboard (#16358)
Diffstat (limited to 'data/templates/keyboard/config.h')
-rw-r--r-- | data/templates/keyboard/config.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/templates/keyboard/config.h b/data/templates/keyboard/config.h new file mode 100644 index 0000000000..b15c8d31f1 --- /dev/null +++ b/data/templates/keyboard/config.h @@ -0,0 +1,20 @@ +// Copyright %YEAR% %REAL_NAME% (@%USER_NAME%) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT |