aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core
Commit message (Collapse)AuthorAgeFilesLines
...
* updates midi in play_note to better octaveJack Humbert2016-05-231-2/+2
|
* Optimize matrix scanning (#343)Eric Tang2016-05-234-116/+98
|
* adapts unicode to quantum.c (#333)Jack Humbert2016-05-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | * Unicode to have unicode input you need to: - set your OS input method to UNICODE if needed - enable unicode in your makefile - copy the action_function from keyboard/planck/keymaps/unicode/unicode.c to your keymap.c set the target OS method in your keymap.c: void matrix_init_user() { set_unicode_mode(UC_OSX); } you can then switch when you want with: set_unicode_mode(UC_OSX); set_unicode_mode(UC_LNX); set_unicode_mode(UC_WIN); put some unicode codes in your keymap like so: UC(0x0061) I did change the bit mask in quantum/keymap_common.c and .h I’m afraid we will need uint32 to get a total support for all unicode tables or relocate the handler as @mbarkhau did. * rearranges keycode values, hooks-up unicode * removes extra lalt ref * adds unicode shortcuts and example
* outputs size when make dfuingJack Humbert2016-05-181-1/+1
|
* updates midi functionality (#331)Jack Humbert2016-05-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * implements leader key for planck experimental * allows override of leader timeout * adds ability to use the leader key in seq * fixes leader keycode * adds chording prototype * fixes keycode detection * moves music mode to quantum.c * disables chording by default * adds music sequencer functionality * implements audio/music functions in quantum.c * splits up process_action to allow independent processing of actions * moves midi stuff to quantum.c * adds additional scales for midi
* splits process_action up to handle records separately (#329)Jack Humbert2016-05-153-39/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | * implements leader key for planck experimental * allows override of leader timeout * adds ability to use the leader key in seq * fixes leader keycode * adds chording prototype * fixes keycode detection * moves music mode to quantum.c * disables chording by default * adds music sequencer functionality * implements audio/music functions in quantum.c * splits up process_action to allow independent processing of actions * merging?
* Leader key implementation (#326)Erez Zukerman2016-05-153-5/+8
| | | | | | | | | | | | | | | | | | | | * implements leader key for planck experimental * allows override of leader timeout * adds ability to use the leader key in seq * fixes leader keycode * adds chording prototype * fixes keycode detection * moves music mode to quantum.c * disables chording by default * updates process_action functions to return bool
* Backlight Breathing for Planck and AtomicJack Humbert2016-05-094-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Updated personal layouts * tweaked personal * Nightly - Audio Cleanup Refactored the LUTs. Abstracted some of the registers out of audio to use more functional names. Split audio into audio and audio_pwm. WIP * nightly - collapsed code * Added check for note playing to LEDs * Usability tweaks * TWEAE * nightly added extra kcs to keymap common * turned on Plank audio * Added backlight breathing to atomic * reverted accidental merge * adds backlight pulse to planck
* [Jack & Erez] Adds an option for user-specific config.h filesErez Zukerman2016-05-051-0/+9
|
* Adds oneshot layer and oneshot tap toggling (#308)Thiago Alves2016-05-055-14/+186
| | | | | | | | | | This commit is mostly a cherry-pick from `ahtn` at https://github.com/tmk/tmk_keyboard/pull/255. These are the changes: * Adds ACTION_LAYER_ONESHOT * Adds ONESHOT_TAP_TOGGLE * Mentions sticky keys in the docs on oneshot.
* stops forcing debug_actionJack Humbert2016-04-284-16/+16
|
* Update functions used to write to EEPROMEric Tang2016-04-216-31/+31
|
* start-up sound working, removes tick with some devicesJack Humbert2016-04-201-1/+2
|
* Fixed speaker being on during sleep.IBNobody2016-04-181-1/+11
|
* Added extra songs, LED indicator notesIBNobody2016-04-171-0/+7
|
* Fixed many compiler warnings related to print being disabledIBNobody2016-04-177-45/+49
|
* Adding Musical NotesIBNobody2016-04-167-4/+66
|\
| * MAGIC functionality, AG swap in default layoutJack Humbert2016-04-165-4/+52
| |
| * audio on by defaultJack Humbert2016-04-151-1/+1
| |
| * audio enable stored in eepromJack Humbert2016-04-152-0/+14
| |
* | Prepping for merge with new_defaultsIBNobody2016-04-152-15/+16
|\|
| * the spacessssJack Humbert2016-04-152-15/+15
| |
| * bootmagic somehow not getting enabled, so adding eeconfig to backlight src ↵Jack Humbert2016-04-141-0/+1
| | | | | | | | include cond
* | fixed mergingIBNobody2016-04-142-15/+15
|\|
| * changing up the makefile a bitJack Humbert2016-04-142-15/+15
| |
* | CheckinIBNobody2016-04-141-0/+1
|/
* Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-04-131-4/+4
|\
| * Optimize source_layers_cache for the cache memoryWojciech Siewierski2016-04-131-4/+4
| | | | | | | | Swapping the array indices should increase the locality of the memory access.
* | Compiler Warnings / Atomic TLCIBNobody2016-04-132-2/+3
|/ | | | | Corrected compiler warnings for a number of issues. Gave Atomic some TLC.
* Merge pull request #182 from Vifon/modifier-release-fixErez Zukerman2016-04-064-7/+103
|\ | | | | Fix the layer-dependent modifiers handling
| * Refactor the source layer cache encodingWojciech Siewierski2016-04-053-41/+71
| |
| * Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware into ↵Wojciech Siewierski2016-04-0311-113/+414
| |\ | | | | | | | | | modifier-release-fix
| * | Cleanup after mergeWojciech Siewierski2016-04-021-7/+13
| | | | | | | | | | | | | | | | | | | | | - remove a superfluous parenthesis - wrap lines longer than 80 characters - add const specifiers where appropriate - remove unnecessary casts
| * | Update action.celtang2016-04-021-1/+1
| | |
| * | Update action.celtang2016-04-021-1/+1
| | |
| * | Update action.celtang2016-04-021-1/+1
| | |
| * | Update action.celtang2016-04-021-1/+1
| | |
| * | Update action.celtang2016-04-021-1/+1
| | |
| * | Update action.celtang2016-04-021-1/+2
| | |
| * | Update action.cEric-L-T2016-04-011-1/+1
| | |
| * | Update action.cEric-L-T2016-04-011-8/+8
| | |
| * | Update action.cEric-L-T2016-04-011-6/+6
| | |
| * | Update action.cEric-L-T2016-04-011-1/+1
| | |
| * | Update action.hEric-L-T2016-04-011-1/+0
| | |
| * | Update action.cEric-L-T2016-04-011-4/+15
| | |
| * | Cut the memory consumption of PREVENT_STUCK_MODIFIERS in halfWojciech Siewierski2016-03-274-11/+16
| | |
| * | Expose the pressed_actions_cache global variableWojciech Siewierski2016-03-152-4/+4
| | |
| * | Always provide an implementation of process_action_nocacheWojciech Siewierski2016-03-152-1/+6
| | |
| * | process_action may be called either with key cache or without itWojciech Siewierski2016-03-132-0/+19
| | | | | | | | | | | | | | | | | | | | | If one wants to temporarily disable the key cache (for example because it interferes with a macro), `disable_action_cache` must be set to `true`. `process_action_nocache` is a simple wrapper doing just that for a single call.
| * | Document the issue of stuck modifiersWojciech Siewierski2016-03-081-1/+1
| | |