Fix missing init function for GMISC

ugfx_release_2.6
inmarket 2013-07-16 15:29:59 +10:00
parent 83897ac07a
commit 6fe793da88
2 changed files with 22 additions and 1 deletions

20
src/gmisc/gmisc.c 100644
View 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 */

View File

@ -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