Update Doxygen documentation build scripts to fail if any warnings are generated.
[pub/USBasp.git] / Projects / AVRISP-MKII / Lib / XPROG / XPROGTarget.c
index ede2362..b50ffbd 100644 (file)
@@ -155,9 +155,6 @@ uint8_t XPROGTarget_ReceiveByte(void)
        /* Wait until a byte has been received before reading */
        while (!(UCSR1A & (1 << RXC1)) && !(TimeoutExpired));
 
-       /* Byte of data received - reset the timeout */
-       wdt_reset();
-
        return UDR1;
 }