From eabb27ef84c1f4eb4fb542605867e650dc72f41c Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Tue, 28 Mar 2017 20:51:15 -0300 Subject: [PATCH] Fixing TXD_pin() in IOArduino --- IOArduino.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/IOArduino.cpp b/IOArduino.cpp index c891bc5..3927fa0 100644 --- a/IOArduino.cpp +++ b/IOArduino.cpp @@ -242,11 +242,7 @@ void CIO::RXD_pin_write(bool on) void CIO::TXD_pin(bool on) { -#if defined(BIDIR_DATA_PIN) digitalWrite(PIN_TXD, on ? HIGH : LOW); -#else - digitalWrite(PIN_CLKOUT, on ? HIGH : LOW); -#endif } void CIO::LED_pin(bool on)