DoxygenPpErr  2011-08-23
Test project for doxygen preprocessor error
src/sysconst1.h
Go to the documentation of this file.
00001 #define XB90675 0 /*!< \brief
00002 * Val. range / Coding:  always 0
00003 */
00004 
00005 #define XontrollerType XB90675  /*!< \brief
00006 * Val. range / Coding: MB90675 (FUJITSU F2MC-16L  MB90675 type)
00007 */
00008 
00009 #if (XontrollerType == XB90675) /* no "syntax error" here - because "XB90675" is not in comment? */
00010   #define XClk        4000
00011 #endif
00012 
00013 
00014 
00015 #define MB90675 0 /*!< \brief
00016 * Val. range / Coding:  always 0
00017 */
00018 
00019 #define ControllerType MB90675  /*!< \brief
00020 * Val. range / Coding: MB90675 (FUJITSU F2MC-16L  MB90675 type)
00021 */
00022 
00023 #if (ControllerType == MB90675)  /* wrong "syntax error" here */
00024   #define MClk        4000
00025 #endif
00026 
00027 
00028 
00029 #if ControllerType == MB90675  /* .. but no "syntax error" here */
00030   #define YClk        4000
00031 #endif
00032 
00033 /* eof */