mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-04 00:45:13 +00:00
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
/*
|
|
Copyright 2023 @ Nuphy <https://nuphy.com/>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define DEV_MODE_PIN C0
|
|
#define SYS_MODE_PIN C1
|
|
#define DC_BOOST_PIN C2
|
|
#define NRF_RESET_PIN B4
|
|
#define NRF_TEST_PIN B5
|
|
#define NRF_WAKEUP_PIN B8
|
|
#define DRIVER_LED_CS_PIN C6
|
|
#define DRIVER_SIDE_PIN C8
|
|
#define DRIVER_SIDE_CS_PIN C9
|
|
|
|
#define SERIAL_DRIVER SD1
|
|
#define SD1_TX_PIN B6
|
|
#define SD1_TX_PAL_MODE 0
|
|
#define SD1_RX_PIN B7
|
|
#define SD1_RX_PAL_MODE 0
|
|
|
|
#define TAP_CODE_DELAY 8
|
|
#define DYNAMIC_KEYMAP_MACRO_DELAY 8
|
|
#define DYNAMIC_KEYMAP_LAYER_COUNT 8
|
|
|
|
#define EECONFIG_USER_DATA_SIZE 8
|
|
|
|
|