summaryrefslogtreecommitdiff
path: root/keyboards/lets_split
diff options
context:
space:
mode:
authorDamien <Dbroqua@users.noreply.github.com>2016-10-26 07:43:58 +0200
committerGitHub <noreply@github.com>2016-10-26 07:43:58 +0200
commit41d7460f538a3b561aa4475c80dbcb602f476b94 (patch)
treeb4c25c89007acab684ae61fc97dd64ee51c058b9 /keyboards/lets_split
parent911b52a49414a12d95b3f20c378f4c3fbafa3886 (diff)
parentf44ead146214381aa78344f1d4fe3e1b24010c95 (diff)
Merge pull request #10 from jackhumbert/master
Merge from jackhumbert/qmk_firmware
Diffstat (limited to 'keyboards/lets_split')
-rw-r--r--keyboards/lets_split/readme.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/lets_split/readme.md b/keyboards/lets_split/readme.md
index 73fdb0f789..6e296737a2 100644
--- a/keyboards/lets_split/readme.md
+++ b/keyboards/lets_split/readme.md
@@ -100,3 +100,16 @@ half to a computer by USB the keyboard will use QWERTY and Colemak when the
right half is connected.
+Notes on Using Pro Micro 3.3V
+-----------------------------
+
+Do update the `F_CPU` parameter in `rules.mk` to `8000000` which reflects
+the frequency on the 3.3V board.
+
+Also, if the slave board is producing weird characters in certain columns,
+update the following line in `matrix.c` to the following:
+
+```
+// _delay_us(30); // without this wait read unstable value.
+_delay_us(300); // without this wait read unstable value.
+```