From dfe18ac633c47a7cf78c90afd2293c2a32d5783b Mon Sep 17 00:00:00 2001 From: jmz52 Date: Tue, 21 Aug 2018 04:37:56 +0300 Subject: [PATCH] Fix compilation error for STM32F1 with U8GLIB_SSD1306 or U8GLIB_SH1106 enabled (#11583) The `binary.h` file required by `lcd/dogm/dogm_bitmaps.h` is not present in stm32duino environment. Binary macros are defined in `bit_constants.h` in stm32duino framework. --- Marlin/src/HAL/HAL_STM32F1/binary.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 Marlin/src/HAL/HAL_STM32F1/binary.h diff --git a/Marlin/src/HAL/HAL_STM32F1/binary.h b/Marlin/src/HAL/HAL_STM32F1/binary.h new file mode 100644 index 0000000000..70d5ead723 --- /dev/null +++ b/Marlin/src/HAL/HAL_STM32F1/binary.h @@ -0,0 +1 @@ +#include "bit_constants.h"