Skip to content

Tags: crehmann/qmk_firmware

Tags

0.11.68

Toggle 0.11.68's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
LED Matrix: rename `LED_DRIVER_LED_COUNT` to `DRIVER_LED_TOTAL` (qmk#…

…11858)

0.11.67

Toggle 0.11.67's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
LED Matrix: add led_matrix_types.h and implement g_led_config (qmk#11741

)

* LED Matrix: add led_matrix_types.h and implement g_led_config

* Set correct flags for non-"modifier" LEDs

* Clean up docs a little

* Add license headers for [led,rgb]_matrix_types.h

0.11.66

Toggle 0.11.66's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Split gpio and atomic to platform (qmk#11792)

0.11.65

Toggle 0.11.65's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Disable VIA protocol's EEPROM reset and bootloader jump commands (qmk…

…#11892)

* Disable VIA protocol's EEPROM reset and bootloader jump commands, and allow for reinstation through #define.

* Removed at Wilba's suggestion.

0.11.64

Toggle 0.11.64's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
ws2812: Fix number of nops for AVR at 8 MHz (qmk#9559)

* ws2812: Fix number of nops for AVR at 8 MHz

When trying to calculate the number of nops for AVR running at 8 MHz,
the value of `w3` is expected to be negative; however, because `F_CPU`
is defined in tmk_core/avr.mk with the `UL` suffix, the preprocessor
performs its calculations using `unsigned long`, getting a very large
positive number instead of the expected negative number; this then
results in generating code with a huge number of nops.  Fix the broken
calculations by performing a comparison before subtraction, so that the
unsigned number wraparound does not occur.

The keyboard which triggers the problem is `handwired/promethium`; the
buggy code silently compiles, but the resulting timings would be
completely wrong.

* ws2812: Clean up the code after the 8 MHz fix

Remove old code which was unsuccessfully trying to clamp negative w1, w2
and w3 values to 0, and set w1_nops, w2_nops and w3_nops directly.

0.11.63

Toggle 0.11.63's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Migrate some tmk_core files to quantum (qmk#11791)

* Migrate some tmk_core files to quantum

* Fix build errors

0.11.62

Toggle 0.11.62's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Manual formatting fix for serial_uart.c (qmk#11806)

0.11.61

Toggle 0.11.61's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Serial refactor (qmk#11521)

0.11.60

Toggle 0.11.60's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Manually run formatting job (qmk#11797)

0.11.59

Toggle 0.11.59's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve Pointing Device report sending (qmk#11064)

* Improve Pointing Device report sending

* Hide old report behind preprocessors too

* put host_mouse_send() in curly brackets

* Remove POINTING_DEVICE_ALWAYS_SEND_REPORT functionality

* Fix typo

* fix function ref in docs

Co-authored-by: James Young <[email protected]>

Co-authored-by: James Young <[email protected]>