| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit allows the Makefile to check if the BOARD_HARDWARE_PATH
it tried to determine based on the system specific Arduino installation
is correct. This is done by checking for the Kaleidoscope library's existence.
If Kaleidoscope is not found, the Makefile falls back to determining
the hardware path relative to its own location. This even enables
building from any location where a *.ino file lives without
the requirement to checkout the kaleidoscope libraries into
Arduino installation's hardware path or to symlink them there.
The following now is possible
> SOURCE_DIR=<place where the sources live>
> cd $SOURCE_DIR
> mkdir hardware
> git clone --recursive <URL of the Kaleidoscope bundle> hardware/keyboardio
> BUILD_DIR=<location where a *.ino file lives>
> cd $BUILD_DIR
> make -f $SOURCE_DIR/hardware/keyboardio/avr/libraries/Model01-Firmware/Makefile
for quick builds
> SOURCE_DIR=<place where the sources live>
> cd $SOURCE_DIR
> mkdir hardware
> git clone --recursive <URL of the Kaleidoscope bundle> hardware/keyboardio
> cd hardware/keyboardio/avr/libraries/Model01-Firmware make
Signed-off-by: Florian Fleissner <florian.fleissner@inpartik.de>
|
|
|
|
| |
unknown os.
|
|\
| |
| | |
Update the EEPROMKeymap.setup() call to remove an obsolete argument
|
|/
|
|
|
|
|
|
| |
EEPROM-Keymap was recently changed to work differently, and thus the mode
argument became obsolete. This removes it from the call, and updates the comment
above it to match current reality.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Fix turning LEDs off on suspend
|
|/
|
|
|
|
|
|
|
|
|
| |
When suspending, we want to set all LEDs off & sync first, and only then pause
LED operations. When the code was originally written, `LEDControl.syncLeds()`
synced LEDs even when `LEDControl.paused` was set - it no longer does so, so we
need to pause after we synced.
This addresses keyboardio/Kaleidoscope#516, at least partially.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Stop using deprecated (and now removed) APIs
|
|/
|
|
| |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Correct location of Makefile for library updates
|
|/
|
| |
The `Makefile` is one directory higher than was indicated in the README.
|
|\
| |
| | |
Doc fixups
|
| |
| |
| |
| | |
Signed-off-by: Tycho Andersen <tycho@tycho.ws>
|
|/
|
|
|
|
|
|
| |
I hate to be that guy, but I was reading these on github's page when
deciding whether or not to order a keyboard.io, and the extra long lines
here are not automatically wrapped when browsing the repo on github.
Signed-off-by: Tycho Andersen <tycho@tycho.ws>
|
|\
| |
| | |
Update the URL of LED-Stalker, to point to the new docs
|
|/
|
|
| |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Fix anyKeyMacro for new hid API
|
|/
|
|
| |
Signed-off-by: Anders Hustvedt <anders@computerfire.net>
|
|\
| |
| | |
Two small warning fixes
|
| |
| |
| |
| | |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|/
|
|
| |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|
|
|
|
|
| |
Remove the IRC notifications from Travis (we're not using IRC anymore).
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Support an EEPROM-based keymap overlay & Focus
|
|/
|
|
|
|
|
|
|
|
|
| |
This adds the necessary code to support having five additional layers in EEPROM.
Also adds support for Focus, so these layers can be changed, and the default
layer set, too.
We also enable the EEPROM commands, which can be helpful in debugging and
backing up one's EEPROM contents.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Fix trailing whitespace and stray tab
|
|/
|
|
| |
Signed-off-by: Wes Malone <wes@mitsi.com>
|
| |
|
| |
|
| |
|
|\
| |
| | |
More featureful defaults
|
| | |
|
| | |
|
|/
|
|
|
| |
Enough customers want a caps lock that we ought to give them -something-
in the default firmware
|
|\
| |
| | |
Fix typo in comments - chrods > chords
|
|/ |
|
|\
| |
| | |
Add a way to toggle between Boot and NKRO mode manually
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since we use a dedicated function for the single magic combo we have, using an
enum in this case is just more confusing than if we didn't. For this reason,
drop the use of enum, and just specify the array directly.
Thanks @obra for the suggestion!
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
| |
| |
| |
| |
| |
| |
| | |
Fixed up some of the USBQuirks and MagicCombo-related documentation, based on
feedback from @obra.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
| |
| |
| |
| | |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|/
|
|
|
|
|
|
| |
Make use of the MagicCombo and USB-Quirks plugins in order to allow one to
toggle between Boot and NKRO mode of the keyboard, simply by pressing Left Fn +
Shift + Esc.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|
|
|
|
|
|
|
| |
It is not necessary anymore, as BootKeyboard supports wakeup itself now. As
such, also updated the comments regarding the plugin in
KALEIDOSCOPE_INIT_PLUGINS.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Updated to use the new plugin APIs
|
|/
|
|
| |
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\
| |
| | |
Match wildcard usage between manual- and arduino-installed environments
|
| |
| |
| |
| |
| |
| |
| | |
Finding the base-dir of installed environments use a wildcard causing
[dir]/packages/keyboardio/hardware/avr/toolchain to be the interpreted
as the installed env, breaking use of that variable later when it
informs paths for the boards.txt and other files.
|
|\ \
| | |
| | | |
Updated definition of keymaps[] to use KEYMAPS() macro
|
| | |
| | |
| | |
| | |
| | | |
This change will enable the `layer_count` variable for preventing
reading past the end of the `keymaps[]` array.
|
|\ \ \
| | | |
| | | | |
Make the Quote transparent on the NUMPAD layer.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Because the key two rows below `NumLock` is `Key_Quote` on the base layer too,
and is not a numpad-specific key either, make it transparent, so it does not get
highlighted erroneously.
Thanks to @ImmaculatePotato and Eddie Jinks for reporting the issue, and
proposing the fix.
Fixes #48.
Signed-off-by: Gergely Nagy <algernon@keyboard.io>
|
|\ \ \
| |_|/
|/| | |
Use CRGB type for AlphaSquare color, so ints are in common order
|
|/ / |
|