19964 Commits (e596ece87aac51f053f1f26f5f5bff964d7c351a)
 

Author SHA1 Message Date
Kyrre Havik 719881c2ee
[Keyboard] Add Xenon keyboard (#15915)
Co-authored-by: Sam Mohr <smores56@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
4 years ago
QMK Bot 80db7668da Merge remote-tracking branch 'origin/master' into develop 4 years ago
Lalit Maganti 1febea8d4b
[Keymap] add LalitMaganti GMMK Pro Keymap (#16203)
Co-authored-by: Drashna Jaelre <drashna@live.com>
4 years ago
Nick Brassel d31dd6d2a0
Followup to #16220, more test error output. (#16221) 4 years ago
QMK Bot 28fbcac6c9 Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young 904d5f14f5
Studio Kestra Galatea: add (#16218) 4 years ago
Nick Brassel e987ce1652
Standardise error output. (#16220) 4 years ago
QMK Bot 45406c0ca2 Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young f8376d2a37
Bathroom Epiphanies Ghost Squid: add QMK Configurator data (#16212) 4 years ago
Thomas Weißschuh f1cd2a5a89
ChibiOS: add support for HID Programmable Buttons (#15787)
* ChibiOS: add support for HID Programmable Buttons

Fixes #15596

* Enable SHARED_ENDPOINT when PROGRAMMABLE_BUTTON is enabled

The Programmable Button driver expects the shared EP to be enabled.
So enforce this invariant.
4 years ago
QMK Bot 5b31e97187 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Xelus22 8d5375d08b
[Bug] fix Pachi RGB Rev2 RGB positioning (#16182) 4 years ago
QMK Bot 0844b0d9bd Merge remote-tracking branch 'origin/master' into develop 4 years ago
jack 16d53fa1c7
[Keymap] Fix OLED font path in default Rhymestone keymap (#16197) 4 years ago
QMK Bot b4dba89dc4 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Ian McLinden c067d374d7
[Keyboard] Add VIA keymap to AMAG23 (#16206) 4 years ago
TerryMathews 13821fdbd7
[Keyboard] TKC Portico75 (#15114)
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jael're <drashna@live.com>
4 years ago
QMK Bot a72f4346ce Merge remote-tracking branch 'origin/master' into develop 4 years ago
IskandarMa f52cc210b8
[Docs] feature_macro.md: minor formatting fix (#16205) 4 years ago
Nick Brassel 8fd8b2dc92
Skip categorisation of PR if it's only for code formatting. (#16215) 4 years ago
QMK Bot 0c0aa6a0ae Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young 7540a80341
MTBKeys MTB60 Solder Layout Macro Refactor (#16195) 4 years ago
QMK Bot ec9147f069 Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young ca46abdc38
FJLabs 7V Hotswap: refactor LAYOUT_75_all macro (#16213) 4 years ago
James Young 9fe0842b6d
Meow65: rename LAYOUT to LAYOUT_65_ansi_blocker (#16214) 4 years ago
QMK Bot e83aa78357 Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young 0a40916845
MechanicKeys Mini Ashen 40: refactor LAYOUT macro (#16192)
* info.json: apply friendly formatting

* move Backspace argument/keycode to top row

* info.json: correct maintainer field
4 years ago
QMK Bot b4ceefde37
Format code according to conventions (#16211) 4 years ago
Albert Y 6a35788b63 [Core] Add Pixel Flow RGB matrix effect (#15829)
* Initial PIXEL FLOW matrix effect commit

* Commit suggested use of rgb_matrix_check_finished_leds

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

* Code change support for split RGB

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
4 years ago
QMK Bot 578d3f6951 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Nick Brassel 1fffcbc298
Revert "[Core] Add Pixel Flow RGB matrix effect (#15829)" (#16209)
This reverts commit e8fa329073.
4 years ago
QMK Bot f2384d062b Merge remote-tracking branch 'origin/master' into develop 4 years ago
Albert Y e8fa329073
[Core] Add Pixel Flow RGB matrix effect (#15829)
* Initial PIXEL FLOW matrix effect commit

* Commit suggested use of rgb_matrix_check_finished_leds

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

* Code change support for split RGB

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
4 years ago
Joel Challis 135c935990
Initial migration of suspend callbacks (#16067)
* Initial migration of suspend logic

* Add header
4 years ago
Sergey Vlasov 580ef6d88f
ChibiOS timer fixes (#16017)
* chibios/timer: Move the 16-bit timer handling into a separate function

Extract the code which effectively makes a 32-bit tick counter from a
possibly 16-bit ChibiOS system timer into a separate function.  Does
not really change the behavior of the timer API, but makes the actions
done in `timer_clear()` and `timer_read32()` more obvious.

* chibios/timer: Rename some variable to better reflect their role

* chibios/timer: Fix 32-bit tick counter overflow handling

The QMK timer API implementation for ChibiOS used a 32-bit tick counter
(obtained from the ChibiOS system timer) and then converted the value to
milliseconds to produce the timer value for QMK.  However, the frequency
of the ChibiOS timer is above 1000 Hz in most cases (values of 10000 Hz
or even 100000 Hz are typically used), and therefore the 32-bit tick
counter was overflowing and wrapping around much earlier than expected
(after about 5 days for 10000 Hz, or about 12 hours for 100000 Hz).
When this wraparound happened, the QMK timer value was jumping back to
zero, which broke various code dealing with timers (e.g., deferred
executors).

Just making the tick counter 64-bit to avoid the overflow is not a good
solution, because the ChibiOS code which performs the conversion from
ticks to milliseconds may encounter overflows when handling a 64-bit
value.  Adjusting just the value converted to milliseconds to account
for lost 2**32 ticks is also not possible, because 2**32 ticks may not
correspond to an integer number of milliseconds.  Therefore the tick
counter overflow is handled as follows:

  - A reasonably large number of ticks (the highest multiple of the
    ChibiOS timer frequency that fits into uint32_t) is subtracted from
    the tick counter, so that its value is again brought below 2**32.
    The subtracted value is chosen so that it would correspond to an
    integer number of seconds, therefore it could be converted to
    milliseconds without any loss of precision.

  - The equivalent number of milliseconds is then added to the converted
    QMK timer value, so that the QMK timer continues to count
    milliseconds as it was before the tick counter overflow.

* chibios/timer: Add a virtual timer to make 16-bit timer updates more reliable

The code which extends the 16-bit ChibiOS system timer to a 32-bit tick
counter requires that it is called at least once for every overflow of
the system timer (otherwise the tick counter can skip one or more
overflow periods).  Normally this requirement is satisfied just from
various parts of QMK code reading the current timer value; however, in
some rare circumstances the QMK code may be blocked waiting for some
event, and when this situation is combined with having a rather high
timer frequency, this may result in improper timekeeping.

Enhance the timer reliability by adding a ChibiOS virtual timer which
invokes a callback every half of the timer overflow period.  The virtual
timer callback can be invoked even when the normal QMK code is blocked;
the only requirement is that the timer interrupts are enabled, and the
ChibiOS kernel is not locked for an excessive time (but the timer update
will eventually work correctly if the virtual timer handling is not
delayed by more than a half of the timer overflow period).

Keeping a virtual timer always active also works around a ChibiOS bug
that can manifest with a 16-bit system timer and a relatively high timer
frequency: when all active virtual timers have delays longer than the
timer overflow period, the handling of virtual timers stops completely.
In QMK this bug can result in a `wait_ms()` call with a delay larger
than the timer overflow period just hanging indefinitely.  However, when
the timer update code adds a virtual timer with a shorter delay, all
other virtual timers are also handled properly.
4 years ago
Joel Challis 8927d56606
Update outputselect to use platform connected state API (#16185) 4 years ago
QMK Bot e212c7c2e5 Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young 98916fd862
MTBKeys MTB60 Hotswap Layout Macro Refactor (#16194) 4 years ago
QMK Bot 5178f75475 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Salicylic-acid3 405c04e0d2
[Keyboard] Add Keyboards GL516s (#14950)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
4 years ago
QMK Bot d966b39c5d Merge remote-tracking branch 'origin/master' into develop 4 years ago
James Young 1cb423c424
Mokey xox70hot: rename LAYOUT to LAYOUT_tkl_nofrow_ansi_tsangan (#16193) 4 years ago
QMK Bot 249280cac2 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Nick Brassel 3403f5813c
Point out that deferred execution needs to be enabled in rules.mk (#16196) 4 years ago
Nick Brassel db43e45077
Ensure `version.h` is recreated each build. (#16188) 4 years ago
QMK Bot 57a78b68de Merge remote-tracking branch 'origin/master' into develop 4 years ago
Richard 333dd5d48c
Fix axis inversion (#16179) 4 years ago
Nick Brassel 0be2eaf174
Create a build error if no bootloader is specified. (#16181)
* Create a build error if no bootloader is specified.

* Update builddefs/bootloader.mk

Co-authored-by: Ryan <fauxpark@gmail.com>

Co-authored-by: Ryan <fauxpark@gmail.com>
4 years ago
QMK Bot 0d7ff026b1 Merge remote-tracking branch 'origin/master' into develop 4 years ago
Ryan 27e390777b
Fix a couple of mismatched info.json layout names (#16164)
* Fix a couple of mismatched info.json layout names

* Fix layouts

* Clean up layouts
4 years ago