Fixed definition os stop bits in FTD2xx library

Updated STOP_BITS_1 to be 1 instead of 0
This commit is contained in:
Hayley 2019-06-13 14:41:45 -05:00
parent 2d66da14a4
commit 6965a87b9f

View file

@ -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
//