ws2812: Fix number of nops for AVR at 8 MHz (#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.
Fix RGBLIGHT_LIMIT_VAL typo (#11826)
Migrate some tmk_core files to quantum (#11791)
* Migrate some tmk_core files to quantum
* Fix build errors
via support for bat43 (#11729)
* via support for bat43
* add adjust layer for via
[Update] Allow APM32 on TrinityXTtkl (#11715)
* amp32 initial change
* fix spacing
Allow flash/compile to accept relative json paths (#11767)
* Allow flash/compile to accept relative paths
* Review suggestions
* Review comments
* Put back exists check otherwise stdin fails
* fix lint
Rework I2C driver docs (#11658)
[Docs] Update isp_flashing_guide.md (#11777)
Added wiring for USBasp and changed the order of the documentation accordingly
[Keymap] Update keymap for keebio/nyquist (#11734)
[Keymap] Shadyproject/bfo9000 (#11753)
[Keymap] Update community ortholinear 4x12 keymap: junonum (#11757)
[Keyboard] Add my keymap for Mark65 (#11717)
[Keyboard] Add nknl7jp keyboard (#11591)
* Add nknl7jp keyboard
A 73 keys JIS Layout split keyboard.
Salicylic-acid3
* Keymap Update
Fixed default keymap.
* Update keyboards/nknl7jp/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7jp/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7jp/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7jp/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
[Keyboard] Add nknl7en keyboard (#11590)
* Add nknl7en keyboard
A 70 keys ANSI Layout split keyboard.
Salicylic-acid3
* Update readme.md
The name, photo, and link were wrong, so they have been corrected.
* Update keyboards/nknl7en/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7en/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7en/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/nknl7en/keymaps/salicylic/keymap.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
[Keyboard] Add ergoarrows keyboard (#11592)
A 76 keys Ergo Layout split keyboard.
Salicylic-acid3
[Keyboard] Whale 75 (#11486)
* initial commit
* various fixes
* minor formatting fixes
* fixed typo in config
* switched underglow from bitbang to pwm
* fixed indicator leds not working
* improved comment syntax
* fixed matrix
* remove outdated indicator custom code
Co-authored-by: Joel Challis <git@zvecr.com>
* add new indicator definitions
Co-authored-by: Joel Challis <git@zvecr.com>
* removed duplicate define for underglow pin
Co-authored-by: Drashna Jaelre <drashna@live.com>
* removed unneeded lines
* fixed readme to fit template
* added picture to readme
* fixed readme formatting
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>