Fix missing py/mpprint.h include in serial.c.

This commit is contained in:
eightycc 2025-01-16 08:18:37 -08:00
parent 6262311a08
commit f5ddfa11b4

View file

@ -9,6 +9,7 @@
#include "py/mpconfig.h"
#include "py/mphal.h"
#include "py/mpprint.h"
#include "supervisor/shared/cpu.h"
#include "supervisor/shared/display.h"
@ -34,7 +35,6 @@
#endif
#if CIRCUITPY_CONSOLE_UART
#include "py/mpprint.h"
#include "shared-bindings/busio/UART.h"
busio_uart_obj_t console_uart;