aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-12-03cleans-up formatting of readmeGravatar Jack Humbert
2016-12-03Merge pull request #931 from OferPlesser/feature/improve-ps2-mouseGravatar Jack Humbert
Improving ps/2 mouse
2016-12-03Merge pull request #916 from wez/ble_4Gravatar Jack Humbert
Connect the adafruit ble code to the lufa main loop
2016-12-03Forgot to use define in delay instead of hardcoded numberGravatar Ofer Plesser
2016-12-03Updated ps2 mouse documentation in readmeGravatar Ofer Plesser
2016-12-03Added back PS2_MOUSE_INIT_DELAY defineGravatar Ofer Plesser
2016-12-03Refactored and improved ps2 mouse featureGravatar ofples
2016-12-02Connect the adafruit ble code to the lufa main loopGravatar Wez 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-02Merge pull request #930 from cbbrowne/masterGravatar Jack Humbert
Adds warnings to Planck keymaps that exceed 0x7000 bytes in size #929
2016-12-02Merge pull request #929 from jackhumbert/hf/size-warningsGravatar Jack Humbert
Adds warnings to Planck keymaps that exceed 0x7000 bytes in size
2016-12-02Adds warnings to Planck keymaps that exceed 0x7000 bytes in size #929Gravatar cbbrowne
2016-12-02adds warnings to 4 keymapsGravatar Jack Humbert
2016-12-02Merge pull request #881 from NoahAndrews/patch-1Gravatar Jack Humbert
Recommend WSL on Windows 10 [Discussion]
2016-12-02Merge pull request #915 from wez/ble_3Gravatar Jack Humbert
Add support for Adafruit BLE modules
2016-12-02Merge pull request #914 from wez/ble_2Gravatar Jack Humbert
Add arduino-alike GPIO pin control helpers
2016-12-02Merge pull request #913 from wez/ble_1Gravatar Jack Humbert
Tidy up atomicity in timer.c and ring_buffer.h
2016-12-02Merge pull request #924 from cbbrowne/masterGravatar Jack Humbert
Keymapping revs, revisions to documentation on API_SYSEX_ENABLE
2016-12-02Annotates nordicGravatar Erez Zukerman
2016-12-02Tweaks Kristian's layout againGravatar Erez Zukerman
2016-12-02Kristian's keymapGravatar Erez Zukerman
2016-12-02I also want page-down/page-up on UPPER layerGravatar cbbrowne
2016-12-02I want page-down/page-up - put those on LOWER-Left/Right near bottom cornerGravatar cbbrowne
2016-12-01Improve docs on memory usageGravatar cbbrowne
2016-12-01Improve docs on SYSEX bitGravatar cbbrowne
2016-12-01More notes on .hex size protectionGravatar cbbrowne
2016-12-01Make my builds smallerGravatar cbbrowne
2016-12-01Merge branch 'master' of https://github.com/jackhumbert/qmk_firmwareGravatar cbbrowne
2016-11-30Better layoutGravatar Erez Zukerman
2016-12-01Initial version of Raw HID interfaceGravatar Wilba6582
2016-11-29Merge branch 'master' of https://github.com/jackhumbert/qmk_firmwareGravatar cbbrowne
2016-11-29Merge pull request #919 from jackhumbert/hf/robot_test_layoutGravatar Jack Humbert
Test layout for ErgoDox EZ manufacturing robot
2016-11-29Test layout for ErgoDox EZ manufacturing robotGravatar Erez Zukerman
2016-11-29Merge pull request #918 from jackhumbert/wu5y7Gravatar Erez Zukerman
Adds Ergodox EZ RGB lights (both sides using I2C) and implements API base, Midi SysEx API
2016-11-29Merge pull request #917 from gid0/masterGravatar Erez Zukerman
keyboards/ergodox/keymaps/bepo : merge from author
2016-11-29guess i didnt pullGravatar Jack Humbert
2016-11-29Merge branch 'wu5y7' of github.com:jackhumbert/qmk_firmware into wu5y7Gravatar Jack Humbert
2016-11-29enable rgblight by default for ezGravatar Jack Humbert
2016-11-29enable api sysex for ezGravatar Jack Humbert
2016-11-28Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Gravatar Jack Humbert
2016-11-28Merge branch 'master' of https://github.com/jackhumbert/qmk_firmwareGravatar cbbrowne
2016-11-28Add the AZERTY compatibility layer.Gravatar Olivier
2016-11-28Change layer names (cosmetic change) and reorder them so that the "shift" ↵Gravatar Olivier
layer can be accessed from the "alt" layer when in QWERTY compat mode.
2016-11-28Tweaks position of TOG not to conflict with MOGravatar Erez Zukerman
2016-11-28A little cleanup, add some comments, change others.Gravatar Olivier
2016-11-28Tweaks EZ MakefileGravatar Erez Zukerman
2016-11-28Pulls LED config into common config for EZGravatar Erez Zukerman
2016-11-28Adjust comment.Gravatar Olivier
2016-11-28Reorganize the numeric keypad layer more like a traditional numeric keypad.Gravatar Olivier
2016-11-27Add support for Adafruit BLE modulesGravatar Wez Furlong
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.
2016-11-27Add arduino-alike GPIO pin control helpersGravatar Wez Furlong
Unlike the arduino functions, these don't take abstract pin numbers, they take pin labels like `B0`. Also, rather than taking very generic parameter names, these take slightly more descriptive enum values. These improve the clarity of code that would otherwise be inscrutable bit manipulation in tersely named port register names.