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/fca8bc15 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/fca8bc15 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/fca8bc15 Branch: refs/heads/develop Commit: fca8bc15e456e259100553fc8cfff46e15db51af Parents: 3d3f81d Author: Christopher Collins <[email protected]> Authored: Tue Aug 2 12:40:19 2016 -0700 Committer: Christopher Collins <[email protected]> Committed: Wed Aug 3 19:54:16 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/fca8bc15/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 b68e370..763002f 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 }
