mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
* Order patch application Per discussion with @demarchi this PR adds ordering to the patch application. This alos add some encoding 00000 series - is for px4 non up streamable changes 60000 (bp) series - is for back ports 90000 series - is for wip that shold make it upstream * Restore 00010-workarround-for-flash-data-cache-corruption Extract this from the 90000-wip-inflight-to-upstream.patch and orders it. * Moved upstreamed 0dbf44e flash fix to bp patch * Moved upstreamed 5481087 cdcacm fix to bp patch * Moved upstreamed ec85425 STM32F7 copy paste errors to bp patch * Moved upstreamed 20e7237 HSI should not be turned off to bp patch * Moved upstreamed ca895b9 Adding missing CONFIG_ prefix to bp patch * Moved upstreamed 169b398 STM32: Fixes the bkp reference counter issue to bp patch * Moved upstreamed 550d259 STM32F7: Fixes the bkp reference counter issue to bp patch * Moved upstreamed 02825f3 STM32F3X: Add missing STM32_BKP_BASE to bp patch * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Renamed for ordering and classification * Order Patches by Name
18 lines
664 B
Diff
18 lines
664 B
Diff
diff --git NuttX/nuttx/drivers/usbdev/cdcacm.c NuttX/nuttx/drivers/usbdev/cdcacm.c
|
|
index 64e2e68..15f92dd 100644
|
|
--- NuttX/nuttx/drivers/usbdev/cdcacm.c
|
|
+++ NuttX/nuttx/drivers/usbdev/cdcacm.c
|
|
@@ -243,6 +243,12 @@ static const struct uart_ops_s g_uartops =
|
|
#ifdef CONFIG_SERIAL_IFLOWCONTROL
|
|
cdcuart_rxflowcontrol, /* rxflowcontrol */
|
|
#endif
|
|
+#ifdef CONFIG_SERIAL_DMA
|
|
+ NULL, /* dmasend */
|
|
+ NULL, /* dmareceive */
|
|
+ NULL, /* dmarxfree */
|
|
+ NULL, /* dmatxavail */
|
|
+#endif
|
|
NULL, /* send */
|
|
cdcuart_txint, /* txinit */
|
|
NULL, /* txready */
|