logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

readme.md (5875B)


  1. ## Space65 layout (with split space row -- no pun intended)
  2. This layout is optimized for vim users on MacOS.
  3. The split space row == least travel possible (I've found). Coming from an Alice this is the only way I can find myself going back to a non-ergonomic 6X% board
  4. ###### Settings:
  5. * The `ALT` and `CMD` keys are swapped to replicate the Mac layout
  6. * vim-style arrow key bindings H J K L in Fn layer
  7. ###### Flashing:
  8. * v1 PCB: in order to toggle BootLoader from a factory PCB you must hold down ESC + Modifier MO(1) before you plug the board in
  9. * otherwise you just hold ESC before you plug the board in
  10. * Next, to make the .hex file and subsequently flash the board run:
  11. ```$ make gray_studio/space65:keithlo:flash # be in the qmk_firmware directory to do this ```
  12. * more info at the bottom if you're getting errors
  13. ### Qwerty
  14. ```
  15. ,------------------------------------------------------------------------------------------------.
  16. | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | BSPC | DEL |
  17. |------------------------------------------------------------------------------------------------+
  18. | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ | INS |
  19. |------------------------------------------------------------------------------------------------+
  20. | CAPS | A | S | D | F | G | H | J | K | L | ; | ' | Enter | PGUP |
  21. |------------------------------------------------------------------------------------------------+
  22. | Shift | Z | X | C | V | B | N | M | , | . | ?/ | Shift | Up | PGDN |
  23. |------------------------------------------------------------------------------------------------+
  24. | Ctrl | Alt | Cmd | Space | Fn | Cmd | Alt | Fn | | Left | Down |Right |
  25. `----------------------------------------------------------------------' '--------------------'
  26. ```
  27. ### Fn Layer
  28. ```
  29. ,------------------------------------------------------------------------------------------------.
  30. | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | Vol- | Vol+ | Mute | Mute |
  31. |------------------------------------------------------------------------------------------------+
  32. | |RGB T|RGB M| Hue-| Hue+| Sat-| Sat+| Val-| Val+| | | | | | |
  33. |------------------------------------------------------------------------------------------------+
  34. | | RGBP | RGPG | RGPK | | | Left| Down| Up |Right| | | Play/Pause | |
  35. |------------------------------------------------------------------------------------------------+
  36. | | | | | | | | | | Scr- | Scr+ | | PgUp | |
  37. |------------------------------------------------------------------------------------------------+
  38. | | | | | | | | | | Home | PgDn | End |
  39. `---------------------------------------------------------------------' '--------------------'
  40. Fn Layer Mapping chars -> RGB commands
  41. |------------------------------------------------------------------------------------------------+
  42. | |RGB T|RGB M| Hue-| Hue+| Sat-| Sat+| Val-| Val+| | | | | | |
  43. |------------------------------------------------------------------------------------------------+
  44. | | Q | W | E | R | T | Y | U | I | | | | | | |
  45. |------------------------------------------------------------------------------------------------+
  46. |------------------------------------------------------------------------------------------------+
  47. | | RGBP | RGPG | RGPK | | | Left| Down| Up |Right| | | Play/Pause | |
  48. |------------------------------------------------------------------------------------------------+
  49. | | A | S | D | | | H | J | K | L | | | Enter | |
  50. |------------------------------------------------------------------------------------------------+
  51. ```
  52. ###### Flashing (debugging)
  53. * Make sure you are holding ESC + MO(1) when you plug board in
  54. * Release ESC + MO(1) if you are stuck in the ```dfu-programmer: no device present.
  55. ERROR: Bootloader not found. Trying again in 5s.``` loop seen below
  56. * You should see a screen like this when you make and flash
  57. ```
  58. qmk_firmware git:(master)$ make gray_studio/space65:keithlo:flash
  59. QMK Firmware 0.8.107
  60. Making gray_studio/space65 with keymap keithlo and target flash
  61. avr-gcc (GCC) 8.3.0
  62. Copyright (C) 2018 Free Software Foundation, Inc.
  63. This is free software; see the source for copying conditions. There is NO
  64. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  65. Size before:
  66. text data bss dec hex filename
  67. 0 21836 0 21836 554c .build/gray_studio_space65_keithlo.hex
  68. Copying gray_studio_space65_keithlo.hex to qmk_firmware folder [OK]
  69. Checking file size of gray_studio_space65_keithlo.hex [OK]
  70. * The firmware size is fine - 21836/28672 (76%, 6836 bytes free)
  71. dfu-programmer: no device present.
  72. ERROR: Bootloader not found. Trying again in 5s.
  73. dfu-programmer: no device present.
  74. ERROR: Bootloader not found. Trying again in 5s.
  75. Bootloader Version: 0x00 (0)
  76. Erasing flash... Success
  77. Checking memory from 0x0 to 0x6FFF... Empty.
  78. Checking memory from 0x0 to 0x557F... Empty.
  79. 0% 100% Programming 0x5580 bytes...
  80. [>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] Success
  81. 0% 100% Reading 0x7000 bytes...
  82. [>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] Success
  83. Validating... Success
  84. 0x5580 bytes written into 0x7000 bytes memory (76.34%).
  85. qmk_firmware git:(master)$
  86. ```
  87. shoutout @billiams for the base ascii art template