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

This commit is contained in:
Piotr Szkotak
2019-02-19 17:54:57 +01:00
committed by Jonathan Hui
parent 80c98ac824
commit 697aa0259c
@@ -73,17 +73,13 @@
#endif
/**
* @def UART_HWFC
* @def UART_HWFC_ENABLED
*
* 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.
* Enable UART Hardware Flow Control.
*
*/
#ifndef UART_HWFC
#define UART_HWFC NRF_UART_HWFC_ENABLED
#ifndef UART_HWFC_ENABLED
#define UART_HWFC_ENABLED 1
#endif
/**