]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/lets_split/readme.md
Merge pull request #1071 from dungdung/rgb_tweaks
[qmk_firmware.git] / keyboards / lets_split / readme.md
index 73fdb0f789d5352cb4f82348e8c23c4c2b9a0e11..a63ce5907036d9234b7f5f260f9bd156f8bf4e55 100644 (file)
@@ -74,6 +74,10 @@ not be very difficult to adapt it to support more if required.
 Flashing
 --------
 
+From the keymap directory run `make SUBPROJECT-KEYMAP-avrdude` for automatic serial port resolution and flashing.
+
+Example: `make rev2-serial-avrdude`
+
 If you define `EE_HANDS` in your `config.h`, you will need to set the
 EEPROM for the left and right halves. The EEPROM is used to store whether the
 half is left handed or right handed. This makes it so that the same firmware
@@ -100,3 +104,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.
+```