| Index: target/stm32746g-eval2/lcd.c
|
| diff --git a/target/stm32746g-eval2/lcd.c b/target/stm32746g-eval2/lcd.c
|
| index ea61b396067094482ab9e80a86865726275b241e..940520fbbdc538e321a74add928c50fae92f858a 100644
|
| --- a/target/stm32746g-eval2/lcd.c
|
| +++ b/target/stm32746g-eval2/lcd.c
|
| @@ -48,6 +48,7 @@
|
| ******************************************************************************
|
| */
|
|
|
| +#include <assert.h>
|
| #include <err.h>
|
| #include <debug.h>
|
| #include <trace.h>
|
| @@ -429,3 +430,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;
|
| +}
|
|
|