summaryrefslogtreecommitdiff
path: root/keyboards/handwired/onekey
AgeCommit message (Collapse)Author
2023-04-03Merge remote-tracking branch 'upstream/master' into developfauxpark
2023-04-03onekey: Fix console output on AVR (#19930)Sergey Vlasov
2023-03-26Move `WS2812_DRIVER` to data driven (#20248)Ryan
2023-03-20Clean up APA102 config and add DD mapping (#20159)Ryan
2023-03-19Fixup CI build for F103C6 onekey. (#20188)Nick Brassel
2023-02-21Add some missing `#pragma once`s (#19902)Ryan
2023-02-07Remove unused Bootmagic row/col defines from config.h (#19761)Ryan
2023-02-03Remove unused `MATRIX_HAS_GHOST` from config.h (#19726)Ryan
2023-01-31Remove usages of config_common.h from config.h files. (#19714)Nick Brassel
2023-01-29Remove deprecated Quantum keycodes (#19712)Ryan
2023-01-20Fix functions with empty params (#19647)Ryan
* Fix functions with empty params * Found a bunch more
2023-01-19Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-01-19Fixup ChibiOS header inclusion search ordering. (#19623)Nick Brassel
* Add STM32F446-Nucleo onekey. * Fixup onekey build for F446, all keymaps. * Fixup board inclusion search ordering.
2023-01-19Add analog support for RP2040 (#19453)Sergey Vlasov
Co-authored-by: Ryan <fauxpark@gmail.com>
2023-01-15Add mmoskal/uf2-stm32f103 bootloader support (#19594)Joel Challis
2023-01-07Ignore defaults.hjson values if already set (#19511)Joel Challis
* Ignore defaults.hjson values if already set * Add warning when nothing is merged
2023-01-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-01-07Fix `handwired/onekey/kb2040` WS2812 pin (#19517)Joel Challis
2022-12-14Tap Dance: remove `qk_` prefix (#19313)Ryan
2022-12-13[Core] Quantum Painter - LVGL Integration (#18499)jpe230
Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-12-11[RP2040] update i2c drivers to reflect peripheral number (#19277)Stefan Kerkmann
2022-12-02Fixup EFL and F4's sector selection. (#19221)Nick Brassel
2022-11-27Joystick feature improvements (#19052)Ryan
2022-11-25jsonify some info.json (#19146)Joel Challis
2022-11-18Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-11-18Disable onekey console by default (#19104)Joel Challis
2022-11-12Digitizer feature improvements (#19034)Ryan
2022-11-12onekey: disable NKRO and mousekeys by default (#19038)Ryan
2022-11-01Added analog support for WB32 MCU. (#18289)Joy Lee
Co-authored-by: Joy <chang.li@westberrytech.com>
2022-10-27Remove rgblight_list.h (#18878)Ryan
* Remove rgblight_list defines with no usage * Remove rgblight_setrgb_*[_at] defines * Remove rgblight_sethsv_* defines * Remove rgblight_sethsv_noeeprom_* defines * Delete rgblight_list.h and remove all references
2022-10-27[Core] Adjust PWM hardware audio driver for RP2040 (#17723)Stefan Kerkmann
2022-10-24Normalise Joystick and Programmable Button keycodes (#18832)Ryan
2022-10-20Remove legacy EEPROM clear keycodes (#18782)Ryan
* `EEP_RST` -> `EE_CLR`, default-ish keymaps * `EEP_RST` -> `EE_CLR`, user keymaps * `EEP_RST` -> `EE_CLR`, community layouts * `EEP_RST` -> `EE_CLR`, userspace * `EEP_RST` -> `EE_CLR`, docs & core
2022-10-15Remove RGBLIGHT_ANIMATION and clean up effect defines for G-K (#18726)Drashna Jaelre
2022-10-05onekey: Enable ADC for STM32F072 Discovery (#18592)Ryan
2022-10-04[Core] PWM Backlight for RP2040 (#17706)Stefan Kerkmann
2022-10-01Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-10-01onekey: fix quine keymap (#18555)Ryan
2022-09-30onekey: enable ADC for Bluepill and Blackpill (#18545)Ryan
2022-09-30Merge remote-tracking branch 'upstream/master' into developfauxpark
2022-09-30Onekey: migrate some stuff to data driven (#18502)Ryan
2022-09-27Further refactoring of joystick feature (#18437)Ryan
2022-08-30Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler
* Add ARRAY_SIZE and CEILING utility macros * Apply a coccinelle patch to use ARRAY_SIZE * fix up some straggling items * Fix 'make test:secure' * Enhance ARRAY_SIZE macro to reject acting on pointers The previous definition would not produce a diagnostic for ``` int *p; size_t num_elem = ARRAY_SIZE(p) ``` but the new one will. * explicitly get definition of ARRAY_SIZE * Convert to ARRAY_SIZE when const is involved The following spatch finds additional instances where the array is const and the division is by the size of the type, not the size of the first element: ``` @ rule5a using "empty.iso" @ type T; const T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) @ rule6a using "empty.iso" @ type T; const T[] E; @@ - sizeof(E)/sizeof(T) + ARRAY_SIZE(E) ``` * New instances of ARRAY_SIZE added since initial spatch run * Use `ARRAY_SIZE` in docs (found by grep) * Manually use ARRAY_SIZE hs_set is expected to be the same size as uint16_t, though it's made of two 8-bit integers * Just like char, sizeof(uint8_t) is guaranteed to be 1 This is at least true on any plausible system where qmk is actually used. Per my understanding it's universally true, assuming that uint8_t exists: https://stackoverflow.com/questions/48655310/can-i-assume-that-sizeofuint8-t-1 * Run qmk-format on core C files touched in this branch Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
2022-08-24Move keyboard USB IDs and strings to data driven: develop (#18152)Ryan
* Move keyboard USB IDs and strings to data driven: develop * Also do new onekeys
2022-08-21RESET -> QK_BOOT user keymaps (#17940)Joel Challis
2022-08-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-08-20Move keyboard USB IDs and strings to data driven, pass 2: handwired (#18079)Ryan
2022-08-15Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-08-15Migrate more F4x1 board files (#18054)Joel Challis
2022-08-11Add minimal STM32F103C6 support (#17853)Sergey Vlasov
Unfortunately, the crippled versions of “Bluepill” boards with STM32F103C6xx chips instead of STM32F103C8xx are now sold all over the place, sometimes advertised in a confusing way to make the difference not noticeable until too late. Add minimal support for these MCUs in the common “Bluepill with stm32duino” configuration, so that it could be possible to make something useful from those boards (although fitting QMK into the available 24 KiB of flash may be rather hard). (In fact, I'm not sure whether the “STM32” part of the chip name is actually correct for those boards of uncertain origin, so the onekey board name is `bluepill_f103c6`; another reason for that name is to match the existing `blackpill_f401` and `blackpill_f411`.) The EEPROM emulation support is not included on purpose, because enabling it without having a working firmware size check would be irresponsible with such flash size (the chance that someone would build a firmware where the EEPROM backing store ends up overlapping some firmware code is really high). Other than that, enabling the EEPROM emulation code is mostly trivial (the `wear_leveling` driver with the `embedded_flash` backing store even works without any custom configuration, although its code is significantly larger than the `vendor` driver, which may also be important for such flash size).