1. 08 Sep, 2022 10 commits
  2. 06 Sep, 2022 8 commits
  3. 05 Sep, 2022 9 commits
  4. 31 Aug, 2022 4 commits
  5. 30 Aug, 2022 9 commits
    • hoihu's avatar
      rp2/mbedtls: Fix missing time.h include. · 85a25895
      hoihu authored
      85a25895
    • robert-hh's avatar
    • robert-hh's avatar
      cc3200/mods/pybuart: Implement uart.flush() and uart.txdone(). · a39b88f0
      robert-hh authored
      uart.flush()
      
      flush() will wait until all characters have been sent.
      To avoid a permanent lock, a timeout applies depending on the
      size of FIFO and the baud rate.
      
      ret = uart.txdone()
      
      ret is True if no transfer is in progress.
      ret is False otherwise.
      a39b88f0
    • robert-hh's avatar
      nrf/modules/machine/uart: Implement uart.flush() and uart.txdone(). · cc0249c9
      robert-hh authored
      Since uart.write() of the nrf port waits until all bytes but the last
      one have been sent, uart.flush() and uart.txdone() are implemented
      as empty functions to provide API consistency.
      
      uart.flush()
      
      flush() will always return immediately, even if the last byte
      may still be sent.
      
      ret = uart.txdone()
      
      uart.txdone() will always return True, even if the last byte
      may still be sent.
      cc0249c9
    • robert-hh's avatar
      stm32/machine_uart: Implement uart.flush() and uart.txdone(). · 8ea6fefc
      robert-hh authored
      Since uart.write() of the STM32 port waits until all bytes have
      been sent, uart.flush() and uart.txdone() are implemented as empty
      functions to provide API consistency.
      
      uart.flush()
      
      flush() will always return immediately.
      
      ret = uart.txdone()
      
      uart.txdone() will always return True.
      8ea6fefc
    • robert-hh's avatar
      esp8266/machine_uart: Implement uart.flush() and uart.txdone(). · 8804993d
      robert-hh authored
      uart.flush()
      
      flush() will wait until all characters but the last one have been sent.
      It returns while the last character is sent. If needed, the calling
      code has to add one character wait time. To avoid a permanent lock,
      a timeout applies depending on the size of the FIFO and the baud rate.
      
      ret = uart.txdone()
      
      ret is True if no transfer is in progress. It returns already True when
      the last byte of a transfer is sent.
      ret is False otherwise.
      8804993d
    • robert-hh's avatar
      mimxrt/machine_uart: Implement uart.flush() and uart.txdone(). · 49e17c8b
      robert-hh authored
      uart.flush()
      
      flush() will wait until all characters have been sent.To avoid a
      permanent lock, a timeout applies depending on the size of txbuf
      and the baud rate.
      
      ret = uart.txdone()
      
      ret is True if no transfer is in progress.
      ret is False otherwise.
      49e17c8b
    • robert-hh's avatar
      esp32/machine_uart: Implement uart.flush() and uart.txdone(). · 5466f1b0
      robert-hh authored
      uart.flush()
      
      flush() will wait until all characters have been sent.To
      avoid a permanent lock, a timeout applies depending on the
      size of txbuf and the baud rate.
      
      ret = uart.txdone()
      
      ret is True if no transfer is in progress.
      ret is False otherwise.
      5466f1b0
    • robert-hh's avatar
      rp2/machine_uart: Implement uart.flush() and uart.txdone(). · 2488311d
      robert-hh authored
      uart.flush()
      
      flush() will wait until all characters have been sent. It may return
      while the last character is sent. if needed, the calling code has to
      add one character wait time. To avoid a permanent lock, a timeout
      applies depending on the size of txbuf and the baud rate.
      
      ret = uart.txdone()
      
      ret is True if no transfer is in progress. It may return True if the
      last byte of a transfer is sent.
      ret is False otherwise.
      2488311d