olimex-e407 - UART flow control.
Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/d6e6a6b3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/d6e6a6b3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/d6e6a6b3 Branch: refs/heads/sterly_refactor Commit: d6e6a6b305c0714688c4b60ce150ed56b37c1ba8 Parents: c09231e Author: Christopher Collins <[email protected]> Authored: Tue Aug 2 12:40:19 2016 -0700 Committer: Sterling Hughes <[email protected]> Committed: Tue Aug 9 16:05:21 2016 -0700 ---------------------------------------------------------------------- hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/d6e6a6b3/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c ---------------------------------------------------------------------- diff --git a/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c b/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c index b10bad9..c0020e0 100644 --- a/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c +++ b/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c @@ -32,8 +32,8 @@ static const struct stm32f4_uart_cfg uart_cfg[UART_CNT] = { .suc_rcc_dev = RCC_APB2ENR_USART6EN, .suc_pin_tx = 38, .suc_pin_rx = 39, - .suc_pin_rts = -1, - .suc_pin_cts = -1, + .suc_pin_rts = 34, + .suc_pin_cts = 35, .suc_pin_af = GPIO_AF8_USART6, .suc_irqn = USART6_IRQn }
