From: bernie Date: Sun, 27 Nov 2005 23:36:19 +0000 (+0000) Subject: Use appconfig.h instead of cfg/config.h. X-Git-Tag: 1.0.0~780 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=888d1c49ed7cea0f272f520a74be35a32032bd6e;hp=ddbc74380efdf0ba6bfd701fa43cef7d950c8b83;p=bertos.git Use appconfig.h instead of cfg/config.h. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@461 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/drv/eeprom.c b/drv/eeprom.c index 6a136e75..8280ef2c 100755 --- a/drv/eeprom.c +++ b/drv/eeprom.c @@ -16,6 +16,9 @@ /*#* *#* $Log$ + *#* Revision 1.18 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.17 2005/04/11 19:10:27 bernie *#* Include top-level headers from cfg/ subdir. *#* @@ -35,7 +38,7 @@ #include "eeprom.h" #include -#include // CONFIG_EEPROM_VERIFY +#include // CONFIG_EEPROM_VERIFY #include // MIN() #include #include diff --git a/drv/eeprom.h b/drv/eeprom.h index 7b7c44e6..ec2f5286 100755 --- a/drv/eeprom.h +++ b/drv/eeprom.h @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.8 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.7 2005/11/04 16:20:02 bernie *#* Fix reference to README.devlib in header. *#* @@ -41,7 +44,7 @@ #define DRV_EEPROM_H #include -#include +#include /*! * \name Values for CONFIG_EEPROM_TYPE diff --git a/drv/ser.c b/drv/ser.c index 5761d688..29719d4c 100755 --- a/drv/ser.c +++ b/drv/ser.c @@ -28,6 +28,9 @@ /*#* *#* $Log$ + *#* Revision 1.27 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.26 2005/11/04 16:20:02 bernie *#* Fix reference to README.devlib in header. *#* @@ -110,7 +113,7 @@ #include #include #include -#include +#include /* * Sanity check for config parameters required by this module. diff --git a/drv/ser.h b/drv/ser.h index 358e2386..fd640b00 100755 --- a/drv/ser.h +++ b/drv/ser.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.23 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.22 2005/11/04 16:20:02 bernie *#* Fix reference to README.devlib in header. *#* @@ -83,8 +86,8 @@ #include #include -#include #include /* BV() */ +#include /*! \name Serial Error/status flags. */ /*\{*/ diff --git a/drv/twi.c b/drv/twi.c index 69f0d88d..76d4a82f 100755 --- a/drv/twi.c +++ b/drv/twi.c @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.5 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.4 2005/04/11 19:10:28 bernie *#* Include top-level headers from cfg/ subdir. *#* @@ -30,11 +33,12 @@ *#*/ #include "twi.h" -#include + #include -#include #include #include // BV() +#include +#include #include diff --git a/gfx/charts.h b/gfx/charts.h index af9ee6dd..a9ae3e2c 100755 --- a/gfx/charts.h +++ b/gfx/charts.h @@ -18,6 +18,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2005/11/27 23:36:18 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.2 2005/11/04 18:17:45 bernie *#* Fix header guards and includes for new location of gfx module. *#* @@ -44,7 +47,7 @@ #define GFX_CHARTS_H #include /* vcoord_t */ -#include /* CONFIG_ stuff */ +#include /* CONFIG_ stuff */ /*! * \name Width/height of the small ticks drawn over the axes diff --git a/gfx/gfx.c b/gfx/gfx.c index 82b69c34..d634c5d6 100755 --- a/gfx/gfx.c +++ b/gfx/gfx.c @@ -16,6 +16,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.2 2005/11/04 18:17:45 bernie *#* Fix header guards and includes for new location of gfx module. *#* @@ -32,8 +35,8 @@ *#* Use new CPU-neutral program-memory API. *#*/ -#include -#include /* CONFIG_GFX_CLIPPING */ +#include "gfx.h" +#include /* CONFIG_GFX_CLIPPING */ #include #include /* CPU_HARVARD */ #include /* SWAP() */ diff --git a/gfx/gfx.h b/gfx/gfx.h index af8f6a9a..0c5f2d67 100755 --- a/gfx/gfx.h +++ b/gfx/gfx.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2005/11/27 23:33:40 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.2 2005/11/04 18:17:45 bernie *#* Fix header guards and includes for new location of gfx module. *#* @@ -36,7 +39,7 @@ #ifndef GFX_GFX_H #define GFX_GFX_H -#include +#include #include #include diff --git a/kern/proc_p.h b/kern/proc_p.h index 283be2ec..7ac48176 100755 --- a/kern/proc_p.h +++ b/kern/proc_p.h @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.15 2005/11/27 23:36:19 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.14 2005/11/04 16:20:02 bernie *#* Fix reference to README.devlib in header. *#* @@ -76,9 +79,9 @@ #include #include /* for cpu_stack_t */ -#include -#include #include +#include +#include typedef struct Process { diff --git a/mware/heap.h b/mware/heap.h index 07ca8087..bbae968b 100755 --- a/mware/heap.h +++ b/mware/heap.h @@ -20,6 +20,9 @@ /*#* *#* $Log$ + *#* Revision 1.6 2005/11/27 23:36:19 bernie + *#* Use appconfig.h instead of cfg/config.h. + *#* *#* Revision 1.5 2005/11/04 16:20:02 bernie *#* Fix reference to README.devlib in header. *#* @@ -47,7 +50,7 @@ #define MWARE_HEAP_H #include -#include +#include struct _MemChunk;