We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4241fd4 commit b42e94eCopy full SHA for b42e94e
ports/raspberrypi/common-hal/busio/UART.c
@@ -54,6 +54,7 @@ void common_hal_busio_uart_construct(busio_uart_obj_t *self,
54
uint32_t baudrate, uint8_t bits, busio_uart_parity_t parity, uint8_t stop,
55
mp_float_t timeout, uint16_t receiver_buffer_size, byte* receiver_buffer,
56
bool sigint_enabled) {
57
+ mp_raise_NotImplementedError(translate("UART not yet supported"));
58
59
// Sercom* sercom = NULL;
60
// uint8_t sercom_index = 255; // Unset index
0 commit comments