mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2026-03-17 09:24:37 +01:00
Fixed definition os stop bits in FTD2xx library
Updated STOP_BITS_1 to be 1 instead of 0
This commit is contained in:
parent
2d66da14a4
commit
6965a87b9f
|
|
@ -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
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in a new issue