From 17610b46230ff16d022e729d921e7b08f677748a Mon Sep 17 00:00:00 2001 From: SSYYL <1032789891@qq.com> Date: Mon, 10 Jan 2022 19:09:17 +0800 Subject: [PATCH] Parameters are missing --- Arduino/epd2in13_V3/epd2in13_V3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arduino/epd2in13_V3/epd2in13_V3.cpp b/Arduino/epd2in13_V3/epd2in13_V3.cpp index 20dd22c..2ad2c06 100644 --- a/Arduino/epd2in13_V3/epd2in13_V3.cpp +++ b/Arduino/epd2in13_V3/epd2in13_V3.cpp @@ -370,7 +370,7 @@ function : Sends the image buffer in RAM to e-Paper and partial refresh parameter: frame_buffer : Image data ******************************************************************************/ -void Epd::DisplayPart(const unsigned char* ) +void Epd::DisplayPart(const unsigned char* frame_buffer) { int w = (EPD_WIDTH % 8 == 0)? (EPD_WIDTH / 8 ): (EPD_WIDTH / 8 + 1); int h = EPD_HEIGHT;