Replace internal Pipe_BytesToEPSizeMask() routine with a new version which results...
[pub/USBasp.git] / Projects / XPLAINBridge / Lib / SoftUART.h
index e54d4a9..d0b03c0 100644 (file)
@@ -42,9 +42,6 @@
                #include "LightweightRingBuff.h"
 
        /* Macros: */
-               #define BAUD       9600
-               #define BIT_TIME   (uint16_t)((F_CPU + (BAUD / 2)) / BAUD)
-
                #define SRX        PD0
                #define SRXPIN     PIND
                #define SRXPORT    PORTD
                #define STXPORT    PORTD
                #define STXDDR     DDRD
 
+       /* Inline Functions: */ 
+               static inline void SoftUART_SetBaud(const uint32_t Baud)
+               {
+                       uint16_t BitTime = ((F_CPU / Baud) - 1);
+               
+                       OCR1A = BitTime;
+                       OCR3A = BitTime;
+               }
+
        /* Function Prototypes: */
                void    SoftUART_Init(void);