Add serial method so that lower half driver can provide RX flow control information. From Jussi Kivilinna

This commit is contained in:
Gregory Nutt
2014-05-08 09:00:33 -06:00
parent 35e94a5be4
commit 7594d8b8cf
40 changed files with 305 additions and 30 deletions
+3
View File
@@ -238,6 +238,9 @@ static const struct uart_ops_s g_uartops =
NULL, /* receive */
cdcuart_rxint, /* rxinit */
NULL, /* rxavailable */
#ifdef CONFIG_SERIAL_IFLOWCONTROL
NULL, /* rxflowcontrol */
#endif
NULL, /* send */
cdcuart_txint, /* txinit */
NULL, /* txready */
+3
View File
@@ -401,6 +401,9 @@ static const struct uart_ops_s g_uartops =
NULL, /* receive */
usbser_rxint, /* rxinit */
NULL, /* rxavailable */
#ifdef CONFIG_SERIAL_IFLOWCONTROL
NULL, /* rxflowcontrol */
#endif
NULL, /* send */
usbser_txint, /* txinit */
NULL, /* txready */