diff options
author | Joel Challis <git@zvecr.com> | 2020-03-06 01:39:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-06 01:39:54 +0000 |
commit | b368db9e027015ba393e87cee416d8d5b2b56a8c (patch) | |
tree | 413707612cca0b75339c9d2a7962e6b5b3bf4046 /keyboards/fortitude60/rev1/config.h | |
parent | 76189d9a282cc32bf2ff88a84a6374ebb8908433 (diff) |
Refactor fortitude60 to use split_common (#8113)
Diffstat (limited to 'keyboards/fortitude60/rev1/config.h')
-rw-r--r-- | keyboards/fortitude60/rev1/config.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/keyboards/fortitude60/rev1/config.h b/keyboards/fortitude60/rev1/config.h index 98f610461c..aa5a6f3b0f 100644 --- a/keyboards/fortitude60/rev1/config.h +++ b/keyboards/fortitude60/rev1/config.h @@ -15,8 +15,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef REV1_CONFIG_H -#define REV1_CONFIG_H +#pragma once + +#include "config_common.h" /* USB Device descriptor parameter */ #define VENDOR_ID 0xCB10 @@ -38,6 +39,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION COL2ROW +/* + * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. + */ +#define SOFT_SERIAL_PIN D2 + /* define if matrix has ghost */ //#define MATRIX_HAS_GHOST @@ -79,5 +85,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. //#define NO_ACTION_ONESHOT //#define NO_ACTION_MACRO //#define NO_ACTION_FUNCTION - -#endif |