aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/config.h')
-rw-r--r--users/drashna/config.h36
1 files changed, 35 insertions, 1 deletions
diff --git a/users/drashna/config.h b/users/drashna/config.h
index 8837ca0a5..8081af9cc 100644
--- a/users/drashna/config.h
+++ b/users/drashna/config.h
@@ -22,8 +22,11 @@
22/* Set Polling rate to 1000Hz */ 22/* Set Polling rate to 1000Hz */
23#define USB_POLLING_INTERVAL_MS 1 23#define USB_POLLING_INTERVAL_MS 1
24 24
25#if defined(SPLIT_KEYBOAD) 25#if defined(SPLIT_KEYBOARD)
26# define SPLIT_MODS_ENABLE 26# define SPLIT_MODS_ENABLE
27// # define SPLIT_TRANSPORT_MIRROR
28# define SERIAL_USE_MULTI_TRANSACTION
29// # define SPLIT_NUM_TRANSACTIONS_KB 2
27#endif 30#endif
28 31
29#ifdef AUDIO_ENABLE 32#ifdef AUDIO_ENABLE
@@ -111,6 +114,18 @@
111# else 114# else
112# define OLED_UPDATE_INTERVAL 15 115# define OLED_UPDATE_INTERVAL 15
113# endif 116# endif
117# define OLED_DISABLE_TIMEOUT
118# define OLED_FONT_H "drashna_font.h"
119# define OLED_FONT_END 255
120// # define OLED_FONT_5X5
121// # define OLED_FONT_AZTECH
122// # define OLED_FONT_BMPLAIN
123// # define OLED_FONT_SUPER_DIGG
124// # define OLED_LOGO_GMK_BAD
125// # define OLED_LOGO_HUE_MANITEE
126// # define OLED_LOGO_CORNE
127// # define OLED_LOGO_GOTHAM
128# define OLED_LOGO_SCIFI
114#endif 129#endif
115 130
116#ifndef ONESHOT_TAP_TOGGLE 131#ifndef ONESHOT_TAP_TOGGLE
@@ -162,3 +177,22 @@
162#ifdef LOCKING_RESYNC_ENABLE 177#ifdef LOCKING_RESYNC_ENABLE
163# undef LOCKING_RESYNC_ENABLE 178# undef LOCKING_RESYNC_ENABLE
164#endif 179#endif
180
181#ifdef CONVERT_TO_PROTON_C
182// pins that are available but not present on Pro Micro
183# define A3 PAL_LINE(GPIOA, 3)
184# define A4 PAL_LINE(GPIOA, 4)
185# define A5 PAL_LINE(GPIOA, 5)
186# define A6 PAL_LINE(GPIOA, 6)
187# define A7 PAL_LINE(GPIOA, 7)
188# define A8 PAL_LINE(GPIOA, 8)
189# define A13 PAL_LINE(GPIOA, 13)
190# define A14 PAL_LINE(GPIOA, 14)
191# define A15 PAL_LINE(GPIOA, 15)
192# define B10 PAL_LINE(GPIOB, 10)
193# define B11 PAL_LINE(GPIOB, 11)
194# define B12 PAL_LINE(GPIOB, 12)
195# define C13 PAL_LINE(GPIOC, 13)
196# define C14 PAL_LINE(GPIOC, 14)
197# define C15 PAL_LINE(GPIOC, 15)
198#endif