Procházet zdrojové kódy

Fix off-by-1 error in new Serial#.room()

main
PaulStoffregen před 10 roky
rodič
revize
603afcc984
3 změnil soubory, kde provedl 6 přidání a 6 odebrání
  1. +2
    -2
      teensy3/serial1.c
  2. +2
    -2
      teensy3/serial2.c
  3. +2
    -2
      teensy3/serial3.c

+ 2
- 2
teensy3/serial1.c Zobrazit soubor

@@ -222,8 +222,8 @@ int serial_room(void)

head = tx_buffer_head;
tail = tx_buffer_tail;
if (head >= tail) return TX_BUFFER_SIZE - head + tail;
return tail - head;
if (head >= tail) return TX_BUFFER_SIZE - 1 - head + tail;
return tail - head - 1;
}

int serial_available(void)

+ 2
- 2
teensy3/serial2.c Zobrazit soubor

@@ -183,8 +183,8 @@ int serial2_room(void)

head = tx_buffer_head;
tail = tx_buffer_tail;
if (head >= tail) return TX_BUFFER_SIZE - head + tail;
return tail - head;
if (head >= tail) return TX_BUFFER_SIZE - 1 - head + tail;
return tail - head - 1;
}

int serial2_available(void)

+ 2
- 2
teensy3/serial3.c Zobrazit soubor

@@ -177,8 +177,8 @@ int serial3_room(void)

head = tx_buffer_head;
tail = tx_buffer_tail;
if (head >= tail) return TX_BUFFER_SIZE - head + tail;
return tail - head;
if (head >= tail) return TX_BUFFER_SIZE - 1 - head + tail;
return tail - head - 1;
}

int serial3_available(void)

Načítá se…
Zrušit
Uložit