mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
added notes on using Arduino Pro Micro 3.3V with Let’s Split
This commit is contained in:
parent
2e2b9962cd
commit
7550abbb7f
1 changed files with 13 additions and 0 deletions
|
@ -100,3 +100,16 @@ half to a computer by USB the keyboard will use QWERTY and Colemak when the
|
||||||
right half is connected.
|
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.
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue