Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | moved checktime out of function | Ole Anders | 2017-03-28 | 1 | -6/+3 |
| | |||||
* | declaring checktime before the function it is used in. | Ole Anders | 2017-03-28 | 1 | -0/+1 |
| | |||||
* | fixed function to not accept any arguments. | Ole Anders | 2017-03-28 | 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. | ||||
* | removed varable trace option from makefile | Ole Anders | 2017-03-28 | 1 | -1/+0 |
| | |||||
* | slight cleanup as per recommendation | Ole Anders | 2017-03-28 | 1 | -1/+2 |
| | |||||
* | Moved key_timer out of function. | Ole Anders | 2017-03-28 | 1 | -3/+4 |
| | |||||
* | removed a carriage return | Ole Anders | 2017-03-28 | 1 | -19/+18 |
| | |||||
* | Merge remote-tracking branch 'refs/remotes/qmk/master' | Ole Anders | 2017-03-28 | 276 | -2293/+14170 |
|\ | |||||
| * | Merge pull request #1174 from nooges/atreus50 | Jack Humbert | 2017-03-28 | 8 | -0/+565 |
| |\ | | | | | | | Add Atreus50 keyboard | ||||
| | * | Move Atreus50 to hardwired directory and update README | Danny Nguyen | 2017-03-28 | 9 | -25/+16 |
| | | | |||||
| | * | Add RGB support | Danny Nguyen | 2017-03-23 | 3 | -4/+4 |
| | | | |||||
| | * | Cleanup keymap | Danny Nguyen | 2017-03-23 | 3 | -115/+94 |
| | | | |||||
| | * | Initial commit for Atreus50 with working audio | Danny Nguyen | 2017-03-23 | 9 | -0/+595 |
| | | | |||||
| * | | Merge pull request #1112 from newsboytko/newsboytko/midi-keycodes | Jack Humbert | 2017-03-28 | 20 | -0/+574 |
| |\ \ | | | | | | | | | Flesh out MIDI support | ||||
| | * | | Update size estimates in the Makefile | Gabriel Young | 2017-02-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined MIDI_ADVANCED undefined text data bss dec hex filename 0 19494 0 19494 4c26 satan_midi.hex +2414 bytes (vs. MIDI_ENABLE = no) MIDI_ENABLE = yes 0 20846 0 20846 516e satan_midi.hex +1352 bytes (vs. MIDI_ENABLE = yes, MIDI_BASIC off, MIDI_ADVANCED off) MIDI_ENABLE = yes #define MIDI_BASIC #define MIDI_ADVANCED text data bss dec hex filename 0 21292 0 21292 532c satan_midi.hex +1798 bytes (vs. MIDI_ENABLE = yes, MIDI_BASIC off, MIDI_ADVANCED off) Conclusion: +2400 to 4200, depending on config | ||||
| | * | | Update existing keymaps | Gabriel Young | 2017-02-25 | 17 | -0/+449 |
| | | | | | | | | | | | | | | | | | | | | | | | | Update existing keymaps to enable MIDI_BASIC functionality. Also added an option MIDI_ENABLE_STRICT to be strict about keycode use (which also reduces memory footprint at runtime) | ||||
| | * | | Add basic layer to sample MIDI keycap | Gabriel Young | 2017-02-25 | 1 | -1/+22 |
| | | | | |||||
| | * | | Split MIDI functionality into MIDI_BASIC and MIDI_ADVANCED | Gabriel Young | 2017-02-25 | 2 | -3/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined MIDI_ADVANCED undefined text data bss dec hex filename 0 19494 0 19494 4c26 satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC MIDI_ADVANCED undefined text data bss dec hex filename 0 19788 0 19788 4d4c satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined #define MIDI_ADVANCED text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC #define MIDI_ADVANCED text data bss dec hex filename 0 21140 0 21140 5294 satan_midi.hex | ||||
| | * | | fix typos in keymap | Gabriel Young | 2017-02-19 | 1 | -8/+2 |
| | | | | |||||
| | * | | Document size added by MIDI_ENABLE (~3800 bytes according to my experiments) | Gabriel Young | 2017-02-19 | 3 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | satan/keymaps/midi MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 3 // default text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 2 // fewer octaves text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex | ||||
| | * | | Allow customization of the number of tone keycodes and add example keymap | Gabriel Young | 2017-02-19 | 4 | -0/+93 |
| | | | | |||||
| * | | | Merge pull request #1167 from smt/smt/satan | Jack Humbert | 2017-03-28 | 3 | -0/+163 |
| |\ \ \ | | | | | | | | | | | Add smt keymap for Satan 'GH60' | ||||
| | * | | | Use single _FUNC layer. Move RESET and base layout-changing keys to _FUNC. | Stephen Tudor | 2017-03-20 | 1 | -43/+12 |
| | | | | | |||||
| | * | | | Remove tap-dance. Raise will be accessed via holding shift while lower is active | Stephen Tudor | 2017-03-20 | 2 | -22/+11 |
| | | | | | |||||
| | * | | | Use normal backtick in ESC spot - I've mapped ESC to caps lock | Stephen Tudor | 2017-03-20 | 1 | -4/+4 |
| | | | | | |||||
| | * | | | Fix shift tap-dance (can't use one-shot layer) | Stephen Tudor | 2017-03-20 | 2 | -34/+12 |
| | | | | | |||||
| | * | | | Forsake spacefn in favor of left shift tapdance. Move media controls. | Stephen Tudor | 2017-03-10 | 1 | -24/+25 |
| | | | | | |||||
| | * | | | Add smt keymap for Satan 'GH60' | Stephen Tudor | 2017-03-09 | 3 | -0/+226 |
| | | | | | |||||
| * | | | | Merge pull request #1162 from Khord/master | Jack Humbert | 2017-03-28 | 3 | -0/+433 |
| |\ \ \ \ | | | | | | | | | | | | | My customized keymap + some tunes for the song list | ||||
| | * \ \ \ | Merge branch 'master' of https://github.com/Khord/qmk_firmware | Dylan Khor | 2017-03-20 | 1 | -4/+4 |
| | |\ \ \ \ | |||||
| | | * | | | | Missing comma | Dylan Khor | 2017-03-19 | 1 | -1/+1 |
| | | | | | | | |||||
| | | * | | | | Don't feel like tap dancing arrows anymore | Dylan Khor | 2017-03-19 | 1 | -4/+4 |
| | | | | | | | |||||
| | * | | | | | add pgup, pgdn, home, end | Dylan Khor | 2017-03-20 | 1 | -4/+4 |
| | |/ / / / | |||||
| | * | | | | tap dance working for esc and arrows | Dylan Khor | 2017-03-16 | 1 | -7/+15 |
| | | | | | | |||||
| | * | | | | remove const | Dylan Khor | 2017-03-16 | 1 | -1/+1 |
| | | | | | | |||||
| | * | | | | test td changes | Dylan Khor | 2017-03-16 | 2 | -7/+6 |
| | | | | | | |||||
| | * | | | | test fixes for tap dane | Dylan Khor | 2017-03-16 | 2 | -12/+11 |
| | | | | | | |||||
| | * | | | | test tap dance | Dylan Khor | 2017-03-16 | 3 | -1/+17 |
| | | | | | | |||||
| | * | | | | add config.h for customization | Dylan Khor | 2017-03-16 | 1 | -0/+90 |
| | | | | | | |||||
| | * | | | | test | Dylan Khor | 2017-03-16 | 1 | -1/+1 |
| | | | | | | |||||
| | * | | | | Add Makefile | Dylan Khor | 2017-03-15 | 1 | -0/+3 |
| | | | | | | |||||
| | * | | | | Add custom keycap | Dylan Khor | 2017-03-15 | 1 | -0/+318 |
| | | | | | | |||||
| * | | | | | Merge pull request #1172 from nooges/hexwire-fixes | Jack Humbert | 2017-03-28 | 5 | -26/+45 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Let's Split hexwire keymap fixes | ||||
| | * | | | | | Add RGB support for Let’s Split v1 | Danny Nguyen | 2017-03-23 | 2 | -1/+7 |
| | | | | | | | |||||
| | * | | | | | Move keymap into config file | Danny Nguyen | 2017-03-23 | 3 | -24/+33 |
| | | | | | | | |||||
| | * | | | | | Add Makefile in keymap dir | Danny Nguyen | 2017-03-23 | 1 | -0/+4 |
| | | | | | | | |||||
| | * | | | | | Remove line for hands selection via EEPROM, reduce tap duration from 200ms ↵ | Danny Nguyen | 2017-03-23 | 1 | -1/+1 |
| | | |_|_|/ | | |/| | | | | | | | | | | | | | | | to 150ms | ||||
| * | | | | | Merge pull request #1157 from jtbarrett/tada68_default | Jack Humbert | 2017-03-28 | 3 | -58/+25 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Update readme and default layout for TADA68 | ||||
| | * | | | | | Update readme and default layout for TADA68 | James Barrett | 2017-03-11 | 3 | -58/+25 |
| | | |_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the default function layer mappings for the keyboard. Provide flashing instructions in the readme. | ||||
| * | | | | | Merge pull request #1180 from mattdibi/master | Jack Humbert | 2017-03-28 | 2 | -0/+295 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Italian layout for ergodox keyboard |