8000
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 b0dd0e3 commit 6b476c1Copy full SHA for 6b476c1
ports/atmel-samd/common-hal/busio/UART.c
@@ -156,8 +156,7 @@ void common_hal_busio_uart_construct(busio_uart_obj_t *self,
156
self->buffer_length = receiver_buffer_size;
157
if (NULL != receiver_buffer) {
158
self->buffer = receiver_buffer;
159
- }
160
- else {
+ } else {
161
// Initially allocate the UART's buffer in the long-lived part of the
162
// heap. UARTs are generally long-lived objects, but the "make long-
163
// lived" machinery is incapable of moving internal pointers like
0 commit comments