28 lines
507 B
C
Executable File
28 lines
507 B
C
Executable File
// Copyright 2022 Arne Weiss (@smarwei)
|
|
// 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
|
|
|
|
#define TAPPING_TOGGLE 2
|
|
|
|
// Split stuff
|
|
#define SOFT_SERIAL_PIN D2
|
|
|
|
#define MASTER_RIGHT
|
|
//#define MASTER_LEFT
|