diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2021-07-02 00:24:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 08:24:08 +1000 |
commit | 117bff17ba89a70dd85163b499c262b879f52afd (patch) | |
tree | 055d7704c28711bd3c30ba8f55a2b3524395578b /build_keyboard.mk | |
parent | 47b12470e762732638a79e6752069564d6fb9649 (diff) |
[Core] Unite half-duplex and full-duplex serial drivers (#13081)
* Unite half-duplex and full-duplex serial driver.
* Add full duplex operation mode to the interrupt based driver
* Delete DMA UART based full duplex driver
* The new driver targets #11930
* Fix freezes with failing transactions in half-duplex
* Increase default serial TX/RX buffer size to 128 bytes
* Correctly use bool instead of size_t
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r-- | build_keyboard.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index 4c4ff3b5fd..38ca2aaa99 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -237,6 +237,7 @@ ifdef MCU_FAMILY PLATFORM=CHIBIOS PLATFORM_KEY=chibios FIRMWARE_FORMAT?=bin + OPT_DEFS += -DMCU_$(MCU_FAMILY) else ifdef ARM_ATSAM PLATFORM=ARM_ATSAM PLATFORM_KEY=arm_atsam |