summaryrefslogtreecommitdiff
path: root/platforms/avr
AgeCommit message (Collapse)Author
2023-08-23Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-08-23Generalize AVR -Werror=array-bounds workaround (#21798)Thomas Weißschuh
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)Ryan
2023-07-16quantum: remove direct `quantum.h` includes (#21507)Ryan
2023-07-15Eliminate `TMK_COMMON_*` in makefiles (#21517)Ryan
2023-07-08Relocate backlight drivers (#21444)Ryan
2023-07-06Get rid of `USB_LED_CAPS_LOCK` (#21436)Ryan
2023-04-06Migrate `rgblight.pin` and `RGB_DI_PIN` to `ws2812.pin` (#20303)Ryan
2023-04-05Disable specific warnings to mitigate compilation problems with ↵Nick Brassel
`KEEP_INTERMEDIATES=yes`. (#20339)
2023-03-30WS2812 driver improvements (#20262)Ryan
2023-03-23Tidy up duplication of MIN/MAX fallback implementations (#20236)Joel Challis
2023-01-29Split out mcu_selection to platform (#19701)Joel Challis
2023-01-20Fix functions with empty params (#19647)Ryan
* Fix functions with empty params * Found a bunch more
2023-01-19De-duplicate platform detection (#19603)Joel Challis
2023-01-11Revert "De-duplicate platform detection (#19545)" (#19564)Joel Challis
This reverts commit e11235ee14f9cd3fc45b836eec99ed312cb137dd.
2023-01-11De-duplicate platform detection (#19545)Joel Challis
2022-11-06Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2022-10-31Refactor to avoid deprecated wmic execution (#18122)Joel Challis
* wmic deprecated? * Update platforms/avr/flash.mk * Update platforms/avr/flash.mk
2022-10-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-10-03`:flash`: print bootloader (#18569)Ryan
2022-08-31Move bootloader.mk to platforms (#18228)Ryan
2022-08-28Remove deprecated USBasp and bootloadHID bootloader types (#18195)Ryan
2022-08-14Improve avr wait_us() (#16879)Takeshi ISHII
2022-07-31Remove legacy AVR ssd1306 driver (#17864)Joel Challis
2022-07-12Include stdint.h in avr/i2c_master.h (#17639)jack
2022-07-07[Core] Update mpaland/printf to eyalroz/printf fork (#16163)Stefan Kerkmann
mpaland printf implementation was abandoned in ~2019 and the fork by eyalroz is now regarded to be the goto replacement of it. So this commit incoporates the changes needed to use this fork in QMK. Note that pointer ptrdiff_t is always supported since commit 51c90f93a97fdaef895783ecbe24569be0db7cb8
2022-06-25Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-06-25[Split] Ensure SOFT_SERIAL_PIN is defined if USE_I2C isn't defined (#17466)Drashna Jaelre
2022-06-22Fix AVR I2C master 1ms timeout (#17174)Daniel Kao
* avr i2c_master: Fix 1ms timeout i2c_start() produces a minimum time_slice of 1ms for use as timeout value. The timer granularity is 1ms, it is entirely possible for timer_count to tick up immediately after the last timer read and falsely trigger timeout with a '>= 1' comparison. * avr/drivers/i2c_master: Use timer_elapsed()
2022-06-06[Core] Update C standard to GNU11, C++ to GNU++14 (#17114)Stefan Kerkmann
2022-05-30Improve PS/2 mouse performance (#17111)Andrew Dunai
2022-05-18Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-05-18Fix platforms/avr/drivers/ws2812.c (#17043)Takeshi ISHII
* Fix platforms/avr/drivers/ws2812.c `platforms/avr/drivers/ws2812.c` has been changed to use `DDRx_ADDRESS()` and `PORTx_ADDRESS()` instead of `_SFR_IO8()` in #8646. To use them, `#include <pin_defs.h>` is required. ## Error Log * create new keyboard ```shell bash-3.2$ qmk new-keyboard Ψ Generating a new QMK keyboard directory Name Your Keyboard Project For more infomation, see: https://docs.qmk.fm/#/hardware_keyboard_guidelines?id=naming-your-keyboardproject Keyboard Name? ws2812_test .................................. 36. WB32F3G71 Please enter your choice: [12] Ψ Created a new keyboard called ws2812_test. Ψ To start working on things, `cd` into keyboards/ws2812_test, Ψ or open the directory in your preferred text editor. Ψ And build with qmk compile -kb ws2812_test -km default. ``` * Enable RGBLIGHT. ```shell bash-3.2$ echo RGBLIGHT_ENABLE=yes >> ./keyboards/ws2812_test/rules.mk bash-3.2$ echo '#define RGB_DI_PIN B1' >> ./keyboards/ws2812_test/config.h bash-3.2$ echo '#define RGBLED_NUM 6' >> ./keyboards/ws2812_test/config.h ``` * Compile ```shell bash-3.2$ make ws2812_test:default QMK Firmware 0.16.9 Making ws2812_test with keymap default avr-gcc (Homebrew AVR GCC 8.4.0_2) 8.4.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ..................... Compiling: quantum/process_keycode/process_rgb.c [OK] Compiling: platforms/avr/drivers/ws2812.c platforms/avr/drivers/ws2812.c: In function 'ws2812_setleds': platforms/avr/drivers/ws2812.c:40:5: error: implicit declaration of function 'DDRx_ADDRESS' [-Werror=implicit-function-declaration] DDRx_ADDRESS(RGB_DI_PIN) |= pinmask(RGB_DI_PIN); ^~~~~~~~~~~~ In file included from <command-line>: ./keyboards/ws2812_test/config.h:21:20: error: 'B1' undeclared (first use in this function); did you mean 'PB1'? #define RGB_DI_PIN B1 ^~ platforms/avr/drivers/ws2812.c:40:18: note: in expansion of macro 'RGB_DI_PIN' DDRx_ADDRESS(RGB_DI_PIN) |= pinmask(RGB_DI_PIN); ^~~~~~~~~~ ./keyboards/ws2812_test/config.h:21:20: note: each undeclared identifier is reported only once for each function it appears in #define RGB_DI_PIN B1 ^~ platforms/avr/drivers/ws2812.c:40:18: note: in expansion of macro 'RGB_DI_PIN' DDRx_ADDRESS(RGB_DI_PIN) |= pinmask(RGB_DI_PIN); ^~~~~~~~~~ platforms/avr/drivers/ws2812.c:42:47: error: implicit declaration of function 'PORTx_ADDRESS' [-Werror=implicit-function-declaration] uint8_t masklo = ~(pinmask(RGB_DI_PIN)) & PORTx_ADDRESS(RGB_DI_PIN); ^~~~~~~~~~~~~ In file included from /usr/local/Cellar/avr-gcc@8/8.4.0_2/avr/include/avr/io.h:99, from /usr/local/Cellar/avr-gcc@8/8.4.0_2/avr/include/avr/interrupt.h:38, from platforms/avr/drivers/ws2812.c:24: platforms/avr/drivers/ws2812.c: In function 'ws2812_sendarray_mask': ./keyboards/ws2812_test/config.h:21:20: error: 'B1' undeclared (first use in this function); did you mean 'PB1'? #define RGB_DI_PIN B1 ^~ platforms/avr/drivers/ws2812.c:167:69: note: in expansion of macro 'RGB_DI_PIN' : "r"(curbyte), "I"(_SFR_IO_ADDR(PORTx_ADDRESS(RGB_DI_PIN))), "r"(maskhi), "r"(masklo)); ^~~~~~~~~~ cc1: all warnings being treated as errors [ERRORS] | | | make[1]: *** [.build/obj_ws2812_test_default/ws2812.o] Error 1 make: *** [ws2812_test:default] Error 1 Make finished with errors ``` * change include order
2022-05-18Workaround for recent -Werror=array-bounds AVR issues (#17136)Joel Challis
2022-05-14[Core] Add Reboot keycode to core (#15990)Drashna Jaelre
2022-04-29Move disable_jtag to platforms (#16960)Joel Challis
2022-04-22[Core] Allow usage of AVRs minimal printf library (#16266)Stefan Kerkmann
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2022-04-18Fixup AVR builds. (#16875)Nick Brassel
* Fixup AVR builds. * Update platforms/avr/hardware_id.c Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2022-04-18Expose API for hardware unique ID (#16869)Joel Challis
2022-03-19HD44780 driver rework (#16370)Ryan
2022-03-10Force platform pin defs to be included (#16611)Joel Challis
* Force platform pin defs to be included * Always grab first header
2022-03-04Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-03-04analog.[ch]: remove unnecessary includes (#16471)Ryan
2022-02-26[Core] Squeeze AVR some more with `-mrelax` and `-mcall-prologues` (#16269)Stefan Kerkmann
2022-02-12Format code according to conventions (#16322)QMK Bot
2022-02-05Followup to #16220, more test error output. (#16221)Nick Brassel
2022-02-05Initial migration of suspend callbacks (#16067)Joel Challis
* Initial migration of suspend logic * Add header
2022-02-03Create a build error if no bootloader is specified. (#16181)Nick Brassel
* 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>
2022-01-26Deprecate split transactions status field (#16023)Stefan Kerkmann
2022-01-26Remove unused suspend_idle (#16063)Joel Challis