]> git.donarmstrong.com Git - qmk_firmware.git/log
qmk_firmware.git
7 years agoChange to per-key eager debouncing for ErgoDox EZ.
Andrew Pritchard [Wed, 26 Apr 2017 22:29:39 +0000 (15:29 -0700)]
Change to per-key eager debouncing for ErgoDox EZ.

Empirically, waiting for N consecutive identical scans as a debouncing
strategy doesn't work very well for the ErgoDox EZ where scans are very
slow compared to most keyboards.  Instead, debounce the signals by
eagerly reporting a change as soon as one scan observes it, but then
ignoring further changes from that key for the next N scans.

This is implemented by keeping an extra matrix of uint8 countdowns, such
that only keys whose countdown is currently zero are eligible to change.
When we do observe a change, we bump that key's countdown to DEBOUNCE.
During each scan, every nonzero countdown is decremented.

With this approach to debouncing, much higher debounce constants are
tolerable, because latency does not increase with the constant, and
debounce countdowns on one key do not interfere with events on other
keys.  The only negative effect of increasing the constant is that the
minimum duration of a keypress increases.  Perhaps I'm just extremely
unlucky w.r.t. key switch quality, but I saw occasional bounces even
with DEBOUNCE=10; with 15, I've seen none so far.  That's around 47ms,
which seems like an absolutely insane amount of time for a key to be
bouncy, but at least it works.

7 years agoMerge pull request #1231 from Dbroqua/master
Jack Humbert [Tue, 25 Apr 2017 18:09:41 +0000 (14:09 -0400)]
Merge pull request #1231 from Dbroqua/master

S60-X RGB support

7 years agoMerge pull request #1253 from laelath/master
Jack Humbert [Tue, 25 Apr 2017 18:08:53 +0000 (14:08 -0400)]
Merge pull request #1253 from laelath/master

Added lae3 keymap

7 years agoMerge pull request #1255 from ryanmaclean/patch-4
Jack Humbert [Tue, 25 Apr 2017 18:08:16 +0000 (14:08 -0400)]
Merge pull request #1255 from ryanmaclean/patch-4

Initial Ortholinear Commit for AMJPad

7 years agoMerge pull request #1257 from MachineIndustries/keyboards/M10A
Jack Humbert [Tue, 25 Apr 2017 18:07:41 +0000 (14:07 -0400)]
Merge pull request #1257 from MachineIndustries/keyboards/M10A

Add RAMA x Machine Industries M10A to the keyboards directory

7 years agoAdd RAMA x Machine Industries M10A to the keyboards directory
Josh Black [Tue, 25 Apr 2017 17:51:45 +0000 (18:51 +0100)]
Add RAMA x Machine Industries M10A to the keyboards directory

7 years agoSwitched Alt and GUI key places
Justin Frank [Mon, 24 Apr 2017 02:38:40 +0000 (19:38 -0700)]
Switched Alt and GUI key places

7 years agoAdding Right Layout
Ryan MacLean [Sun, 23 Apr 2017 05:34:14 +0000 (22:34 -0700)]
Adding Right Layout

7 years agoUpdate keymap.c
Ryan MacLean [Sun, 23 Apr 2017 04:26:47 +0000 (21:26 -0700)]
Update keymap.c

7 years agoInitial Ortho Commit (LEFT SIDE)
Ryan MacLean [Sun, 23 Apr 2017 03:49:34 +0000 (20:49 -0700)]
Initial Ortho Commit (LEFT SIDE)

Using only one layer, and activating it with two keys at the moment.
As with previous comments, this isn't final, but is a good starting point for a one-handed keyboard, half a Planck-like ortholinear keyboard, or a sample to show a layout with a function layer.

7 years agoAdded lae3 keymap
Justin Frank [Sat, 22 Apr 2017 22:15:17 +0000 (15:15 -0700)]
Added lae3 keymap

