We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2591a2b commit 54bde38Copy full SHA for 54bde38
nrfx/drivers/src/nrfx_uarte.c
@@ -66,7 +66,11 @@
66
#define MIN_RX_CACHE_SIZE 8
67
// There is a HW bug which results in RX amount value not being updated when FIFO was empty.
68
// It is then hard to determine if FIFO contained anything or not.
69
+#if defined(CONFIG_SOC_SERIES_BSIM_NRFXX)
70
+#define USE_WORKAROUND_FOR_FLUSHRX_ANOMALY 0
71
+#else
72
#define USE_WORKAROUND_FOR_FLUSHRX_ANOMALY 1
73
+#endif
74
75
// Size of the RX HW FIFO
76
#define UARTE_HW_RX_FIFO_SIZE 5
0 commit comments