summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/dactyl_manuform
diff options
context:
space:
mode:
authorzwnk <david@impstyle.com>2019-02-18 17:49:11 +0100
committerDrashna Jaelre <drashna@live.com>2019-02-18 17:49:11 +0100
commit7639edb0aeea7b16f49cad9963d32b7eace9434d (patch)
tree0d87da015f9011aa668f15cac104e8bcd1666090 /keyboards/handwired/dactyl_manuform
parent0e68b6c1a9f5223fa1dc6b18d9204137b4edd921 (diff)
downloadqmk_firmware-7639edb0aeea7b16f49cad9963d32b7eace9434d.tar.gz
qmk_firmware-7639edb0aeea7b16f49cad9963d32b7eace9434d.tar.xz
[Keyboard] handwired dactyl with 2 pro micros added (#5113)
* handwired dactyl with 2 pro micros added * dactyl_promicro README updated * dactyl_promicro default layout fixed * requested changes * dactyl_promicro README updated * qmk toolbox link fixed * layout reflects phys. keys positions
Diffstat (limited to 'keyboards/handwired/dactyl_manuform')
-rw-r--r--keyboards/handwired/dactyl_manuform/readme.md16
1 files changed, 4 insertions, 12 deletions
diff --git a/keyboards/handwired/dactyl_manuform/readme.md b/keyboards/handwired/dactyl_manuform/readme.md
index 0d08c67a0..3221da0e9 100644
--- a/keyboards/handwired/dactyl_manuform/readme.md
+++ b/keyboards/handwired/dactyl_manuform/readme.md
@@ -131,17 +131,9 @@ file will run on both hands instead of having to flash left and right handed
versions of the firmware to each half. To flash the EEPROM file for the left
half run:
```
-avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:"./quantum/split_common/eeprom-lefthand.eep"
-// or the equivalent in dfu-programmer
-
-```
-and similarly for right half
+make handwired/dactyl_promicro:default:dfu-split-left
+make handwired/dactyl_promicro:default:dfu-split-right
```
-avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:"./quantum/split_common/eeprom-righthand.eep"
-// or the equivalent in dfu-programmer
-```
-
-NOTE: replace `$(COM_PORT)` with the port of your device (e.g. `/dev/ttyACM0`)
After you have flashed the EEPROM, you then need to set `EE_HANDS` in your config.h, rebuild the hex files and reflash.
@@ -162,6 +154,6 @@ 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.
+// wait_us(30); // without this wait read unstable value.
+wait_us(300); // without this wait read unstable value.
```