summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/lufa/lufa.c
AgeCommit message (Collapse)Author
2017-02-01Implement runtime selectable output (USB or BT)Priyadi Iman Nurcahyo
2016-12-29API Sysex fixesFred Sundvik
Fix memory leaks by using stack instead of malloc Reduce memory usage by having less temporary bufffers Remove warnings by adding includes Decrease code size by 608 bytes (mostly due to not linking malloc) More robust handling of buffer overflows
2016-12-20Fixes issue #900Wilba6582
2016-12-05Merge pull request #921 from Wilba6582/raw_hidJack Humbert
Initial version of Raw HID interface
2016-12-02Connect the adafruit ble code to the lufa main loopWez Furlong
There are now 3 potential locations to send HID reports: 1. USB 2. The bluefruit easy key 3. Adafruit BLE Generally speaking, if USB is connected then we should prefer to send the reports there; it is generally the best channel for this. The bluefruit module has no feedback about bluetooth connectivity so the code must speculatively send reports over both USB and bluetooth. The BLE module has connectivity feedback. In general we want to prefer to send HID reports over USB while connected there, even if BLE is connected. Except that it is convenient to force them over BLE while testing the implementation. This policy has been extracted out into a where_to_send function which returns a bitmask of which of the channels should be used.
2016-12-01Initial version of Raw HID interfaceWilba6582
2016-11-26separated into api files/folderJack Humbert
2016-11-23rgblight fixesJack Humbert
2016-11-23travis plsJack Humbert
2016-11-23converted to new formatJack Humbert
2016-11-23converted to 8bit messagesJack Humbert
2016-11-21cleaning up mididJack Humbert
2016-11-21cleaning up new codeJack Humbert
2016-11-21working with helper, qmk_helper_windows@05b0105Jack Humbert
2016-11-21more structure to the packageJack Humbert
2016-11-18midi back and forthJack Humbert
2016-11-17rgb light through midiJack Humbert
2016-11-15animations, midi, etcJack Humbert
2016-11-13mostly workingJack Humbert
2016-09-06Use keyboard config for nkro (#7)IBNobody
* removing nkro references - wip * changed NKRO to be defined by keymap_config
2016-08-23move to ergodox-ez onlyJason Green
2016-08-23Added USB Virtual Serial supportJason Green
2016-06-11Makefile redo & other features (#395)Jack Humbert
* .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
2016-05-23updates midi in play_note to better octaveJack Humbert
2016-05-15updates midi functionality (#331)Jack Humbert
* 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
2016-04-17Fixed many compiler warnings related to print being disabledIBNobody
2016-01-20better integrationsJack Humbert
2015-10-27merging tmkJack Humbert
2015-09-20core: Fix for disabling NKRO in Boot protocoltmk
2015-09-20lufa: Fix endpoint bank mode for ATMega32u2tmk
2015-07-23core: Fix lufa suspend callback(#234)tmk
With matrix_power_down() in suspend event HHKB JP doesn't start up for some reason. It is unneeded in actual and removed.
2015-05-22lufa: Fix console flush #223tmk
Old console sent unneeded empty data every one milli sencond. After this fix console flushes endpoint data bank every 50ms only when needed.
2015-05-19Add keyboard_setup() and matrix_setup()tmk
2015-04-10Merge commit 'a074364c3731d66b56d988c8a6c960a83ea0e0a1' as 'tmk_core'tmk