aboutsummaryrefslogtreecommitdiff
path: root/keyboards/diverge3
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-08-23 14:23:53 -0700
committerJoel Challis <git@zvecr.com>2019-08-23 22:23:53 +0100
commit064d9da93e8055d95717823aefd2b88289374c12 (patch)
tree39ec52221d3ad38621537150b0751d86206285bb /keyboards/diverge3
parente0f91f37c4b944b328f9e022b18f2f1ad702fcf4 (diff)
downloadqmk_firmware-064d9da93e8055d95717823aefd2b88289374c12.tar.gz
qmk_firmware-064d9da93e8055d95717823aefd2b88289374c12.zip
Add Soft Serial Speed to Diverge3 keyboard config for compatibility (#5076)
Diffstat (limited to 'keyboards/diverge3')
-rw-r--r--keyboards/diverge3/.gitignore1
-rw-r--r--keyboards/diverge3/config.h9
2 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/diverge3/.gitignore b/keyboards/diverge3/.gitignore
deleted file mode 100644
index 722d5e71d..000000000
--- a/keyboards/diverge3/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
1.vscode
diff --git a/keyboards/diverge3/config.h b/keyboards/diverge3/config.h
index a593bca9d..96196667c 100644
--- a/keyboards/diverge3/config.h
+++ b/keyboards/diverge3/config.h
@@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18#ifndef CONFIG_H 18#pragma once
19#define CONFIG_H
20 19
21#include "config_common.h" 20#include "config_common.h"
22 21
@@ -59,6 +58,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
59/* serial.c configuration for split keyboard */ 58/* serial.c configuration for split keyboard */
60#define SOFT_SERIAL_PIN D0 59#define SOFT_SERIAL_PIN D0
61 60
61#ifndef SELECT_SOFT_SERIAL_SPEED
62#define SELECT_SOFT_SERIAL_SPEED 3
63#endif
64
62/* define if matrix has ghost (lacks anti-ghosting diodes) */ 65/* define if matrix has ghost (lacks anti-ghosting diodes) */
63//#define MATRIX_HAS_GHOST 66//#define MATRIX_HAS_GHOST
64 67
@@ -181,5 +184,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
181 184
182/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ 185/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
183//#define MIDI_TONE_KEYCODE_OCTAVES 1 186//#define MIDI_TONE_KEYCODE_OCTAVES 1
184
185#endif