From 2013b000b2e4b9d02f23b1322c64e99c672bae52 Mon Sep 17 00:00:00 2001 From: Benjamin Vanheuverzwijn Date: Sun, 8 Jun 2014 09:51:04 -0700 Subject: [PATCH] Fix a typo in a MPSSE command in ftdi.h There is a typo in ftdi.h for the CLK_BYTES_OR_LOW define. It should be 0x9d and not 0x0d. --- src/ftdi.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/ftdi.h b/src/ftdi.h index 0f5897c..07fcd71 100644 --- a/src/ftdi.h +++ b/src/ftdi.h @@ -118,7 +118,7 @@ enum ftdi_module_detach_mode #define EN_ADAPTIVE 0x96 #define DIS_ADAPTIVE 0x97 #define CLK_BYTES_OR_HIGH 0x9c -#define CLK_BYTES_OR_LOW 0x0d +#define CLK_BYTES_OR_LOW 0x9d /*FT232H specific commands */ #define DRIVE_OPEN_COLLECTOR 0x9e /* Value Low */ -- 1.7.1