Browse Source

Avoid possible race condition

Remove possible race condition in setting and clearing transmitting.
Not from direct handling of this interrupt, but maybe another interrupt
happens right after we set UDR1, which by the time it finishes, the
transmit complete interrupt happens which clears it and returns and we
set transmitting.
main
Kurt Eckhardt 8 years ago
parent
commit
9aa92c1c38
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      teensy/HardwareSerial.cpp

+ 5
- 1
teensy/HardwareSerial.cpp View File

#endif #endif
{ {
uint8_t i; uint8_t i;
uint8_t status;


if (!(UCSR1B & (1<<TXEN1))) { if (!(UCSR1B & (1<<TXEN1))) {
#if ARDUINO >= 100 #if ARDUINO >= 100
// to the data register and be done. This shortcut helps // to the data register and be done. This shortcut helps
// significantly improve the effective datarate at high (> // significantly improve the effective datarate at high (>
// 500kbit/s) bitrates, where interrupt overhead becomes a slowdown. // 500kbit/s) bitrates, where interrupt overhead becomes a slowdown.
if (tx_buffer_head == tx_buffer_tail && bit_is_set(UCSR1A, UDRE1)) {
if ((tx_buffer_head == tx_buffer_tail) && (UCSR1A & (1<<UDRE1))) {
status = SREG;
cli();
UDR1 = c; UDR1 = c;
transmitting = 1; transmitting = 1;
SREG = status;
return 1; return 1;
} }



Loading…
Cancel
Save