X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/dfe50ff34970eda173cafbb3d636a5f7bedc87bd..bea72a8412f99b294c00341fa16a8308bcc66f15:/Projects/XPLAINBridge/Lib/SoftUART.h diff --git a/Projects/XPLAINBridge/Lib/SoftUART.h b/Projects/XPLAINBridge/Lib/SoftUART.h index d0b03c04b..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,11 +60,11 @@ { uint16_t BitTime = ((F_CPU / Baud) - 1); - OCR1A = BitTime; - OCR3A = BitTime; + ICR1 = BitTime; + ICR3 = BitTime; } /* Function Prototypes: */ - void SoftUART_Init(void); + void SoftUART_Init(void); #endif \ No newline at end of file