@@ -128,9 +128,6 @@ uint8_t UPDI_io::get() {
128
128
" WaitStart: \n\t "
129
129
" sbic %[uart_port], %[uart_pin] \n\t "
130
130
" rjmp WaitStart \n\t "
131
- // all that stuff with the timer will add 4 cycles on a classic AVR and 3 on a XAVR.
132
- // so thhe "scatter" introduced by this will be in the range 0~6 or 0~5 ias opposed to
133
- // 0~2 like it was before.
134
131
135
132
// skew into middle of bit
136
133
" ldi r18, %[rxdelay] /2 + 6/3 \n\t " // 0.5 bit cycle delay -
@@ -184,8 +181,8 @@ uint8_t UPDI_io::put(char c) {
184
181
" ldi r19, 0x78 \n\t " // High nibble: bits counter (8); Low nibble: parity accumulator
185
182
186
183
// pre delay (stop bits from previous sent byte)
187
- // ~2x bit time
188
- " delay %[txdelay] + (%[txdelay]/2) \n\t "
184
+ // Note that pre-delay and stop bit edge rise delay should add up to ~2x bit time
185
+ " delay %[txdelay] + (%[txdelay] + 1)/2 \n\t "
189
186
190
187
// start bit
191
188
" cbi %[uart_port], %[uart_pin] \n\t "
@@ -216,7 +213,8 @@ uint8_t UPDI_io::put(char c) {
216
213
// edge rise delay
217
214
// we must give some time for the stop bit edge to rise before changing the data pin to input
218
215
// this is because of possible parasitic capacitance affecting the UPDI line
219
- " delay %[txdelay] /2 \n\t "
216
+ // Note that pre-delay and stop bit edge rise delay should add up to ~2x bit time
217
+ " delay (%[txdelay] + 1)/2 \n\t "
220
218
221
219
:
222
220
: [uart_port] " i" (_SFR_IO_ADDR (PORT (UPDI_PORT))),
0 commit comments