aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/lufa
Commit message (Collapse)AuthorAgeFilesLines
* Add RN42 Bluetooth module supportTravis La Marr2017-03-292-2/+33
| | | | Added support for sending HID keycodes over the RN42/reflashed HC05 module. Tested on OS X and iOS.
* Merge pull request #1112 from newsboytko/newsboytko/midi-keycodesJack Humbert2017-03-282-6/+15
|\ | | | | Flesh out MIDI support
| * Split MIDI functionality into MIDI_BASIC and MIDI_ADVANCEDGabriel Young2017-02-251-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * implement modulationGabriel Young2017-02-191-1/+1
| |
| * initial implementation of polyphony using variable length array of notes onGabriel Young2017-02-192-5/+10
| |
* | Add BLE and EZKey module defines.Travis La Marr2017-03-241-4/+4
| | | | | | | | Also restored serial init back to original location. Was getting junk data.
* | Readd bluetooth output direction on standard key input.Travis La Marr2017-03-241-8/+10
| |
* | Refactor Bluetooth HandlingTravis La Marr2017-03-244-48/+40
|/ | | | | | | | | | | | | | | Refactored Bluetooth support to make adding new Bluetooth modules easier in the future. * Remove `OUT_BLE` key from QMK's keymap. `OUT_BT` is all we need now as there's no difference anymore. * Made BLUETOOTH_ENABLE build option legacy as not to break existing keymaps (Falls back to existing EZ Key support if on) * Removed `ADAFRUIT_BLE_ENABLE` build option * Created new build option `BLUETOOTH` with module option (Currently `AdafruitEZKey` & `AdafruitBLE`) * Moved all LUFA bluetooth key/mouse events under `BLUETOOTH_ENABLE` ifdef with selected modules output.
* Fix wrong includePriyadi Iman Nurcahyo2017-02-011-1/+1
|
* Limit outputselect to AVR only for nowPriyadi Iman Nurcahyo2017-02-012-0/+97
|
* Move outputselect to parent dir to satisfy non LUFA keyboardsPriyadi Iman Nurcahyo2017-02-012-97/+0
|
* Implement runtime selectable output (USB or BT)Priyadi Iman Nurcahyo2017-02-013-69/+144
|
* API Sysex fixesFred Sundvik2016-12-292-11/+25
| | | | | | | | 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
* Fixes issue #900Wilba65822016-12-202-4/+4
|
* Allow power consumption to be set per-keyboard.Kyle Smith2016-12-141-1/+4
|
* Allow negative values for mouse movementsPriyadi Iman Nurcahyo2016-12-101-1/+1
|
* Merge pull request #921 from Wilba6582/raw_hidJack Humbert2016-12-053-8/+208
|\ | | | | Initial version of Raw HID interface
| * Initial version of Raw HID interfaceWilba65822016-12-013-8/+208
| |
* | Connect the adafruit ble code to the lufa main loopWez Furlong2016-12-021-11/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #915 from wez/ble_3Jack Humbert2016-12-023-0/+931
|\ \ | |/ |/| Add support for Adafruit BLE modules
| * Add support for Adafruit BLE modulesWez Furlong2016-11-273-0/+931
| | | | | | | | | | | | | | | | | | This implements some helper functions that allow sending key reports to an SPI based Bluetooth Low Energy module, such as the Adafruit Feather 32u4 Bluefruit LE. There is some plumbing required in lufa.c to enable this; that is in a follow-on commit.
* | separated into api files/folderJack Humbert2016-11-262-254/+10
| |
* | rgblight fixesJack Humbert2016-11-231-1/+1
| |
* | travis plsJack Humbert2016-11-232-48/+43
| |
* | converted to new formatJack Humbert2016-11-232-115/+192
| |
* | converted to 8bit messagesJack Humbert2016-11-231-51/+68
| |
* | cleaning up mididJack Humbert2016-11-211-1/+1
| |
* | cleaning up new codeJack Humbert2016-11-211-63/+27
| |
* | working with helper, qmk_helper_windows@05b0105Jack Humbert2016-11-211-0/+6
| |
* | more structure to the packageJack Humbert2016-11-212-22/+100
| |
* | midi back and forthJack Humbert2016-11-182-17/+46
| |
* | rgb light through midiJack Humbert2016-11-171-0/+96
| |
* | animations, midi, etcJack Humbert2016-11-151-2/+3
| |
* | mostly workingJack Humbert2016-11-131-3/+30
|/
* Use keyboard config for nkro (#7)IBNobody2016-09-061-1/+8
| | | | | | * removing nkro references - wip * changed NKRO to be defined by keymap_config
* Change NKRO size fron 16 bytes to 32 bytes.IBNobody2016-09-061-6/+6
|
* Normalize line endingsFred Sundvik2016-08-2713-2184/+2184
|
* move to ergodox-ez onlyJason Green2016-08-231-1/+1
|
* Added USB Virtual Serial supportJason Green2016-08-233-4/+258
|
* Normalize line endingsFred Sundvik2016-08-2024-1974/+1974
|
* Fix OS X Recognizing keyboard as Mouse/TabletTravis La Marr2016-07-151-2/+2
| | | | | | | Modified the LUFA USB HID Descriptor to change the logical/usage minimums for System Control from 0x01 (Mouse) to 0x81 (System Power Down), this fixes OS X recognizing the Planck as having a mouse and tablet, even with mousekeys off.
* Backlight abstraction and other changes (#439)Jack Humbert2016-06-231-1/+1
| | | | | | | | | | | | | | | | | | | | * redoes matrix pins, abstracts backlight code for B5,6,7 * slimming down keyboard stuff, backlight breathing implemented * don't call backlight init when no pin * cleans up user/kb/quantum calls, keyboard files * fix pvc atomic * replaces CHANNEL with correct var in breathing * removes .hexs, updates readmes, updates template * cleans-up clueboards, readmes to lowercase * updates readme
* Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)Jack Humbert2016-06-211-2/+2
| | | | | | * fixes from tmk's repo * rename keyboard to keyboards
* Warning reductions (#430)Jack Humbert2016-06-212-1/+2
| | | Warning reductions
* Cleans up quantum/keymap situation, removes extra lufa folders (#416)Jack Humbert2016-06-18907-289650/+1
| | | | | | | | | | | | | | | | * sorts out keycodes * move midi around * remove mbed * replaces keymap with qmk/keymap_common * fixes keymap.h * keymap, config, quantum rearrange * removes unneeded lufa stuff
* Makefile redo & other features (#395)Jack Humbert2016-06-111-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * .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
|
* updates midi in play_note to better octaveJack Humbert2016-05-231-2/+2
|
* 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
* Update functions used to write to EEPROMEric Tang2016-04-212-3/+3
|