You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.9 KiB

  1. # ErgoDox Infinity
  2. The Infinity is two completely independent keyboards, and needs to be flashed
  3. for the left and right halves seperately. To flash them:
  4. - Make sure you are in the top-level qmk_firmware directory
  5. - Build the firmware with `make ergodox_infinity:keymapname`
  6. - Plug in the left hand keyboard only.
  7. - Press the program button (back of keyboard, above thumb pad).
  8. - Install the firmware with `sudo make ergodox_infinity:keymapname:dfu-util`
  9. - Build right hand firmware with `make ergodox_infinity:keymapname MASTER=right`
  10. - Plug in the right hand keyboard only.
  11. - Press the program button (back of keyboard, above thumb pad).
  12. - Install the firmware with `sudo make ergodox_infinity-keymapname-dfu-util MASTER=right`
  13. More information on the Infinity firmware is available in the [TMK/chibios for
  14. Input Club Infinity Ergodox](https://github.com/fredizzimo/infinity_ergodox/blob/master/README.md)
  15. ## Infinity Master/Two Halves
  16. The Infinity is two completely independent keyboards, that can connect together.
  17. You have a few options in how you flash the firmware:
  18. - Flash the left half, rebuild the firmware with "MASTER=right" and then flash
  19. the right half. This allows you to plug in either half directly to the
  20. computer and is what the above instructions do.
  21. - Flash the left half, then flash the same firmware on the right. This only
  22. works when the left half is plugged directly to the computer and the keymap
  23. is mirrored. It saves the small extra step of rebuilding with
  24. "MASTER=right".
  25. - The same as the previous one but with "MASTER=right" when you build the
  26. firmware, then flash the same firmware to both halves. You just have to
  27. directly connect the right half to the computer.
  28. - For minor changes such as changing only the keymap without having updated
  29. any part of the firmware code itself, you can program only the MASTER half.
  30. - It is safest to program both halves though.