X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/292a631b62dc06454447110f54757cc2236b6e08..3a03da970558de9211fc1a43b12bf69e38854d09:/Projects/XPLAINBridge/Lib/SoftUART.h diff --git a/Projects/XPLAINBridge/Lib/SoftUART.h b/Projects/XPLAINBridge/Lib/SoftUART.h index 7203b3a0d..923631b50 100644 --- a/Projects/XPLAINBridge/Lib/SoftUART.h +++ b/Projects/XPLAINBridge/Lib/SoftUART.h @@ -30,6 +30,11 @@ this software. */ +/** \file + * + * Header file for SoftUART.c. + */ + #ifndef _SOFT_UART_ #define _SOFT_UART_ @@ -55,8 +60,8 @@ { uint16_t BitTime = ((F_CPU / Baud) - 1); - OCR1A = BitTime; - OCR3A = BitTime; + ICR1 = BitTime; + ICR3 = BitTime; } /* Function Prototypes: */