From 6965a87b9f56f9d7bcaf279ac4074733aa745d93 Mon Sep 17 00:00:00 2001 From: Hayley Date: Thu, 13 Jun 2019 14:41:45 -0500 Subject: [PATCH] Fixed definition os stop bits in FTD2xx library Updated STOP_BITS_1 to be 1 instead of 0 --- DSP_API/include/ftd2xx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DSP_API/include/ftd2xx.h b/DSP_API/include/ftd2xx.h index 9ce773c..2c91dd1 100644 --- a/DSP_API/include/ftd2xx.h +++ b/DSP_API/include/ftd2xx.h @@ -155,7 +155,7 @@ enum { // Stop Bits // -#define FT_STOP_BITS_1 (UCHAR) 0 +#define FT_STOP_BITS_1 (UCHAR) 1 #define FT_STOP_BITS_2 (UCHAR) 2 //