summaryrefslogtreecommitdiffstats
path: root/nuttx/arch/arm/src/kinetis
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-08-19 21:33:11 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-08-19 21:33:11 +0000
commit3554f626448e8872e5bb2ab07e65c7dff14ba9e4 (patch)
treea016889450f3962073cc0692fbc0aaaf3e38e212 /nuttx/arch/arm/src/kinetis
parent493134e9a6934f2a4270cfde262b8e52208bb471 (diff)
Prep for 6.8 release
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3899 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/arm/src/kinetis')
-rw-r--r--nuttx/arch/arm/src/kinetis/kinetis_lowputc.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/nuttx/arch/arm/src/kinetis/kinetis_lowputc.c b/nuttx/arch/arm/src/kinetis/kinetis_lowputc.c
index 5529443c37..a808e09175 100644
--- a/nuttx/arch/arm/src/kinetis/kinetis_lowputc.c
+++ b/nuttx/arch/arm/src/kinetis/kinetis_lowputc.c
@@ -424,10 +424,18 @@ void kinetis_uartconfigure(uintptr_t uart_base, uint32_t baud,
putreg8(UART_PFIFO_RXFE | UART_PFIFO_TXFE, uart_base+KINETIS_UART_PFIFO_OFFSET);
#else
+ /* Otherwise, disable the FIFOs. Then the FIFOs are disable, the effective
+ * FIFO depth is 1. So set the watermarks as follows:
+ *
+ * TWFIFO[TXWATER] = 0: TDRE will be set when the number of queues bytes
+ * (1 in this case) is less than or equal to 0.
+ * RWFIFO[RXWATER] = 1: RDRF will be set when the number of queues bytes
+ * (1 in this case) is greater than or equal to 1.
+ *
/* Set the watermarks to one and disable the FIFOs */
putreg8(1, uart_base+KINETIS_UART_RWFIFO_OFFSET);
- putreg8(1, uart_base+KINETIS_UART_TWFIFO_OFFSET);
+ putreg8(0, uart_base+KINETIS_UART_TWFIFO_OFFSET);
putreg8(0, uart_base+KINETIS_UART_PFIFO_OFFSET);
#endif