diff options
author | inmarket <inmarket@ugfx.io> | 2017-08-13 20:30:31 +1000 |
---|---|---|
committer | inmarket <inmarket@ugfx.io> | 2017-08-13 20:30:31 +1000 |
commit | 422e95becf719ab3dfc3e37d5fda1b6f37dd02fb (patch) | |
tree | ad763a34bac5ca0b11567e3234098a34e67b397f /drivers/gdisp | |
parent | f410b5772005a35bae24e3ca403e14a60f8a41e8 (diff) | |
download | uGFX-422e95becf719ab3dfc3e37d5fda1b6f37dd02fb.tar.gz uGFX-422e95becf719ab3dfc3e37d5fda1b6f37dd02fb.tar.bz2 uGFX-422e95becf719ab3dfc3e37d5fda1b6f37dd02fb.zip |
UC8173 board template fix
Diffstat (limited to 'drivers/gdisp')
-rw-r--r-- | drivers/gdisp/UC8173/board_UC8173_template.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gdisp/UC8173/board_UC8173_template.h b/drivers/gdisp/UC8173/board_UC8173_template.h index dde70771..b5fd36fe 100644 --- a/drivers/gdisp/UC8173/board_UC8173_template.h +++ b/drivers/gdisp/UC8173/board_UC8173_template.h @@ -28,9 +28,10 @@ static UC8173Lut UC8173_ModeTable[] = { // Add extra lines for other waveforms }; -static GFXINLINE void init_board(GDisplay* g) +static GFXINLINE bool_t init_board(GDisplay* g) { (void) g; + return TRUE; } static GFXINLINE void post_init_board(GDisplay* g) |