2013-05-01 23:53:28 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
2013-02-28 23:04:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/gfx.h
|
|
|
|
* @brief GFX system header file.
|
|
|
|
*
|
|
|
|
* @addtogroup GFX
|
2013-07-21 20:02:57 +00:00
|
|
|
*
|
|
|
|
* @brief Main module to glue all the others together
|
|
|
|
*
|
2013-02-28 23:04:52 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GFX_H
|
|
|
|
#define _GFX_H
|
|
|
|
|
2013-05-24 15:26:52 +00:00
|
|
|
/**
|
|
|
|
* These two definitions below are required before anything else so that we can
|
|
|
|
* turn module definitions off and on.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generic 'false' boolean constant.
|
|
|
|
*/
|
|
|
|
#if !defined(FALSE) || defined(__DOXYGEN__)
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generic 'true' boolean constant.
|
|
|
|
*/
|
|
|
|
#if !defined(TRUE) || defined(__DOXYGEN__)
|
|
|
|
#define TRUE -1
|
|
|
|
#endif
|
|
|
|
|
2013-06-02 08:57:22 +00:00
|
|
|
/**
|
|
|
|
* @brief Mark a function as deprecated.
|
|
|
|
*/
|
|
|
|
#ifndef DEPRECATED
|
|
|
|
#if defined(__GNUC__) || defined(__MINGW32_) || defined(__CYGWIN__)
|
|
|
|
#define DEPRECATED(msg) __attribute__((deprecated(msg)))
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#define DEPRECATED(msg) __declspec(deprecated(msg))
|
|
|
|
#else
|
|
|
|
#define DEPRECATED(msg)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-02-28 23:04:52 +00:00
|
|
|
/* gfxconf.h is the user's project configuration for the GFX system. */
|
|
|
|
#include "gfxconf.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name GFX sub-systems that can be turned on
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @brief GFX Graphics Display Basic API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @note Also add the specific hardware driver to your makefile.
|
|
|
|
* Eg. include $(GFXLIB)/drivers/gdisp/Nokia6610/gdisp_lld.mk
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GDISP
|
|
|
|
#define GFX_USE_GDISP FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Graphics Windowing API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @details Extends the GDISP API to add the concept of graphic windows.
|
|
|
|
* @note Also supports high-level "window" objects such as console windows,
|
|
|
|
* buttons, graphing etc
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GWIN
|
|
|
|
#define GFX_USE_GWIN FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Event API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @details Defines the concept of a "Source" that can send "Events" to "Listeners".
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GEVENT
|
|
|
|
#define GFX_USE_GEVENT FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Timer API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @details Provides thread context timers - both one-shot and periodic.
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GTIMER
|
|
|
|
#define GFX_USE_GTIMER FALSE
|
|
|
|
#endif
|
2013-05-25 16:06:55 +00:00
|
|
|
/**
|
|
|
|
* @brief GFX Queue API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @details Provides queue management.
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GQUEUE
|
|
|
|
#define GFX_USE_GQUEUE FALSE
|
|
|
|
#endif
|
2013-02-28 23:04:52 +00:00
|
|
|
/**
|
|
|
|
* @brief GFX Input Device API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @note Also add the specific hardware drivers to your makefile.
|
|
|
|
* Eg.
|
|
|
|
* include $(GFXLIB)/drivers/ginput/toggle/Pal/ginput_lld.mk
|
|
|
|
* and...
|
|
|
|
* include $(GFXLIB)/drivers/ginput/touch/MCU/ginput_lld.mk
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GINPUT
|
|
|
|
#define GFX_USE_GINPUT FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Generic Periodic ADC API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GADC
|
|
|
|
#define GFX_USE_GADC FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Audio Input Device API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @note Also add the specific hardware drivers to your makefile.
|
|
|
|
* Eg.
|
|
|
|
* include $(GFXLIB)/drivers/gaudin/GADC/gaudin_lld.mk
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GAUDIN
|
|
|
|
#define GFX_USE_GAUDIN FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Audio Output Device API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @note Also add the specific hardware drivers to your makefile.
|
|
|
|
* Eg.
|
|
|
|
* include $(GFXLIB)/drivers/gaudout/PWM/gaudout_lld.mk
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GAUDOUT
|
|
|
|
#define GFX_USE_GAUDOUT FALSE
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief GFX Miscellaneous Routines API
|
|
|
|
* @details Defaults to FALSE
|
|
|
|
* @note Turning this on without turning on any GMISC_NEED_xxx macros will result
|
|
|
|
* in no extra code being compiled in. GMISC is made up from the sum of its
|
|
|
|
* parts.
|
|
|
|
*/
|
|
|
|
#ifndef GFX_USE_GMISC
|
|
|
|
#define GFX_USE_GMISC FALSE
|
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all the options for each sub-system.
|
|
|
|
*
|
|
|
|
*/
|
2013-05-24 15:26:52 +00:00
|
|
|
#include "gos/options.h"
|
2013-02-28 23:04:52 +00:00
|
|
|
#include "gmisc/options.h"
|
2013-05-25 16:06:55 +00:00
|
|
|
#include "gqueue/options.h"
|
2013-02-28 23:04:52 +00:00
|
|
|
#include "gevent/options.h"
|
|
|
|
#include "gtimer/options.h"
|
|
|
|
#include "gdisp/options.h"
|
|
|
|
#include "gwin/options.h"
|
|
|
|
#include "ginput/options.h"
|
|
|
|
#include "gadc/options.h"
|
|
|
|
#include "gaudin/options.h"
|
|
|
|
#include "gaudout/options.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inter-dependancy safety checks on the sub-systems.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "gfx_rules.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include the sub-system header files
|
|
|
|
*/
|
2013-05-24 15:26:52 +00:00
|
|
|
#include "gos/gos.h"
|
2013-02-28 23:04:52 +00:00
|
|
|
#include "gmisc/gmisc.h"
|
2013-05-25 16:06:55 +00:00
|
|
|
#include "gqueue/gqueue.h"
|
2013-02-28 23:04:52 +00:00
|
|
|
#include "gevent/gevent.h"
|
|
|
|
#include "gtimer/gtimer.h"
|
|
|
|
#include "gdisp/gdisp.h"
|
|
|
|
#include "gwin/gwin.h"
|
|
|
|
#include "ginput/ginput.h"
|
|
|
|
#include "gadc/gadc.h"
|
|
|
|
#include "gaudin/gaudin.h"
|
|
|
|
#include "gaudout/gaudout.h"
|
|
|
|
|
2013-05-24 15:26:52 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The one call to start it all
|
|
|
|
*
|
|
|
|
* @note This will initialise each sub-system that has been turned on.
|
|
|
|
* For example, if GFX_USE_GDISP is defined then display will be initialised
|
|
|
|
* and cleared to black.
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
void gfxInit(void);
|
|
|
|
|
2013-06-02 08:57:22 +00:00
|
|
|
/* Compatibility for old programs */
|
|
|
|
void DEPRECATED("Use gfxInit() instead") gdispInit(void);
|
2013-05-24 15:26:52 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-28 23:04:52 +00:00
|
|
|
#endif /* _GFX_H */
|
|
|
|
/** @} */
|
2013-12-11 13:50:09 +00:00
|
|
|
|