aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core
Commit message (Collapse)AuthorAgeFilesLines
...
* make awk optional (uses cat)Jack Humbert2016-06-161-14/+20
|
* Move LED strip initialization (#397)Eric Tang2016-06-121-0/+6
|
* no more cc error on windowsJack Humbert2016-06-111-2/+2
|
* Makefile redo & other features (#395)Jack Humbert2016-06-114-128/+200
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * .build containment implemented * no destructive variable setting - builds in either folder * make from 3 places * cleans before each build * make from root with keyboard=keyboard, keymap=keymap * make from keyboard/keyboard with keymap=keymap * make from keymaps/keymap * only implemented on planck * adds color diag to avr-gcc * makefiles for all plancks, clean-up * quick build-all makefile for plancks * reformatting of make output (colors) * color toggle, tmk path corrections * correct if statement for color * move config.h to main makefile, updates preonic, atomic * format update, all keyboards targets * makefile optional for build all target, alps and arrow_pad updated * alps updated * make planck default, trying out travis recipe for all-keyboards * all-keymaps target, different travis recipe * updates alps64 * updates keyboards to new format * updates clue* projects * all projects updated, specialise EZ .hex, let .hex through * updates travis * automatically find root, keyboard, keymap * silent echo, cleaned-up mass make output * updates all keyboards' .hex files except EZ * Rename Bantam44.c to bantam44.c * Rename Bantam44.h to bantam44.h * nananana * adds six key keyboard * does same to ez as rest * updates send_string example * brings ergodox_ez up to date * updates template/new project script * adds sixkeyboard * adds readme for sixkeyboard * adds sixkeyboard to travis * filenames, gitignore mess * define clock prescaler stuff manually * make quick, size test example * documentation and dfu-no-build
* fix HID_RI_LOGICAL_MAXIMUM value (#388)Masahiro Wakame2016-06-071-1/+1
|
* cleans up folder structureJack Humbert2016-06-049-2383/+0
| | | | | | * consolidates docs * deletes converter/ * updates .md references (most)
* removes stray parenJack Humbert2016-06-011-1/+1
|
* Update to Makefile an ergodox readme (#365)Hartmut Goebel2016-05-311-2/+7
| | | | | | | | | | | | * Autodetect teensy-loader-cli over teensy_loader_cli. Some distributions (e.g. Arch Linux, Guix) install teensy_loader_cli as teensy-loader-cli. Use this one if it is installed. * Update ergodox_ez/readme.md - Mention Linux distris providing teensy-loader-cli - Mention `make teensy ...`
* makes .SILENT (less verbose) by default - override with VERBOSE=1Jack Humbert2016-05-281-14/+0
| | | | also took out some @echo newlines to make things a bit cleaner
* Converted audio play functions to *_user (#349)Jack Humbert2016-05-242-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 * Added music and audio toggles to Quantum.c * Redid the audio callbacks * Adjusted default planck layout to use the user tone naming * tabs to spaces * Rewrote the ALL recipe to allow for faster parallel make * tabs to spaces * Renamed custom event functions to be 'startup_user' and 'shutdown_user'. Also moved the prototypes around. * Tweaked pvc atomic layout to work with the pvc planck. * updates midi scale calling
* Clean up #343's code (#348)Eric Tang2016-05-241-5/+3
|
* 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
| | |