micropython/ports/nrf/modules/machine
robert-hh cc0249c936 nrf/modules/machine/uart: Implement uart.flush() and uart.txdone().
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.
2022-08-31 00:18:40 +10:00
..
adc.c
adc.h
i2c.c
i2c.h
modmachine.c nrf/modmachine: Add machine.idle() function. 2022-07-08 12:37:59 +10:00
modmachine.h nrf/modmachine: Add machine.bootloader() and make it customisable. 2022-06-17 13:37:44 +10:00
pin.c nrf: Use MP_REGISTER_ROOT_POINTER(). 2022-07-18 13:50:34 +10:00
pin.h
pwm.c
pwm.h
rtcounter.c
rtcounter.h
spi.c py/objstr: Split mp_obj_str_from_vstr into bytes/str versions. 2022-08-26 16:43:55 +10:00
spi.h
temp.c
temp.h
timer.c
timer.h
uart.c nrf/modules/machine/uart: Implement uart.flush() and uart.txdone(). 2022-08-31 00:18:40 +10:00
uart.h