summaryrefslogtreecommitdiff
path: root/platforms/avr
AgeCommit message (Collapse)AuthorFilesLines
2025-11-30Merge remote-tracking branch 'origin/master' into developQMK Bot4-14/+14
2025-11-30[CI] Format code according to conventions (#25827)QMK Bot4-14/+14
Format code according to conventions
2025-11-27Merge remote-tracking branch 'origin/master' into developQMK Bot1-3/+3
2025-11-28QMK CLI Environment bootstrapper (#25038)Nick Brassel1-3/+3
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Pascal Getreuer <getreuer@google.com>
2025-11-11Add I2C Transmit and Receive function (#25637)Drashna Jaelre1-0/+26
* feat: adds a transmit and receive i2c method * fix: address the i2c transmit and receive length on u16 * Add AVR/LUFA implementation Didn't add a progmem version, since that would only apply to receive. Figured it wasn't worth it, but can add. * Rearrange order of functions * Add docs * Fix doc gen error * Fix lint issues * fix more lint issues
2025-09-09Update default OLED font (#25565)Ryan1-23/+0
2025-06-15More compiledb fixes. (#25355)Nick Brassel1-0/+2
2025-05-22Add `compiler_support.h` (#25274)Pablo Martínez2-3/+7
2025-05-19gcc15 AVR compilation fixes (#25238)Nick Brassel1-5/+8
2025-03-06Add EOL to non-keyboard files (#24990)Joel Challis1-1/+1
2025-01-26Unify spi_master headers (#24857)Ryan1-68/+0
* Move default config to .c file * Explicitly define PAL modes for boards with custom init * Unify spi_master headers
2025-01-26Unify i2c_master headers (#24846)Ryan1-41/+0
* Unify i2c_master headers * More documentation improvements * Reorganise PAL mode defaults
2025-01-26Unify UART headers (#24855)Ryan1-39/+0
* Remove deprecated defines * Move default config to .c files * Unify UART headers * Clean up docs * Reorganise PAL mode defaults
2025-01-20`ferris/0_1`: update I2C API usage (#24839)Ryan1-3/+0
2025-01-19`i2c_master`: remove deprecated functions (#24832)Ryan1-7/+0
2025-01-19Consolidate timer_elapsed implementations (#24830)Joel Challis1-28/+0
2024-10-25Add timer_save and _restore functions. (#23887)Dasky1-0/+19
Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2024-10-06WS2812 API rework (#24364)Ryan2-25/+49
* Begin WS2812 API rework * Move RGBW conversion, clean up color.h, fix RGBW for AVR bitbang * Formatting & update PS2AVRGB I2C driver (untested) * Tested ARM bitbang RGB+RGBW * Tested ARM SPI RGB - RGBW not working * Tested ARM PWM RGB+RGBW * Tested RP2040 PIO driver RGB+RGBW * Update RGBLight * Formatting * Fix BM60HSRGB rev2 * Fix oddforge/vea * Fix 1k and XD002 RGBLite * Fix model_m/mschwingen * Fix handwired/promethium * Rename `WS2812_LED_TOTAL` for BM60HSRGB * Fix work_louder boards * Fix dawn60 * Fix rgbkb/pan * Fix neson_design/700e and n6 * Fix ergodox_ez/shine * ergodox_ez/shine: invert indices for left half * Fix matrix/abelx * Fix matrix/m20add * Remove custom rgblight driver for matrix/noah - should be done with lighting layers * Fix LED indexes for RGBLight split * Rename `convert_rgb_to_rgbw()` to `ws2812_rgb_to_rgbw()` * Update WS2812 API docs * `ergodox_ez/shine`: simplify LED index calculation * LED/RGB Matrix: Add weak function for LED index resolution * Bandaid fix for RGB Matrix splits not using WS2812 * `steelseries/prime_plus`: redo custom RGBLight driver * Update keyboards/steelseries/prime_plus/rgblight_custom.c Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> --------- Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
2024-09-10Allow for inverted SPI CS logic (#23699)Dasky2-32/+61
2024-07-05Allow overriding `get_hardware_id()`. (#24051)Nick Brassel1-1/+1
2024-04-28Rename `RGBW` define to `WS2812_RGBW` (#23585)Ryan1-1/+1
2024-03-18Add init function to RGBLight driver struct (#23076)Ryan2-7/+3
2024-03-06[Audio] Add support for audio shutdown pin (#22731)Drashna Jaelre1-3/+3
Co-authored-by: Ryan <fauxpark@gmail.com>
2024-03-02Fix up AVR production build target. (#23190)Nick Brassel1-3/+3
2024-02-18Update GPIO macro usages in core (#23093)Ryan5-28/+28
2024-02-17Update naming convention for GPIO control macros (#23085)Ryan1-11/+11
2024-01-27Tidy up print/debug logging headers (#22969)Joel Challis1-7/+0
2024-01-17I2C driver cleanup (#21273)David Hoelscher2-11/+27
* remove i2c_start and i2c_stop from i2c drivers * remove static i2c_address variable from chibios i2c driver
2024-01-16i2c: rename read/write register functions (#22905)Ryan2-8/+15
2023-11-22Add simpler method for relocating functions to RAM. (#21804)Nick Brassel1-0/+10
2023-11-13Revert "chibios: disable RWX segment warning on newer GNU lds (#22007)" (#22469)Nick Brassel1-1/+3
This reverts commit de3c42125b661f62757f8ee4f6184c089340d3a0.
2023-11-13chibios: disable RWX segment warning on newer GNU lds (#22007)Thomas Weißschuh1-3/+1
2023-10-09avrdude: Version 7.2 changes the text output (#22235)Dominik1-2/+2
from "could not find USB device with" to "cannot find USB device with" This should fix issue #22234 Co-authored-by: Dominik Loidolt <dominik.loidolt@univie.ac.at>
2023-09-12Remove 'Firmware size check does not yet support' message (#21977)Joel Challis1-0/+23
2023-09-04Clean up RGB LED type (#21859)Ryan2-4/+4
2023-08-23Merge remote-tracking branch 'origin/master' into developQMK Bot1-2/+1
2023-08-23Generalize AVR -Werror=array-bounds workaround (#21798)Thomas Weißschuh1-2/+1
GCC 13 needs the same workaround as GCC 12. To avoid having to maintain an ever-growing list of broken versions apply the workaround wherever it can be used. If at some point a fixed version of GCC is released the workaround can be disabled for those fixed versions. See #17064
2023-07-21backlight: split AVR PWM and timer drivers (#21540)Ryan2-168/+299
2023-07-16quantum: remove direct `quantum.h` includes (#21507)Ryan1-6/+2
2023-07-15Eliminate `TMK_COMMON_*` in makefiles (#21517)Ryan1-2/+2
2023-07-08Relocate backlight drivers (#21444)Ryan1-0/+463
2023-07-06Get rid of `USB_LED_CAPS_LOCK` (#21436)Ryan1-3/+6
2023-04-06Migrate `rgblight.pin` and `RGB_DI_PIN` to `ws2812.pin` (#20303)Ryan1-4/+4
2023-04-05Disable specific warnings to mitigate compilation problems with ↵Nick Brassel1-0/+4
`KEEP_INTERMEDIATES=yes`. (#20339)
2023-03-30WS2812 driver improvements (#20262)Ryan2-5/+5
2023-03-23Tidy up duplication of MIN/MAX fallback implementations (#20236)Joel Challis1-2/+1
2023-01-29Split out mcu_selection to platform (#19701)Joel Challis1-0/+95
2023-01-20Fix functions with empty params (#19647)Ryan1-2/+2
* Fix functions with empty params * Found a bunch more
2023-01-19De-duplicate platform detection (#19603)Joel Challis1-0/+2
2023-01-11Revert "De-duplicate platform detection (#19545)" (#19564)Joel Challis1-2/+0
This reverts commit e11235ee14f9cd3fc45b836eec99ed312cb137dd.