summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired
Commit message (Collapse)AuthorAgeFilesLines
...
| * Update README.md for teensy lc onekey (#17797)Diogo Sergio2022-07-251-5/+3
| |
* | Remove full bootmagic config (#17702)Joel Challis2022-07-191-6/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-178-0/+574
|\|
| * [Keyboard] Handwired Maltron DQz11N1G contoured keyboard (#17237)David Kühling2022-07-178-0/+574
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Basic support for Maltron DQz11N1G controller replacement. * Update keyboards/handwired/dqz11n1g/rules.mk * Rehost images to cubeupload.com. (They were previously hosted via github wiki) * Apply suggestions from noroadsleft code review * Update keyboards/handwired/dqz11n1g/dqz11n1g.h
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-172-12/+0
|\|
| * Remove full bootmagic config (#17701)Joel Challis2022-07-172-12/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-141-22/+10
|\|
| * [Keyboard] Fix Tractyl Manuform 4x6 json (#17681)Drashna Jaelre2022-07-141-23/+11
| |
* | [Core] PMW33XX drivers overhaul (#17613)Stefan Kerkmann2022-07-146-14/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PMW33XX drivers overhaul This combines the PMW3389 and PM3360 drivers as they only differ in the firmware blobs and CPI get and set functions. The following changes have been made: * PMW3389 now gets the same multi-sensor feature that is already available on the PMW3360. * Introduced a shared pmw33xx_report_t struct is now directly readable via SPI transactions instead of individual byte-sized reads, saving multiple copies and bitshift operations. * pmw33(89/60)_get_report functions had unreachable branches in their motion detection logic these have been simplied as much as possible. * The fast firmware upload option has been removed as this becomes obsolete by the newly introduced polled waiting functions for ChibiOS polled waiting * PMW33(60/89)_SPI_LSBFIRST and PMW33(60/89)_SPI_MODE config options have been removed as they don't need to be configurable. * All PMW3389 and PMW3360 defines have been unified to a PMW33XX prefix to reduce code duplication and make the defines interchangeable * Adjust keyboards to PMW33XX naming scheme
* | [Core] Use polled waiting on ChibiOS platforms that support it (#17607)Stefan Kerkmann2022-07-117-2/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use polled waiting on platforms that support it Due to context switching overhead waiting a very short amount of time on a sleeping thread is often not accurate and in fact not usable for timing critical usage i.e. in a driver. Thus we use polled waiting for ranges in the us range on platforms that support it instead. The fallback is the thread sleeping mechanism. This includes: * ARM platforms with CYCCNT register (ARMv7, ARMv8) this is incremented at CPU clock frequency * GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at CPU clock frequency * RP2040 ARMv6 port which uses the integrated timer peripheral which is incremented with a fixed 1MHz frequency * Use wait_us() instead of chSysPolledDelayX ...as it is powered by busy waiting now. * Add chibios waiting methods test bench
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-0717-50/+14
|\|
| * [Keyboard] Clean up dactyl manuform unused files (#15890)Bartosz Nowak2022-07-0717-50/+14
| |
* | [Fix] Patches after printf library update (#17584)Stefan Kerkmann2022-07-071-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | * Add missing '(' to print_bin_reverse32 declaration * Fix insufficient character buffers on satisfaction75 * Remove \0 character in format string and use corrected offset math instead on rocketboard 16 * Replace snprintf_ with snprintf for djinn * Explicitly ignore format checks for tracktyl manuform that uses %b specifier * Print properly escaped version string in command.c, as PRODUCT or other defines can contain constructs like 'Vendor keyboard 66%' which will be interpreted as a format specifier
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-032-15/+10
|\|
| * [Keymap] Updates to drashna Keymaps and Userspace (#17543)Drashna Jaelre2022-07-022-15/+10
| |
* | Tentative Teensy 3.5 support (#14420)Ryan2022-07-035-0/+146
| | | | | | | | | | | | | | | | | | | | | | * Tentative Teensy 3.5 support * Set firmware format to .hex for ARM Teensys * Got to "device descriptor failed" by comparing with Teensy 3.6 code * Drop down to 96MHz... * Bump back up to 120MHz
* | [Keyboard] Update Charybdis code for Extended Mouse reports (#17435)Drashna Jaelre2022-07-021-3/+2
| |
* | [Keyboard] Move/Rename to Hillside48, simplify default keymap (#17210)mmccoyd2022-07-0215-348/+302
| | | | | | Co-authored-by: mmccoyd <mmccoyd@cs.berkley.edu>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-024-4/+0
|\|
| * [Keymap] Update Miryoku (#16482)Manna Harbour2022-07-024-4/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-0112-0/+12
|\|
| * Specify blackpill board files where relevant (#17521)Joel Challis2022-07-0112-0/+12
| |
* | [Core] Add Raspberry Pi RP2040 support (#14877)Stefan Kerkmann2022-06-304-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Disable RESET keycode because of naming conflicts * Add Pico SDK as submodule * Add RP2040 build support to QMK * Adjust USB endpoint structs for RP2040 * Add RP2040 bootloader and double-tap reset routine * Add generic and pro micro RP2040 boards * Add RP2040 onekey keyboard * Add WS2812 PIO DMA enabled driver and documentation Supports regular and open-drain output configuration. RP2040 GPIOs are sadly not 5V tolerant, so this is a bit use-less or needs extra hardware or you take the risk to fry your hardware. * Adjust SIO Driver for RP2040 * Adjust I2C Driver for RP2040 * Adjust SPI Driver for RP2040 * Add PIO serial driver and documentation * Add general RP2040 documentation * Apply suggestions from code review Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Nick Brassel <nick@tzarc.org>
* | Do not enable PERMISSIVE_HOLD when TAPPING_TERM exceeds 500ms (#15674)precondition2022-06-243-0/+3
| |
* | Make default layer size 16-bit (#15286)Drashna Jaelre2022-06-197-12/+12
| | | | | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-06-171-2/+2
|\|
| * Fixup handwired/macroboard (#17405)jack2022-06-171-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-06-1610-68/+233
|\|
| * [handwired/macroboard] Add separate f401 and f411 configs… (#16338)Michał Szczepaniak2022-06-1610-68/+233
| | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* | tap-dance: Restructure code and document in more detail (#16394)Jouke Witteveen2022-06-132-6/+6
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-06-086-0/+46
|\|
| * Add WB32 evaluation board onekey targets. (#17330)Nick Brassel2022-06-086-0/+46
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-06-022-4/+0
|\|
| * Fix lint errors (#17293)Joel Challis2022-06-022-4/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-06-021-1/+1
|\|
| * keyboards: fix malformed info.json files (#17292)Ryan Skidmore2022-06-021-1/+1
| |
* | Removes terminal from QMK. (#17258)Nick Brassel2022-05-305-5/+5
|/
* [Keymap] Drashna update for post Q2 merge (#17241)Drashna Jaelre2022-05-306-27/+41
|
* Fix API errors (#17239)Joel Challis2022-05-302-3/+29
|
* Refactor legacy quantum keycodes in default-ish keymaps (#17150)Joel Challis2022-05-274-6/+6
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-05-252-1/+19
|\
| * Small update to Symmetric70 keyboard readme (#17188)Takeshi ISHII2022-05-252-1/+19
| | | | | | Added a little description to reademe.md under `handwired/symmetric70_proto/{matrix_debug|matrix_fast}`.
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-05-171-2/+149
|\|
| * DigiCarpice Configurator Rendering Fix (#17113)James Young2022-05-171-2/+149
| | | | | | | | | | * info.json: apply friendly formatting * info.json: rebuild layout data
* | RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-15100-121/+121
| |
* | Rename keymap_extras headers for consistency (#16939)Ryan2022-05-153-4/+4
| |
* | [Feature] Add support for multiple switchs/solenoids to Haptic Feedback ↵Drashna Jaelre2022-05-153-0/+17
| | | | | | | | engine (#15657)
* | [Core] Add Reboot keycode to core (#15990)Drashna Jaelre2022-05-141-0/+5
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-05-118-278/+0
|\|
| * [Keyboard] remove handwired/reddot as per #14211 (#17033)Vino Rodrigues2022-05-118-278/+0
| |