[nrf52811] fix uart hwfc define in the platform config (#3606)

This commit is contained in:
Piotr Szkotak
2019-02-19 08:54:57 -08:00
committed by Jonathan Hui
parent 80c98ac824
commit 697aa0259c
@@ -73,17 +73,13 @@
#endif #endif
/** /**
* @def UART_HWFC * @def UART_HWFC_ENABLED
* *
* UART Hardware Flow Control. * Enable UART Hardware Flow Control.
*
* @brief Possible values:
* \ref NRF_UART_HWFC_ENABLED - HW Flow control enabled.
* \ref NRF_UART_HWFC_DISABLED - HW Flow control disabled.
* *
*/ */
#ifndef UART_HWFC #ifndef UART_HWFC_ENABLED
#define UART_HWFC NRF_UART_HWFC_ENABLED #define UART_HWFC_ENABLED 1
#endif #endif
/** /**