Skip to content
Snippets Groups Projects
Commit 2435c608 authored by Tanguy Pruvot's avatar Tanguy Pruvot Committed by Scott Lahteine
Browse files

STM32F1: AUTO_BED_LEVELING_UBL build fixes (#15240)

parent ae7ae89b
Branches
Tags
No related merge requests found
......@@ -58,6 +58,9 @@
//#define strchr_P(s,c) strchr(s,c)
#endif
#ifndef snprintf_P
#define snprintf_P snprintf
#endif
#ifndef vsnprintf_P
#define vsnprintf_P vsnprintf
#endif
......
......@@ -75,7 +75,9 @@ extern uint8_t marlin_debug_flags;
#define SERIAL_PRINTF(V...) SERIAL_OUT(printf, V)
#define SERIAL_FLUSH() SERIAL_OUT(flush)
#if TX_BUFFER_SIZE > 0
#ifdef __STM32F1__
#define SERIAL_FLUSHTX() SERIAL_OUT(flush)
#elif TX_BUFFER_SIZE > 0
#define SERIAL_FLUSHTX() SERIAL_OUT(flushTX)
#else
#define SERIAL_FLUSHTX()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment