Index: target/stm32f746g-disco/lcd.c |
diff --git a/target/stm32f746g-disco/lcd.c b/target/stm32f746g-disco/lcd.c |
index 3a27996494cc774339043f8864ca445ce56fa8ab..780e75b60bc61afd4471f9d8adb476d4a5951dd2 100644 |
--- a/target/stm32f746g-disco/lcd.c |
+++ b/target/stm32f746g-disco/lcd.c |
@@ -48,6 +48,7 @@ |
****************************************************************************** |
*/ |
+#include <assert.h> |
#include <err.h> |
#include <debug.h> |
#include <trace.h> |
@@ -442,3 +443,10 @@ status_t display_get_info(struct display_info *info) |
return NO_ERROR; |
} |
+ |
+status_t display_present(struct display_image *image, uint starty, uint endy) |
+{ |
+ TRACEF("display_present - not implemented"); |
+ DEBUG_ASSERT(false); |
+ return NO_ERROR; |
+} |