summaryrefslogtreecommitdiff
path: root/platforms/chibios/bootloaders
AgeCommit message (Collapse)Author
2023-07-09drivers: remove direct `quantum.h` includes (#21473)Ryan
2023-07-04Fixup STM32-DFU (#21447)Nick Brassel
2023-06-28STM32H723 support (#21352)Nick Brassel
2023-01-31Remove usages of config_common.h from config.h files. (#19714)Nick Brassel
2023-01-15Add mmoskal/uf2-stm32f103 bootloader support (#19594)Joel Challis
2022-07-11[Core] Use polled waiting on ChibiOS platforms that support it (#17607)Stefan Kerkmann
* 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
2022-06-30[Core] Add Raspberry Pi RP2040 support (#14877)Stefan Kerkmann
* 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>
2022-05-30Make bootloader_jump for dualbank STM32 respect ↵Thomas Preisner
STM32_BOOTLOADER_DUAL_BANK_DELAY (#17178)
2022-05-14[Core] Add Reboot keycode to core (#15990)Drashna Jaelre
2022-04-19[CI] Format code according to conventions (#16888)QMK Bot
2022-04-19Update wb32-dfu (#16438)Joy Lee
2022-02-12Format code according to conventions (#16322)QMK Bot
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-15Fix broken bootloader builds in develop. (#15880)Dasky
2022-01-06Fixes for bootloader refactor build failures (#15638)Ryan
2021-12-27Format code according to conventions (#15593)QMK Bot
2021-12-27Refactor `bootloader_jump()` implementations (#15450)Ryan
* Refactor `bootloader_jump()` implementations * Fix tests? * Rename `atmel-samba` to `md-boot`