Explorar el Código

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

teensy4-core
PaulStoffregen hace 11 años
padre
commit
603afcc984
Se han modificado 3 ficheros con 6 adiciones y 6 borrados
  1. +2
    -2
      teensy3/serial1.c
  2. +2
    -2
      teensy3/serial2.c
  3. +2
    -2
      teensy3/serial3.c

+ 2
- 2
teensy3/serial1.c Ver fichero



head = tx_buffer_head; head = tx_buffer_head;
tail = tx_buffer_tail; 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) int serial_available(void)

+ 2
- 2
teensy3/serial2.c Ver fichero



head = tx_buffer_head; head = tx_buffer_head;
tail = tx_buffer_tail; 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) int serial2_available(void)

+ 2
- 2
teensy3/serial3.c Ver fichero



head = tx_buffer_head; head = tx_buffer_head;
tail = tx_buffer_tail; 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) int serial3_available(void)

Cargando…
Cancelar
Guardar