Age | Commit message (Collapse) | Author |
|
|
|
Allow negative values for mouse movements
|
|
|
|
|
|
Initial version of Raw HID interface
|
|
|
|
There are a lot of PS/2 commands, some are vendor/device specific, so we
provide a weak ps2_mouse_init_user() to be implemented in each keyboard
that need it.
|
|
Improving ps/2 mouse
|
|
|
|
|
|
|
|
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.
|
|
Add support for Adafruit BLE modules
|
|
Tidy up atomicity in timer.c and ring_buffer.h
|
|
|
|
|
|
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.
|
|
Adopt the macros for saving/restoring the interrupt state
that are provided by the avr gcc environment.
Removing intialization of the timer value; this shaves off
a few bytes because globals are default initialized to zero.
|
|
|
|
Make PS2 init delay configurable.
|
|
after 1s.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Set backlight status to on if it's at maximum brightness already and the brightness increase keybind is used
|
|
brightness increase keybind is used
Before it was turned on but the status wasn't set to on, so you had to
push the backlight toggle bind twice to turn it off again
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixed some bugs relating to keyboards with more than 16 columns. Also
added the ability to mask off keyboard matrix bits.
|
|
|
|
|
|
|
|
32byte report = 1byte modifiers + 31byte keys
31byte * 8bit * 1key/bit = 248keys
|
|
User print disables the normal print messages in the body of QMK/TMK
code and is meant as a lightweight alternative to NOPRINT. Use it when
you only want to do a spot of debugging but lack flash resources for
allowing all of the codebase to print (and store their wasteful
strings).
|
|
* removing nkro references - wip
* changed NKRO to be defined by keymap_config
|
|
|
|
There was a minor typo, which caused the files to not be generated
and therefore the elf files were always linked.
|
|
So that it's created even when there's a deeper structure
|