7 years agoAdded an additional clueboard layout. (#1252)
Solomon [Sat, 22 Apr 2017 13:25:41 +0000 (09:25 -0400)]
Added an additional clueboard layout. (#1252)

* Current building keymap

* Working media keys

* Added mute key. Fixed volume. Fixed media

* Updating readme

* Swapped readme order

7 years agoTweak the shift_fn keymap so it works
skullY [Sat, 22 Apr 2017 04:46:01 +0000 (21:46 -0700)]
Tweak the shift_fn keymap so it works

7 years ago- Moved S60-X RGB in sub project for S60-X
dbroqua [Wed, 19 Apr 2017 20:12:23 +0000 (22:12 +0200)]
- Moved S60-X RGB in sub project for S60-X

7 years agoMerge pull request #1246 from reversebias/master
Jack Humbert [Wed, 19 Apr 2017 12:43:28 +0000 (08:43 -0400)]
Merge pull request #1246 from reversebias/master

Initial support for the Mitosis Keyboard

7 years agoUpdate readme.md
reversebias [Wed, 19 Apr 2017 12:39:44 +0000 (22:39 +1000)]
Update readme.md

7 years agoMerge pull request #1245 from fredizzimo/fix_lcd_pin_configuration
Jack Humbert [Wed, 19 Apr 2017 11:50:03 +0000 (07:50 -0400)]
Merge pull request #1245 from fredizzimo/fix_lcd_pin_configuration

Fix LCD SS pin configuration

7 years agoMerge pull request #1244 from ryanmaclean/patch-3
Jack Humbert [Wed, 19 Apr 2017 11:49:46 +0000 (07:49 -0400)]
Merge pull request #1244 from ryanmaclean/patch-3

Adding Maximized Keymap

7 years agoMerge pull request #1243 from Xyverz/master
Jack Humbert [Wed, 19 Apr 2017 11:47:56 +0000 (07:47 -0400)]
Merge pull request #1243 from Xyverz/master

Removed LT macros

7 years agoFirst Commit
cam [Wed, 19 Apr 2017 10:27:49 +0000 (20:27 +1000)]
First Commit

7 years agoDelete temp
reversebias [Wed, 19 Apr 2017 10:15:44 +0000 (20:15 +1000)]
Delete temp

7 years agoCreate temp
reversebias [Wed, 19 Apr 2017 10:12:50 +0000 (20:12 +1000)]
Create temp

7 years agoFix LCD SS pin configuration
Fred Sundvik [Wed, 19 Apr 2017 04:59:39 +0000 (07:59 +0300)]
Fix LCD SS pin configuration

There was a typo, so the attempted configuration proably didn't do
what it should have done. I think it left the pin floating, and
could cause the LCD problems issue-1230.

7 years agoAdding Sample Max Layout
Ryan MacLean [Wed, 19 Apr 2017 04:54:58 +0000 (21:54 -0700)]
Adding Sample Max Layout

7 years agoAdding Maximized Keymap
Ryan MacLean [Wed, 19 Apr 2017 04:53:10 +0000 (21:53 -0700)]
Adding Maximized Keymap

For use with grid layout pads.

7 years agoLT doesn't work with tri_layer. Removed it from this keymap.
Xyverz [Wed, 19 Apr 2017 03:36:26 +0000 (20:36 -0700)]
LT doesn't work with tri_layer. Removed it from this keymap.

7 years agoswapped RAISE with LOWER in layer-tapping macros.
Xyverz [Wed, 19 Apr 2017 01:15:46 +0000 (18:15 -0700)]
swapped RAISE with LOWER in layer-tapping macros.

7 years ago- Fixed bug in keymap for s60-X RGB
dbroqua [Tue, 18 Apr 2017 20:26:32 +0000 (22:26 +0200)]
- Fixed bug in keymap for s60-X RGB

7 years agoMerge pull request #1239 from priyadi/promethium
Jack Humbert [Tue, 18 Apr 2017 20:17:27 +0000 (16:17 -0400)]
Merge pull request #1239 from priyadi/promethium

Keymap updates

7 years agoMerge pull request #1238 from priyadi/fauxclicky_fix
Jack Humbert [Tue, 18 Apr 2017 20:16:35 +0000 (16:16 -0400)]
Merge pull request #1238 from priyadi/fauxclicky_fix

Faux clicky bug fixes

7 years agoMerge pull request #1236 from Xyverz/master
Jack Humbert [Tue, 18 Apr 2017 20:08:16 +0000 (16:08 -0400)]
Merge pull request #1236 from Xyverz/master

Revamp TV44 keymap.

7 years agoMerge pull request #1235 from siroken3/siroken3
Jack Humbert [Tue, 18 Apr 2017 20:06:27 +0000 (16:06 -0400)]
Merge pull request #1235 from siroken3/siroken3

Siroken3

7 years agoFix Planck compatibility
Priyadi Iman Nurcahyo [Tue, 18 Apr 2017 19:55:19 +0000 (02:55 +0700)]
Fix Planck compatibility

7 years agoKeymap updates and some adjustment for latest version of QMK
Priyadi Iman Nurcahyo [Tue, 18 Apr 2017 19:52:57 +0000 (02:52 +0700)]
Keymap updates and some adjustment for latest version of QMK

7 years agoFaux clicky bug fixes
Priyadi Iman Nurcahyo [Tue, 18 Apr 2017 18:40:16 +0000 (01:40 +0700)]
Faux clicky bug fixes

7 years agoPromethium rev2
Priyadi Iman Nurcahyo [Tue, 18 Apr 2017 18:38:08 +0000 (01:38 +0700)]
Promethium rev2

* 10 more indicator LEDs
* Piezo buzzer
* Uses HC138 decoder to free up 5 pins
* Trackpoint buttons are now part of matrix

7 years agoFixed a weird diff mishap.
Xyverz [Tue, 18 Apr 2017 04:54:02 +0000 (21:54 -0700)]
Fixed a weird diff mishap.

7 years agoMerge branch 'tv44_revamp'
Xyverz [Tue, 18 Apr 2017 03:20:27 +0000 (20:20 -0700)]
Merge branch 'tv44_revamp'

7 years agoUpdated my TV44 keymap to be more planck-like.
Xyverz [Tue, 18 Apr 2017 03:15:57 +0000 (20:15 -0700)]
Updated my TV44 keymap to be more planck-like.

Used the current default planck keymap as a guide.

7 years agoMerge pull request #1234 from whitef0x0/patch-1
Jack Humbert [Mon, 17 Apr 2017 23:02:24 +0000 (19:02 -0400)]
Merge pull request #1234 from whitef0x0/patch-1

Fixed dvorak layout for Atreus50

7 years agoFixed dvorak layout for Atreus50
David Baldwynn [Mon, 17 Apr 2017 19:05:47 +0000 (12:05 -0700)]
Fixed dvorak layout for Atreus50

7 years agoMerge pull request #1228 from fitzsim/fix-keymap-yoruian-macro
Jack Humbert [Mon, 17 Apr 2017 17:21:03 +0000 (13:21 -0400)]
Merge pull request #1228 from fitzsim/fix-keymap-yoruian-macro

Fix KEYMAP_YORUIAN macro

7 years agomacros to make keymap reading easier.
Xyverz [Mon, 17 Apr 2017 04:52:49 +0000 (21:52 -0700)]
macros to make keymap reading easier.

7 years agoAdded keymap to TV44 Revamp
Xyverz [Mon, 17 Apr 2017 04:09:23 +0000 (21:09 -0700)]
Added keymap to TV44 Revamp

7 years ago- Added S-60-X RGB directory (based on qmk.sized.io work)
dbroqua [Sat, 15 Apr 2017 14:34:33 +0000 (16:34 +0200)]
- Added S-60-X RGB directory (based on qmk.sized.io work)

7 years agoFix KEYMAP_YORUIAN macro
Thomas Fitzsimmons [Fri, 14 Apr 2017 06:06:58 +0000 (02:06 -0400)]
Fix KEYMAP_YORUIAN macro

Fix the ordering of the arguments to the KEYMAP macro.

7 years agoMerge pull request #1226 from fredizzimo/fix_ergodox_righthand_warning
Jack Humbert [Thu, 13 Apr 2017 20:15:13 +0000 (16:15 -0400)]
Merge pull request #1226 from fredizzimo/fix_ergodox_righthand_warning

Add missing serial_link.h include

7 years agoAdd missing serial_link.h include
Fred Sundvik [Thu, 13 Apr 2017 20:00:27 +0000 (23:00 +0300)]
Add missing serial_link.h include

Which fixes a warning when building Ergodox Infinity as a righthand
master.

7 years agoMerge pull request #1225 from fredizzimo/fix_lcd_led_status_buffer_overrun
Jack Humbert [Thu, 13 Apr 2017 19:26:38 +0000 (15:26 -0400)]
Merge pull request #1225 from fredizzimo/fix_lcd_led_status_buffer_overrun

Fix buffer overrun in lcd_keyframes

7 years agoFix buffer overrun in lcd_keyframes
Fred Sundvik [Thu, 13 Apr 2017 18:40:06 +0000 (21:40 +0300)]
Fix buffer overrun in lcd_keyframes

This would often cause the keyboard to crash when restarting the
computer.

7 years agoMerge pull request #1224 from fredizzimo/fix_warnings
Jack Humbert [Thu, 13 Apr 2017 18:07:48 +0000 (14:07 -0400)]
Merge pull request #1224 from fredizzimo/fix_warnings

Fix all warnings and turn on warnings as errors

7 years agoAdd make option for allowing warnings
Fred Sundvik [Thu, 13 Apr 2017 13:12:55 +0000 (16:12 +0300)]
Add make option for allowing warnings

7 years agoFix process_unicode_common.c being included twice
Fred Sundvik [Thu, 13 Apr 2017 12:58:58 +0000 (15:58 +0300)]
Fix process_unicode_common.c being included twice

7 years agoFix warnings when ACTION_ONESHOT is disabled
Fred Sundvik [Wed, 12 Apr 2017 07:04:19 +0000 (10:04 +0300)]
Fix warnings when ACTION_ONESHOT is disabled

7 years agoInclude host.h from suspend.c
Fred Sundvik [Wed, 12 Apr 2017 06:02:51 +0000 (09:02 +0300)]
Include host.h from suspend.c

7 years agoFix warnings in CMD-Preonic
Fred Sundvik [Mon, 10 Apr 2017 08:52:26 +0000 (11:52 +0300)]
Fix warnings in CMD-Preonic

The startup_sound is defined using MUSICAL_NOTEs, since non-constant
initializer expressions are not allowed in C.

7 years agoFix warnings in process_printer
Fred Sundvik [Mon, 10 Apr 2017 07:36:09 +0000 (10:36 +0300)]
Fix warnings in process_printer

7 years agoFix warnings in planck/lucas keymap
Fred Sundvik [Mon, 10 Apr 2017 07:12:41 +0000 (10:12 +0300)]
Fix warnings in planck/lucas keymap

Register the unshifted version DE_LESS, rather than the shifted DE_MORE

7 years agoFix warnings in kitten_paw/ickerwx keymap
Fred Sundvik [Mon, 10 Apr 2017 06:52:10 +0000 (09:52 +0300)]
Fix warnings in kitten_paw/ickerwx keymap

7 years agoMake MOUSEKEY_MOVE_MAX and MOUSEKEY_WHEEL_MAX configurable
Fred Sundvik [Mon, 10 Apr 2017 06:51:00 +0000 (09:51 +0300)]
Make MOUSEKEY_MOVE_MAX and MOUSEKEY_WHEEL_MAX configurable

Kitten_paw/ickerwx was doing that

7 years agoRename MS-sculpt-mobile to MS_scuplpt_mobile
Fred Sundvik [Sun, 9 Apr 2017 19:49:07 +0000 (22:49 +0300)]
Rename MS-sculpt-mobile to MS_scuplpt_mobile

Subprojects with "-" have problems, since the build system creates
a define containing the subproject name, and "-" is illegal in
macro names.

7 years agoAdd SKIP_VERSION option to speed up compilation
Fred Sundvik [Sun, 9 Apr 2017 19:48:35 +0000 (22:48 +0300)]
Add SKIP_VERSION option to speed up compilation

7 years agoFix frosty_flake warning when print is disabled
Fred Sundvik [Sun, 9 Apr 2017 19:19:52 +0000 (22:19 +0300)]
Fix frosty_flake warning when print is disabled

7 years agoFix keymap yoruian on Infinity
Fred Sundvik [Sun, 9 Apr 2017 19:02:37 +0000 (22:02 +0300)]
Fix keymap yoruian on Infinity

7 years agoFix name collision between ChibiOS and keymap_german
Fred Sundvik [Sun, 9 Apr 2017 18:17:32 +0000 (21:17 +0300)]
Fix name collision between ChibiOS and keymap_german

7 years agoFix overflow warning in ordinary keymap
Fred Sundvik [Sun, 9 Apr 2017 18:05:31 +0000 (21:05 +0300)]
Fix overflow warning in ordinary keymap

7 years agoFix overflow warnings in dvorak_programmer
Fred Sundvik [Sun, 9 Apr 2017 18:02:45 +0000 (21:02 +0300)]
Fix overflow warnings in dvorak_programmer

7 years agoDisable array bounds warning in keymap_function_id_to_action
Fred Sundvik [Sun, 9 Apr 2017 18:00:42 +0000 (21:00 +0300)]
Disable array bounds warning in keymap_function_id_to_action

7 years agoFix undefined eeprom warnings in unicode processing
Fred Sundvik [Sun, 9 Apr 2017 17:08:46 +0000 (20:08 +0300)]
Fix undefined eeprom warnings in unicode processing

7 years agoEnable warnings as errors
Fred Sundvik [Sun, 9 Apr 2017 17:04:41 +0000 (20:04 +0300)]
Enable warnings as errors

7 years agoAdd makefile option to break on errors
Fred Sundvik [Sun, 9 Apr 2017 17:04:12 +0000 (20:04 +0300)]
Add makefile option to break on errors

7 years agoMerge pull request #20 from qmk/master
Damien [Thu, 13 Apr 2017 11:26:02 +0000 (13:26 +0200)]
Merge pull request #20 from qmk/master

Merge from QMK

7 years agoMerge pull request #1220 from joedevivo/master
Jack Humbert [Wed, 12 Apr 2017 19:42:46 +0000 (15:42 -0400)]
Merge pull request #1220 from joedevivo/master

mimic atreus firmware defaults

7 years agoMerge pull request #1212 from Xyverz/master
Jack Humbert [Wed, 12 Apr 2017 16:46:08 +0000 (12:46 -0400)]
Merge pull request #1212 from Xyverz/master

atreus keymap overhaul

7 years agoMerge pull request #1213 from nstickney/master
Jack Humbert [Wed, 12 Apr 2017 16:45:45 +0000 (12:45 -0400)]
Merge pull request #1213 from nstickney/master

ErgoDox Familiar layout

7 years agoMerge pull request #1216 from Khord/master
Jack Humbert [Wed, 12 Apr 2017 16:45:03 +0000 (12:45 -0400)]
Merge pull request #1216 from Khord/master

Added breathing macros/mappings and removed mappings to unused layouts

7 years agoMerge pull request #1222 from kamisamamizu/patch-1
Jack Humbert [Wed, 12 Apr 2017 16:44:11 +0000 (12:44 -0400)]
Merge pull request #1222 from kamisamamizu/patch-1

Fixed position of BSLS and BSPC on the xd60

7 years agoMerge pull request #1217 from fredizzimo/ergodox_default_visualizer
Jack Humbert [Wed, 12 Apr 2017 16:43:46 +0000 (12:43 -0400)]
Merge pull request #1217 from fredizzimo/ergodox_default_visualizer

Enable Ergodox Infinity LCD visualization

7 years agoFixed position of BSLS and BSPC
kamisamamizu [Wed, 12 Apr 2017 10:18:38 +0000 (12:18 +0200)]
Fixed position of BSLS and BSPC

They were in the incorrect positions before.

7 years agoFix code formatting in build_keyboard.mk
Fred Sundvik [Wed, 12 Apr 2017 06:52:40 +0000 (09:52 +0300)]
Fix code formatting in build_keyboard.mk

7 years agomimic atreus firmware defaults
Joe DeVivo [Tue, 11 Apr 2017 00:19:27 +0000 (17:19 -0700)]
mimic atreus firmware defaults

7 years agoExtract Ergodox default visualizer into simple_visualizer
Fred Sundvik [Sun, 9 Apr 2017 15:32:10 +0000 (18:32 +0300)]
Extract Ergodox default visualizer into simple_visualizer

It's good enough if you only want to change the lcd text and color.

7 years agoRename led test to led_keyframes and move animation to Ergodox
Fred Sundvik [Sat, 8 Apr 2017 20:04:27 +0000 (23:04 +0300)]
Rename led test to led_keyframes and move animation to Ergodox

7 years agoCreate a file for shared Ergodox Infinity animations
Fred Sundvik [Sat, 8 Apr 2017 19:48:18 +0000 (22:48 +0300)]
Create a file for shared Ergodox Infinity animations

7 years agoCombine startup and resume animations
Fred Sundvik [Sat, 8 Apr 2017 19:30:37 +0000 (22:30 +0300)]
Combine startup and resume animations

7 years agoFix suspend not disabling backlight
Fred Sundvik [Sat, 8 Apr 2017 18:34:30 +0000 (21:34 +0300)]
Fix suspend not disabling backlight

7 years agoMove the logo drawing keyframe to lcd_keyframes
Fred Sundvik [Sat, 8 Apr 2017 18:30:11 +0000 (21:30 +0300)]
Move the logo drawing keyframe to lcd_keyframes

7 years agoMove LCD logo to visualizer resources
Fred Sundvik [Sat, 8 Apr 2017 18:19:44 +0000 (21:19 +0300)]
Move LCD logo to visualizer resources

7 years agoAdd automatic flush for the LCD screen
Fred Sundvik [Sat, 8 Apr 2017 17:10:20 +0000 (20:10 +0300)]
Add automatic flush for the LCD screen

7 years agoLCD initialization sequence according to the docs
Fred Sundvik [Fri, 7 Apr 2017 07:55:29 +0000 (10:55 +0300)]
LCD initialization sequence according to the docs

The LCD initialization show now be much better and faster with no
flickering at the startup.

Also fix the contrast control.

7 years agoYet another try to fix the LCD corruption
Fred Sundvik [Fri, 7 Apr 2017 07:51:53 +0000 (10:51 +0300)]
Yet another try to fix the LCD corruption

It turns out that the ChibiOS K20 SPI driver doesn't handle the
chip select, so it needs to be done manually. Acquiring the bus is
not enough since the pin was in the wrong mode. This is now fixed.

Also increase the frequency of the SPI from around 200kHz to nearly
20 Mhz.

7 years agoMove common visualizer keyframes into visualizer_keyframes.h
Fred Sundvik [Wed, 5 Apr 2017 07:14:24 +0000 (10:14 +0300)]
Move common visualizer keyframes into visualizer_keyframes.h

7 years agoRemove the need to manually enable the visualizer
Fred Sundvik [Wed, 5 Apr 2017 07:08:25 +0000 (10:08 +0300)]
Remove the need to manually enable the visualizer

7 years agoSeparated backlight and LCD disable/enable
Fred Sundvik [Wed, 5 Apr 2017 06:21:18 +0000 (09:21 +0300)]
Separated backlight and LCD disable/enable

Also moved them to correct places

7 years agoMove LCD backlight keyframes to its own file
Fred Sundvik [Wed, 5 Apr 2017 05:48:30 +0000 (08:48 +0300)]
Move LCD backlight keyframes to its own file

7 years agoMove LCD keyframes to its own file
Fred Sundvik [Wed, 5 Apr 2017 05:40:39 +0000 (08:40 +0300)]
Move LCD keyframes to its own file

7 years agoDelete visualizer example integration
Fred Sundvik [Wed, 5 Apr 2017 04:48:51 +0000 (07:48 +0300)]
Delete visualizer example integration

It's much better to refer to the actual code than to to try to
keep some examples up to date.

7 years agoTweaks to the Ergodox default visualizer
Fred Sundvik [Tue, 4 Apr 2017 19:29:40 +0000 (22:29 +0300)]
Tweaks to the Ergodox default visualizer

No animation, display led statuses and layer name on the same screen
Don't display layer bitmap
Fully saturated colors for caps, less saturated ones normally

7 years agoSimple layer display on Infinity Ergodox default layout
Fred Sundvik [Mon, 3 Apr 2017 20:00:58 +0000 (23:00 +0300)]
Simple layer display on Infinity Ergodox default layout

7 years agoAdd visualizer for Ergodox default
Fred Sundvik [Mon, 3 Apr 2017 19:08:34 +0000 (22:08 +0300)]
Add visualizer for Ergodox default