ftdipp_mpsse: gpio_write: fix test (missing !)

This commit is contained in:
Gwenhael Goavec-Merou 2026-03-13 07:49:29 +01:00
parent c7f65d20b5
commit 9d6cc15f51
1 changed files with 2 additions and 2 deletions

View File

@ -459,7 +459,7 @@ int FTDIpp_MPSSE::setClkFreq(uint32_t clkHZ)
_clkHZ = real_freq; _clkHZ = real_freq;
return real_freq; return (int)real_freq;
} }
int FTDIpp_MPSSE::mpsse_store(unsigned char c) int FTDIpp_MPSSE::mpsse_store(unsigned char c)
@ -710,7 +710,7 @@ bool FTDIpp_MPSSE::gpio_write(uint8_t gpio, bool low_pins)
else else
_cable.bit_high_val = gpio; _cable.bit_high_val = gpio;
if (__gpio_write(low_pins)) if (!__gpio_write(low_pins))
return false; return false;
return (mpsse_write() >= 0); return (mpsse_write() >= 0);
} }