浏览代码

Merge pull request #847 from yinshanyang/master

added notes on using Arduino Pro Micro 3.3V with Let’s Split
Jack Humbert 9 年之前
父节点
当前提交
cbb7e95284
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      keyboards/lets_split/readme.md

+ 13 - 0
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.
+```