Fix missing init function for GMISC
This commit is contained in:
parent
83897ac07a
commit
6fe793da88
2 changed files with 22 additions and 1 deletions
20
src/gmisc/gmisc.c
Normal file
20
src/gmisc/gmisc.c
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/*
|
||||||
|
* This file is subject to the terms of the GFX License. If a copy of
|
||||||
|
* the license was not distributed with this file, you can obtain one at:
|
||||||
|
*
|
||||||
|
* http://chibios-gfx.com/license.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file src/gmisc/gmisc.c
|
||||||
|
* @brief GMISC Functions.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "gfx.h"
|
||||||
|
|
||||||
|
#if GFX_USE_GMISC
|
||||||
|
|
||||||
|
void _gmiscInit(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* GFX_USE_GMISC */
|
|
@ -1,2 +1,3 @@
|
||||||
GFXSRC += $(GFXLIB)/src/gmisc/arrayops.c \
|
GFXSRC += $(GFXLIB)/src/gmisc/gmisc.c \
|
||||||
|
$(GFXLIB)/src/gmisc/arrayops.c \
|
||||||
$(GFXLIB)/src/gmisc/trig.c
|
$(GFXLIB)/src/gmisc/trig.c
|
||||||
|
|
Loading…
Add table
Reference in a new issue