Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-04-03 | Create twolayer.c | Dan Saunders | 1 | -0/+72 | |
fixed issue where Default.c "function key" does not work (actually it's changing my LED steps). Changed layout to be more user friendly for people that use the standard spacebar milled top plate. | |||||
2017-04-03 | Merge pull request #1204 from nooges/lets-split-fixes | Jack Humbert | 13 | -120/+120 | |
Let's split fixes | |||||
2017-04-03 | Include use of either TRS or TRRS | Danny Nguyen | 1 | -3/+2 | |
2017-04-03 | disables space cadet rollover | Erez Zukerman | 1 | -0/+3 | |
2017-04-03 | Remove flip-half from keymap | Danny Nguyen | 1 | -1/+0 | |
2017-04-03 | Update Let’s Split readme | Danny Nguyen | 1 | -3/+9 | |
2017-04-03 | Move SSD1306 function declarations to header file | Danny Nguyen | 5 | -14/+21 | |
2017-04-03 | Move defines for RGB to after the config.h include | Danny Nguyen | 1 | -10/+7 | |
2017-04-03 | Rename COMPACT_KEYMAP to KC_KEYMAP and move to lets_split.h | Danny Nguyen | 3 | -41/+21 | |
2017-04-03 | Revise KEYMAP macro to make left and right halves more clear | Danny Nguyen | 2 | -52/+52 | |
2017-04-03 | Move defines for RGB to after the config.h include | Danny Nguyen | 1 | -7/+7 | |
2017-04-03 | Revert removal of avrdude make option | Danny Nguyen | 2 | -2/+14 | |
2017-04-03 | Merge pull request #1194 from tong92/master | Jack Humbert | 4 | -0/+223 | |
Adds tong92's keymap to tv44 | |||||
2017-04-03 | Merge pull request #1195 from fudanchii/kbod | Jack Humbert | 10 | -0/+446 | |
Handwired 60% keyboard with 8x8 matrix | |||||
2017-04-03 | Merge pull request #1196 from Dbroqua/master | Jack Humbert | 2 | -0/+199 | |
GH60 - MX HHKB with 7U spacebar | |||||
2017-04-02 | Merge remote-tracking branch 'upstream/master' | Xyverz | 184 | -651/+11385 | |
2017-04-02 | removed my handwired boards to a new branch. | Xyverz | 17 | -698/+0 | |
2017-04-02 | Merge pull request #19 from qmk/master | Damien | 161 | -402/+10630 | |
Merge from qmk | |||||
2017-04-02 | Merge remote-tracking branch 'origin/master' | dbroqua | 199 | -2022/+8382 | |
2017-04-02 | - Added MX HHKB like for gh60 with 7u space bar | dbroqua | 2 | -0/+199 | |
2017-04-02 | Use tap-toggle to move between layers. | Nurahmadie | 1 | -4/+4 | |
- Add PDOT key | |||||
2017-04-02 | Fix layer stuck, and add numpad support | Nurahmadie | 2 | -10/+15 | |
2017-04-02 | Forgot semicolon, and add reference link | Nurahmadie | 2 | -2/+4 | |
2017-04-02 | Add README | Nurahmadie | 2 | -18/+13 | |
2017-04-02 | Enable alt-F4 without [Fn] | Nurahmadie | 1 | -21/+41 | |
- Add led indicator when keymap not on base layer \o/ | |||||
2017-04-02 | Add capslock led, and audio buttons | Nurahmadie | 1 | -16/+26 | |
- Also change layer switch to momentary | |||||
2017-04-02 | Remove lead keys, fix some typos, rearrange layers | Nurahmadie | 2 | -29/+10 | |
2017-04-02 | Add initial keymap | Nurahmadie | 2 | -28/+73 | |
*crossfingers* | |||||
2017-04-02 | Initial work for my kbod support in qmk_firmware | Nurahmadie | 10 | -0/+388 | |
- Wiring layout done No actual keymap yet | |||||
2017-04-02 | Adds tong92's keymap to tv44 | = | 4 | -0/+223 | |
2017-03-31 | Worked around some new Makefile issues. | nielsenz | 6 | -55/+55 | |
2017-03-31 | changed hotkey cluster to accomodate awkward software... again | Callum Oakley | 1 | -1/+1 | |
2017-03-31 | changed hotkey cluster to accomodate awkward software | Callum Oakley | 1 | -7/+7 | |
2017-03-30 | Tidied up keymaps, Makefiles that actually work, Clueboard make v1.0 | Xyverz | 6 | -56/+89 | |
2017-03-29 | Merge branch 'master' into to_push | Zay950 | 596 | -2652/+55289 | |
2017-03-29 | Merge pull request #1183 from Rovanion/real-master | Jack Humbert | 1 | -4/+17 | |
Added instructions for how to build and flash the firmware with teensy_cli | |||||
2017-03-29 | Added link to the teensy linux page. | Rovanion Luckey | 1 | -2/+5 | |
2017-03-28 | Merge pull request #1182 from henxing/default_atreus_layout | Jack Humbert | 1 | -6/+6 | |
Default atreus layout | |||||
2017-03-28 | typo removed {3 ... | Ole Anders | 1 | -3/+2 | |
2017-03-28 | fixed capitalization issue (checkTime => checktime) | Ole Anders | 1 | -2/+4 | |
2017-03-28 | Merge branch 'master' into default_atreus_layout | Hugh Enxing | 76 | -209/+3960 | |
2017-03-28 | moved checktime out of function | Ole Anders | 1 | -6/+3 | |
2017-03-28 | declaring checktime before the function it is used in. | Ole Anders | 1 | -0/+1 | |
2017-03-28 | fixed function to not accept any arguments. | Ole Anders | 1 | -1/+1 | |
As per Pramod's comment on stack overflow: In C int foo() and int foo(void) are different functions. int foo() accepts an arbitrary number of arguments, while int foo(void) accepts 0 arguments. In C++ they mean the same thing. I suggest that you use void consistently when you mean no arguments. | |||||
2017-03-28 | removed varable trace option from makefile | Ole Anders | 1 | -1/+0 | |
2017-03-28 | slight cleanup as per recommendation | Ole Anders | 1 | -1/+2 | |
2017-03-28 | Moved key_timer out of function. | Ole Anders | 1 | -3/+4 | |
2017-03-28 | removed a carriage return | Ole Anders | 1 | -19/+18 | |
2017-03-28 | Merge remote-tracking branch 'refs/remotes/qmk/master' | Ole Anders | 276 | -2293/+14170 | |
2017-03-28 | fixed #1139 issues | Ole Anders | 1 | -18/+18 | |
A fix described by jackhumbert has been sorted out now. |