diff options
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/template/avr/config.h | 4 | ||||
-rw-r--r-- | quantum/template/ps2avrgb/config.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/quantum/template/avr/config.h b/quantum/template/avr/config.h index eb9651cc0e..010a78896c 100644 --- a/quantum/template/avr/config.h +++ b/quantum/template/avr/config.h @@ -195,6 +195,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. //#define NO_ACTION_MACRO //#define NO_ACTION_FUNCTION +/* disable these deprecated features by default */ +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION + /* * MIDI options */ diff --git a/quantum/template/ps2avrgb/config.h b/quantum/template/ps2avrgb/config.h index 3cceadb319..ac1b3c8abd 100644 --- a/quantum/template/ps2avrgb/config.h +++ b/quantum/template/ps2avrgb/config.h @@ -46,7 +46,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define BACKLIGHT_LEVELS 1 #define RGBLIGHT_ANIMATIONS -#define NO_UART 1 +/* disable these deprecated features by default */ +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION /* key combination for magic key command */ /* defined by default; to change, uncomment and set to the combination you want */ |