zmk/app/src/split
Solodros 36dbf46764
fix(split): correct async UART RX buffer definition (#3193)
The RX buffer was previously defined as [RX_BUFFER_SIZE/2][2], which
created (RX_BUFFER_SIZE/2) small 2-byte buffers instead of the two
(RX_BUFFER_SIZE/2)-byte buffers required for DMA ping-pong operation.

Update the buffer definition to [2][RX_BUFFER_SIZE/2] and apply the
fix to both the central and peripheral wired split implementations.

This prevents potential DMA RX data corruption when using async UART.
2026-01-07 17:04:52 -05:00
..
bluetooth feat!: Move to zephyr v4.1 (#3060) 2025-12-09 19:43:22 -05:00
wired fix(split): correct async UART RX buffer definition (#3193) 2026-01-07 17:04:52 -05:00
CMakeLists.txt Feature: Full-Duplex Wired Split (#2766) 2025-03-18 02:48:32 -04:00
Kconfig fix(split): Enable wired split by default if DTS is set (#3010) 2025-07-30 13:43:46 -04:00
Kconfig.defaults Feature: Full-Duplex Wired Split (#2766) 2025-03-18 02:48:32 -04:00
central.c feat(split): Runtime selection of split transport (#2886) 2025-06-16 03:45:25 -04:00
peripheral.c fix(split): Properly return from command handler (#3120) 2025-12-06 23:09:31 -05:00