aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/pico/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/pico/config.h')
-rw-r--r--keyboards/helix/pico/config.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/keyboards/helix/pico/config.h b/keyboards/helix/pico/config.h
index b377332ef..260560f55 100644
--- a/keyboards/helix/pico/config.h
+++ b/keyboards/helix/pico/config.h
@@ -16,8 +16,7 @@ You should have received a copy of the GNU General Public License
16along with this program. If not, see <http://www.gnu.org/licenses/>. 16along with this program. If not, see <http://www.gnu.org/licenses/>.
17*/ 17*/
18 18
19#ifndef PICO_CONFIG_H 19#pragma once
20#define PICO_CONFIG_H
21 20
22/* USB Device descriptor parameter */ 21/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED 22#define VENDOR_ID 0xFEED
@@ -35,6 +34,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
35#define USE_SERIAL 34#define USE_SERIAL
36//#define USE_MATRIX_I2C 35//#define USE_MATRIX_I2C
37 36
37/* Soft Serial defines */
38#define SOFT_SERIAL_PIN D2
39#define SERIAL_SLAVE_BUFFER_LENGTH ((MATRIX_ROWS)/2)
40#define SERIAL_MASTER_BUFFER_LENGTH ((MATRIX_ROWS)/2)
41
38/* Select hand configuration */ 42/* Select hand configuration */
39#define MASTER_LEFT 43#define MASTER_LEFT
40// #define MASTER_RIGHT 44// #define MASTER_RIGHT
@@ -138,5 +142,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
138//#define NO_ACTION_ONESHOT 142//#define NO_ACTION_ONESHOT
139//#define NO_ACTION_MACRO 143//#define NO_ACTION_MACRO
140//#define NO_ACTION_FUNCTION 144//#define NO_ACTION_FUNCTION
141
142#endif