Skip to content

Commit 5fa804a

Browse files
committed
Update updi_io_soft.cpp
1 parent 23e03d7 commit 5fa804a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

updi_io_soft.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ uint8_t UPDI_io::get() {
128128
"WaitStart: \n\t"
129129
" sbic %[uart_port], %[uart_pin] \n\t"
130130
" 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.
134131

135132
// skew into middle of bit
136133
" ldi r18, %[rxdelay] /2 + 6/3 \n\t" // 0.5 bit cycle delay -
@@ -184,8 +181,8 @@ uint8_t UPDI_io::put(char c) {
184181
" ldi r19, 0x78 \n\t" // High nibble: bits counter (8); Low nibble: parity accumulator
185182

186183
// 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"
189186

190187
// start bit
191188
" cbi %[uart_port], %[uart_pin] \n\t"
@@ -216,7 +213,8 @@ uint8_t UPDI_io::put(char c) {
216213
// edge rise delay
217214
// we must give some time for the stop bit edge to rise before changing the data pin to input
218215
// 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"
220218

221219
:
222220
: [uart_port] "i" (_SFR_IO_ADDR(PORT(UPDI_PORT))),

0 commit comments

Comments
 (0)