aboutsummaryrefslogtreecommitdiffstats
path: root/gfx.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-02-27 17:44:21 +1000
committerinmarket <andrewh@inmarket.com.au>2018-02-27 17:44:21 +1000
commitf265924396167729e8d9fb36a0383263f36c1270 (patch)
tree28843eb24b18999cf0217ecb0fe935f133901066 /gfx.h
parent14786e97b618b8bc2a0ff1c732d45288fe550e33 (diff)
downloaduGFX-f265924396167729e8d9fb36a0383263f36c1270.tar.gz
uGFX-f265924396167729e8d9fb36a0383263f36c1270.tar.bz2
uGFX-f265924396167729e8d9fb36a0383263f36c1270.zip
First set of V3 macro changes
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h205
1 files changed, 123 insertions, 82 deletions
diff --git a/gfx.h b/gfx.h
index abbad5d6..e248c701 100644
--- a/gfx.h
+++ b/gfx.h
@@ -19,95 +19,115 @@
#ifndef _GFX_H
#define _GFX_H
-/**
- * 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
+// Everything here is C, not C++
+#ifdef __cplusplus
+extern "C" {
#endif
+// ------------------------------ Initial preparation ---------------------------------
+
+// ------------------------------ Load the user configuration ---------------------------------
+
+// Definitions for option configuration
+#define GFXOFF (0)
+#define GFXON (-1)
+
+// gfxconf.h is the user's project configuration for the GFX system.
+#include "gfxconf.h"
+
+// ------------------------------ Determine build environment info - COMPILER, CPU etc ---------------------------------
+
/**
- * @brief Generic 'true' boolean constant.
+ * @name GFX compatibility options
+ * @{
*/
-#if !defined(TRUE) || defined(__DOXYGEN__)
- #define TRUE -1
+ /**
+ * @brief Include the uGFX V2.x API
+ * @details Defaults to GFXON
+ */
+ #ifndef GFX_COMPAT_V2
+ #define GFX_COMPAT_V2 GFXON
+ #endif
+/** @} */
+
+#if GFX_COMPAT_V2
+ // These need to be defined here for compatibility with V2.x user config files
+ #if !defined(FALSE)
+ #define FALSE 0
+ #endif
+ #if !defined(TRUE)
+ #define TRUE -1
+ #endif
#endif
// Macro concatination and strify - not API documented
-#define GFXCATX(a, b) GFXCAT(a, b)
#define GFXCAT(a, b) a ## b
-#define GFXSTRX(a) GFXSTR(a)
+#define GFXCATX(a, b) GFXCAT(a, b)
#define GFXSTR(a) #a
+#define GFXSTRX(a) GFXSTR(a)
-/* gfxconf.h is the user's project configuration for the GFX system. */
-#include "gfxconf.h"
-
-/* Include Compiler and CPU support */
+// Include Compiler and CPU support
#include "src/gfx_compilers.h"
+// ------------------------------ Enumerate all options ---------------------------------
/**
* @name GFX sub-systems that can be turned on
* @{
*/
/**
* @brief GFX Driver API
- * @details Defaults to TRUE
+ * @details Defaults to GFXON
* @note Not much useful can be done without a driver
*/
#ifndef GFX_USE_GDRIVER
- #define GFX_USE_GDRIVER TRUE
+ #define GFX_USE_GDRIVER GFXON
#endif
/**
* @brief GFX Graphics Display Basic API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @note Also add the specific hardware driver to your makefile.
* Eg. include $(GFXLIB)/drivers/gdisp/Nokia6610/driver.mk
*/
#ifndef GFX_USE_GDISP
- #define GFX_USE_GDISP FALSE
+ #define GFX_USE_GDISP GFXOFF
#endif
/**
* @brief GFX Graphics Windowing API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @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
+ #define GFX_USE_GWIN GFXOFF
#endif
/**
* @brief GFX Event API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @details Defines the concept of a "Source" that can send "Events" to "Listeners".
*/
#ifndef GFX_USE_GEVENT
- #define GFX_USE_GEVENT FALSE
+ #define GFX_USE_GEVENT GFXOFF
#endif
/**
* @brief GFX Timer API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @details Provides thread context timers - both one-shot and periodic.
*/
#ifndef GFX_USE_GTIMER
- #define GFX_USE_GTIMER FALSE
+ #define GFX_USE_GTIMER GFXOFF
#endif
/**
* @brief GFX Queue API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @details Provides queue management.
*/
#ifndef GFX_USE_GQUEUE
- #define GFX_USE_GQUEUE FALSE
+ #define GFX_USE_GQUEUE GFXOFF
#endif
/**
* @brief GFX Input Device API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @note Also add the specific hardware drivers to your makefile.
* Eg.
* include $(GFXLIB)/drivers/ginput/toggle/Pal/driver.mk
@@ -115,48 +135,67 @@
* include $(GFXLIB)/drivers/ginput/touch/MCU/driver.mk
*/
#ifndef GFX_USE_GINPUT
- #define GFX_USE_GINPUT FALSE
+ #define GFX_USE_GINPUT GFXOFF
#endif
/**
* @brief GFX Generic Periodic ADC API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GFX_USE_GADC
- #define GFX_USE_GADC FALSE
+ #define GFX_USE_GADC GFXOFF
#endif
/**
* @brief GFX Audio API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @note Also add the specific hardware drivers to your makefile.
* Eg.
* include $(GFXLIB)/drivers/gaudio/GADC/driver.mk
*/
#ifndef GFX_USE_GAUDIO
- #define GFX_USE_GAUDIO FALSE
+ #define GFX_USE_GAUDIO GFXOFF
#endif
/**
* @brief GFX Miscellaneous Routines API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
* @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
+ #define GFX_USE_GMISC GFXOFF
#endif
/**
* @brief GFX File API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GFX_USE_GFILE
- #define GFX_USE_GFILE FALSE
+ #define GFX_USE_GFILE GFXOFF
#endif
/**
* @brief GFX Translation Support API
- * @details Defaults to FALSE
+ * @details Defaults to GFXOFF
*/
#ifndef GFX_USE_GTRANS
- #define GFX_USE_GTRANS FALSE
+ #define GFX_USE_GTRANS GFXOFF
+ #endif
+/** @} */
+
+/**
+ * @name GFX compatibility options
+ * @{
+ */
+ /**
+ * @brief Include the uGFX V2.x Old Colors
+ * @details Defaults to GFXON
+ * @pre Requires GFX_COMPAT_V2 to be GFXON
+ * @note The old color definitions (particularly Red, Green & Blue) can
+ * cause symbol conflicts with many platforms eg Win32, STM32 HAL etc.
+ * Although officially these symbols are part of the V2.x API, this
+ * option allows them to be turned off even when the rest of the V2.x
+ * API is turned on.
+ */
+ #ifndef GFX_COMPAT_OLDCOLORS
+ #define GFX_COMPAT_OLDCOLORS GFXON
#endif
/** @} */
@@ -178,13 +217,17 @@
#include "src/gadc/gadc_options.h"
#include "src/gaudio/gaudio_options.h"
+// ------------------------------ Load driver configuration ---------------------------------
+
+// ------------------------------ Apply configuration rules ---------------------------------
+
/**
* Interdependency safety checks on the sub-systems.
* These must be in dependency order.
*
*/
#ifndef GFX_DISPLAY_RULE_WARNINGS
- #define GFX_DISPLAY_RULE_WARNINGS FALSE
+ #define GFX_DISPLAY_RULE_WARNINGS GFXOFF
#endif
#include "src/gwin/gwin_rules.h"
#include "src/ginput/ginput_rules.h"
@@ -200,6 +243,8 @@
#include "src/gdriver/gdriver_rules.h"
#include "src/gos/gos_rules.h"
+// ------------------------------ Define API definitions ---------------------------------
+
/**
* Include the sub-system header files
*/
@@ -217,54 +262,50 @@
#include "src/gadc/gadc.h"
#include "src/gaudio/gaudio.h"
-#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.
+ * @note If you define GFX_OS_NO_INIT as GFXON in your gfxconf.h file then ugfx doesn't try to
+ * initialise the operating system for you when you call @p gfxInit().
+ * @note If you define GFX_OS_EXTRA_INIT_FUNCTION in your gfxconf.h file the macro is the
+ * name of a void function with no parameters that is called immediately after
+ * operating system initialisation (whether or not GFX_OS_NO_INIT is set).
+ * @note If you define GFX_OS_EXTRA_DEINIT_FUNCTION in your gfxconf.h file the macro is the
+ * name of a void function with no parameters that is called immediately before
+ * operating system de-initialisation (as ugfx is exiting).
+ * @note If GFX_OS_CALL_UGFXMAIN is set uGFXMain() is called after all initialisation is complete.
+ *
+ * @api
+ */
+void gfxInit(void);
- /**
- * @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.
- * @note If you define GFX_OS_NO_INIT as TRUE in your gfxconf.h file then ugfx doesn't try to
- * initialise the operating system for you when you call @p gfxInit().
- * @note If you define GFX_OS_EXTRA_INIT_FUNCTION in your gfxconf.h file the macro is the
- * name of a void function with no parameters that is called immediately after
- * operating system initialisation (whether or not GFX_OS_NO_INIT is set).
- * @note If you define GFX_OS_EXTRA_DEINIT_FUNCTION in your gfxconf.h file the macro is the
- * name of a void function with no parameters that is called immediately before
- * operating system de-initialisation (as ugfx is exiting).
- * @note If GFX_OS_CALL_UGFXMAIN is set uGFXMain() is called after all initialisation is complete.
- *
- * @api
- */
- void gfxInit(void);
+/**
+ * @brief The one call to end it all
+ *
+ * @note This will de-initialise each sub-system that has been turned on.
+ *
+ * @api
+ */
+void gfxDeinit(void);
+#if GFX_OS_CALL_UGFXMAIN || defined(__DOXYGEN__)
/**
- * @brief The one call to end it all
+ * @brief The function containing all the user uGFX application code.
*
- * @note This will de-initialise each sub-system that has been turned on.
+ * @note This is called by gfxInit() and is expected to never return.
+ * It is defined by the user.
*
- * @api
+ * @pre GFX_OS_CALL_UGFXMAIN is GFXON
*/
- void gfxDeinit(void);
+ void uGFXMain(void);
+#endif
- #if GFX_OS_CALL_UGFXMAIN || defined(__DOXYGEN__)
- /**
- * @brief The function containing all the user uGFX application code.
- *
- * @note This is called by gfxInit() and is expected to never return.
- * It is defined by the user.
- *
- * @pre GFX_OS_CALL_UGFXMAIN is GFXON
- */
- void uGFXMain(void);
- #endif
#ifdef __cplusplus
}
#endif
-
#endif /* _GFX_H */
/** @} */