Include top-level headers from cfg/ subdir.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 19:10:28 +0000 (19:10 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 19:10:28 +0000 (19:10 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@401 38d2e660-2303-0410-9eaa-f027e97ec537

57 files changed:
cfg/compiler.h
cfg/config_kern.h
cfg/cpu.h
cfg/debug.h
cfg/macros.h
drv/buzzer.c
drv/buzzer.h
drv/buzzerled.h
drv/buzzerled_dsp56k.h
drv/eeprom.c
drv/eeprom.h
drv/kdebug.c
drv/ser.c
drv/ser.h
drv/ser_avr.c
drv/ser_dsp56k.c
drv/ser_emul.c
drv/timer.c
drv/timer.h
drv/timer_avr.h
drv/timer_dsp56k.h
drv/twi.c
drv/twi.h
drv/wdt.h
kern/event.h
kern/file.h
kern/monitor.c
kern/monitor.h
kern/proc.c
kern/proc.h
kern/proc_p.h
kern/sem.c
kern/sem.h
kern/signal.c
kern/signal.h
mware/byteorder.h
mware/charts.h
mware/crc.h
mware/fifobuf.h
mware/font.h
mware/formatwr.c
mware/formatwr.h
mware/gfx.c
mware/gfx.h
mware/hashtable.c
mware/hashtable.h
mware/heap.c
mware/heap.h
mware/kfile.h
mware/list.h
mware/pgm.h
mware/pool.h
mware/sprintf.c
mware/strtol10.h
mware/text.c
mware/text.h
verstag.h

index 45f4d92d46cb7f0b148f3695f05b111d4bc32c36..79a8d27ab30cc907edf6fbe5ab1a753cd2ee06c4 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/04/11 19:04:13  bernie
  *#* Move top-level headers to cfg/ subdir.
  *#*
@@ -35,7 +38,7 @@
 #ifndef DEVLIB_COMPILER_H
 #define DEVLIB_COMPILER_H
 
-#include "cpu_detect.h"
+#include <cfg/cpu_detect.h>
 
 
 #if defined __GNUC__ && defined __GNUC_MINOR__
index 1dc1c8f94b222c7e2dead90d3c6cc8da09b4faf5..47bf985e773ef460036262e197c8a8fecf33fd5a 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/04/11 19:04:13  bernie
  *#* Move top-level headers to cfg/ subdir.
  *#*
@@ -38,7 +41,7 @@
 #ifndef CONFIG_KERN_H
 #define CONFIG_KERN_H
 
-#include <arch_config.h>  /* ARCH_EMUL */
+#include <cfg/arch_config.h>  /* ARCH_EMUL */
 
 /*!
  * \name Modules activation
index 6afa3fa0a349667242216ab7b5ecf5b1e1cda2f6..e7bcc7ab1caa45a366e5cf958cfbd6e9e6078b8e 100755 (executable)
--- a/cfg/cpu.h
+++ b/cfg/cpu.h
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/04/11 19:04:13  bernie
  *#* Move top-level headers to cfg/ subdir.
  *#*
@@ -41,7 +44,7 @@
 #ifndef DEVLIB_CPU_H
 #define DEVLIB_CPU_H
 
-#include "compiler.h" /* for uintXX_t */
+#include <cfg/compiler.h> /* for uintXX_t */
 
 
 /*!
index af5f4f8ae27600c683dfebb2174ca36972fe9ae6..d8406bb05a6c2ff993ce48a822c02b9103065c2b 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/04/11 19:04:13  bernie
  *#* Move top-level headers to cfg/ subdir.
  *#*
@@ -76,7 +79,7 @@
        #endif
        #endif
 #else /* !OS_HOSTED */
-       #include <compiler.h>
+       #include <cfg/compiler.h>
 #endif /* !OS_HOSTED */
 
 
                #define ASSERT_VALID_PTR_OR_NULL(p)  ASSERT((((p) == NULL) || ((unsigned long)(p) >= 0x200)))
        #else /* !OS_HOSTED */
 
-               #include <config.h>  /* CONFIG_KDEBUG_ASSERT_NO_TEXT */
-               #include <cpu.h>  /* CPU_HARVARD */
+               #include <cfg/config.h>  /* CONFIG_KDEBUG_ASSERT_NO_TEXT */
+               #include <cfg/cpu.h>  /* CPU_HARVARD */
 
                /* These are implemented in drv/kdebug.c */
                void kdbg_init(void);
index 85fb97af6f960dcbc5a781eafcd89e272379deda..6dd62487dace13b6f4317414ec11194297b2297b 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/04/11 19:04:13  bernie
  *#* Move top-level headers to cfg/ subdir.
  *#*
@@ -67,7 +70,7 @@
 #ifndef MACROS_H
 #define MACROS_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 /* avr-gcc does not seem to support libstdc++ */
 #if defined(__cplusplus) && !CPU_AVR
index 6f91a7e7bb09306fc1a5b3f1e80a653580ecb418..d0c0264f9ab9412ce7d43d85f286f7bf2797bde5 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.14  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.13  2005/02/18 11:20:15  bernie
  *#* Use mware/event.h; Update copyright info.
  *#*
 #include <drv/timer.h>
 #include <mware/event.h>
 
-#include <macros.h> /* BV() */
-#include <debug.h>
+#include <cfg/macros.h> /* BV() */
+#include <cfg/debug.h>
 #include <hw.h>
-#include <arch_config.h>
+#include <cfg/arch_config.h>
 
 
 #if (ARCH & ARCH_EMUL)
index b94d25a699755a32ea884cedead74b6df8e1779b..02bc1e8bcd3588d82a4ce7d23d5018c9beb18ae4 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.6  2004/12/08 09:11:53  bernie
  *#* Rename time_t to mtime_t.
  *#*
@@ -34,7 +37,7 @@
 #ifndef DRV_BUZZER_H
 #define DRV_BUZZER_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 extern void buz_init(void);
 extern void buz_beep(mtime_t time);
index bd1a04f98f4a73620d7dd137dffa97bf9c7b17bb..d361444d167da3c5553bd0fc2c60ffb6f3fa81cb 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/08/25 14:12:08  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -35,7 +38,7 @@
 #ifndef DRV_BUZZERLED_H
 #define DRV_BUZZERLED_H
 
-#include <cpu.h>
+#include <cfg/cpu.h>
 
 /*! Include hw.h. We expect hw.h to define enum BLD_DEVICE, which must contain
  *  an enumarator for each device, plus a special symbol NUM_BLDS containing the
index e2a01de1836a365e931fb3131ea03466e3f212d7..2ae2c3dbc132bfd30af46729b129b5765162d9ab 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.4  2004/11/16 21:54:43  bernie
  *#* Changes for SC Monoboard support.
  *#*
@@ -32,7 +35,7 @@
 #ifndef DRV_BUZZERLED_DSP56K_H
 #define DRV_BUZZERLED_DSP56K_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 #include <hw.h>
 #include "pwm.h"
 
index 9a52e5cd7f5c625da189a43280381f3d7ade5788..6a136e75d4ff0f208ba8f947dc724f3768ac1bc4 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.17  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.16  2005/03/01 23:25:09  bernie
  *#* Prune CVS log.
  *#*
@@ -31,9 +34,9 @@
 
 #include "eeprom.h"
 
-#include <debug.h>
-#include <config.h>  // CONFIG_EEPROM_VERIFY
-#include <macros.h>  // MIN()
+#include <cfg/debug.h>
+#include <cfg/config.h>  // CONFIG_EEPROM_VERIFY
+#include <cfg/macros.h>  // MIN()
 #include <drv/twi.h>
 #include <drv/wdt.h>
 #include <mware/byteorder.h> // cpu_to_be16()
index cec8bbd717eb8fb0a30134f30270f0406818fd2f..ffc971ce981abdcf4ef82561b0e5c7fa2ea7242c 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/11/02 17:50:02  bernie
  *#* CONFIG_EEPROM_VERIFY: New config option.
  *#*
@@ -34,8 +37,8 @@
 #ifndef DRV_EEPROM_H
 #define DRV_EEPROM_H
 
-#include <compiler.h>
-#include <config.h>
+#include <cfg/compiler.h>
+#include <cfg/config.h>
 
 /*!
  * \name Values for CONFIG_EEPROM_TYPE
index ee09a74732d5f7b30c5e73d3b3ef0595cdf8a843..d80be75681f901a215bce5d7273deb9dec7f95f8 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.23  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.22  2005/02/18 11:18:33  bernie
  *#* Fixes for Harvard processors from project_ks.
  *#*
  *#* Rename UNUSED() to UNUSED_ARG().
  *#*/
 
-#include <debug.h>
-#include <cpu.h>
-#include <macros.h> /* for BV() */
-#include <config.h>
+#include <cfg/debug.h>
+#include <cfg/cpu.h>
+#include <cfg/macros.h> /* for BV() */
+#include <cfg/config.h>
 #include <hw.h>
 
 #include <mware/formatwr.h> /* for _formatted_write() */
index dbde1aa0f63eafbe7d48d0a8329ef5d73734845d..59ab1fea388e72114593093af0ef92739b3c4eff 100755 (executable)
--- a/drv/ser.c
+++ b/drv/ser.c
@@ -28,6 +28,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.25  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.24  2005/01/21 20:13:15  aleph
  *#* Fix drain at ser_close()
  *#*
 #include "ser.h"
 #include "ser_p.h"
 #include <mware/formatwr.h>
-#include <debug.h>
+#include <cfg/debug.h>
 #include <hw.h>
-#include <config.h>
+#include <cfg/config.h>
 
 /*
  * Sanity check for config parameters required by this module.
index 0b5632d80869eedb96c6d99585f06426e083c510..3b3edd5c980fd0b387c8890bae638d0b50fca732 100755 (executable)
--- a/drv/ser.h
+++ b/drv/ser.h
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.21  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.20  2005/01/22 04:20:01  bernie
  *#* Reformat.
  *#*
@@ -76,9 +79,9 @@
 #define DRV_SER_H
 
 #include <mware/fifobuf.h>
-#include <compiler.h>
-#include <config.h>
-#include <macros.h> /* BV() */
+#include <cfg/compiler.h>
+#include <cfg/config.h>
+#include <cfg/macros.h> /* BV() */
 
 /*! \name Serial Error/status flags. */
 /*\{*/
index 05c93943cb020c223f263fbee8c1dd639ea5a41e..646f3fe8d7c48c8a37e52fbe5fd38399704e6c39 100755 (executable)
@@ -38,6 +38,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.26  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.25  2005/01/25 08:37:26  bernie
  *#* CONFIG_SER_HWHANDSHAKE fixes.
  *#*
 
 #include "ser.h"
 #include "ser_p.h"
-#include "config.h"
+#include <cfg/config.h>
 #include "hw.h"  /* Required for bus macros overrides */
 
-#include <debug.h>
+#include <cfg/debug.h>
 #include <drv/timer.h>
 #include <mware/fifobuf.h>
 
index db299ba2d5dbac00730327d973bb88e0978ca193..01767f7e503f4a3c9eb793e0c05482e2cda25ae0 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.12  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.11  2005/01/25 07:42:04  bernie
  *#* Simplify.
  *#*
@@ -46,7 +49,7 @@
 #include "ser.h"
 #include "ser_p.h"
 #include <drv/irq.h>
-#include <debug.h>
+#include <cfg/debug.h>
 #include <hw.h>
 #include <DSP56F807.h>
 
index 5329867276cc8b46ff0c49d01681efed9b3d1e0d..5bd03169412a8a1fcde89477c61038acbea12708 100755 (executable)
@@ -13,6 +13,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:27  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2004/12/31 17:40:00  bernie
  *#* Add a simple serial emulation driver.
  *#*
@@ -20,9 +23,9 @@
 
 #include "ser.h"
 #include "ser_p.h"
-#include "config.h"
+#include <cfg/config.h>
 
-#include <debug.h>
+#include <cfg/debug.h>
 #include <mware/fifobuf.h>
 
 #include <sys/types.h>
index e0208b8843675763eee70025a7cdbf850451c568..c1f161454f7deea37dc1d429f487c7b7408eabc7 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.24  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.23  2004/12/13 12:07:06  bernie
  *#* DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE.
  *#*
  *#*/
 
 #include "timer.h"
-#include <cpu.h>
+#include <cfg/cpu.h>
 #include <hw.h>
 #include CPU_HEADER(timer)
-#include <debug.h>
-#include <config.h>
+#include <cfg/debug.h>
+#include <cfg/config.h>
 
 /*
  * Sanity check for config parameters required by this module.
index 81880d4001fdc948dbe7661b752d6a03df32b3ed..bd7b1f7e8154cb1ef760cda37cd6b9c02e9f01dc 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.24  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.23  2005/03/01 23:25:46  bernie
  *#* Move event.h to mware/.
  *#*
@@ -84,9 +87,9 @@
 #define DRV_TIMER_H
 
 #include <mware/list.h>
-#include <cpu.h>
-#include <compiler.h>
-#include <config.h>
+#include <cfg/cpu.h>
+#include <cfg/compiler.h>
+#include <cfg/config.h>
 
 /*! Number of timer ticks per second. */
 #define TICKS_PER_SEC  ((mtime_t)1000)
index fe5ba9b8f9736924a6eacc29dbbe066429ee3634..d308608aedf3adca7e2553912a64ca325511b92b 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.24  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.23  2005/03/01 23:24:51  bernie
  *#* Tweaks for avr-libc 1.2.x.
  *#*
@@ -60,8 +63,8 @@
 #ifndef DRV_TIMER_AVR_H
 #define DRV_TIMER_AVR_H
 
-#include <arch_config.h> // ARCH_BOARD_KC
-#include <macros.h> // BV()
+#include <cfg/arch_config.h> // ARCH_BOARD_KC
+#include <cfg/macros.h> // BV()
 #include <hw.h>
 
 #include <avr/signal.h>
index 42bd4b5fe8d0f74509d4dfb5253f7673505dd78c..7cf68f8f4b4fb0e9192b370ae6ad725e87d8f3de 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.6  2004/11/16 22:37:14  bernie
  *#* Replace IPTR with iptr_t.
  *#*
@@ -40,7 +43,7 @@
 
 #include "timer.h"
 #include <DSP56F807.h>
-#include <compiler.h>
+#include <cfg/compiler.h>
 #include <hw.h>
 #include <drv/irq.h>
 
index e48663686f28ba8d030bd5dbc08f6589805f6f02..69f0d88d89bfb76e5f48d3bf299d91106a1ae6eb 100755 (executable)
--- a/drv/twi.c
+++ b/drv/twi.c
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.3  2005/03/01 23:26:00  bernie
  *#* Header fix.
  *#*
  *#*/
 
 #include "twi.h"
-#include "config.h"
-#include <debug.h>
+#include <cfg/config.h>
+#include <cfg/debug.h>
 #include <hw.h>
-#include <cpu.h>
-#include <macros.h> // BV()
+#include <cfg/cpu.h>
+#include <cfg/macros.h> // BV()
 
 #include <compat/twi.h>
 
index cffabdd804818b761ad068843f74369c5f3a7e15..ac8c46f20f2eff8f03aa30d03c2a1e740e51aa99 100755 (executable)
--- a/drv/twi.h
+++ b/drv/twi.h
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.2  2005/02/18 11:19:52  bernie
  *#* Update copyright info.
  *#*
@@ -22,7 +25,7 @@
 #ifndef DRV_TWI_H
 #define DRV_TWI_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 bool twi_start_w(uint8_t slave_addr);
 bool twi_start_r(uint8_t slave_addr);
index 3f356cbbcb519f03c179a0b48403f060b4e6a1f5..a0982950f0c4b621a4c2b5eb0af62bf99d15262b 100755 (executable)
--- a/drv/wdt.h
+++ b/drv/wdt.h
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.2  2004/11/16 21:02:07  bernie
  *#* Make driver optional; mark AVR specific parts as such.
  *#*
@@ -24,8 +27,8 @@
 #ifndef DRV_WDT_H
 #define DRV_WDT_H
 
-#include <config.h>
-#include <compiler.h> // INLINE
+#include <cfg/config.h>
+#include <cfg/compiler.h> // INLINE
 
 /* Configury sanity check */
 #if !defined(CONFIG_WATCHDOG) || (CONFIG_WATCHDOG != 0 && CONFIG_WATCHDOG != 1)
 #endif
 
 #if CONFIG_WATCHDOG
-       #include <cpu.h>
+       #include <cfg/cpu.h>
 
        #if CPU_AVR
                #include <avr/io.h>
-               #include <macros.h> // BV()
+               #include <cfg/macros.h> // BV()
        #else
                #error unknown CPU
        #endif
index 6f6d839b96ca0afdbea9ab5fc82c9d8c20f46073..743d25839e3eceabb29edbf878b2454e74bdc2f8 100755 (executable)
@@ -18,6 +18,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.10  2005/01/24 04:22:02  bernie
  *#* Update copyright information.
  *#*
 #ifndef KERN_EVENT_H
 #define KERN_EVENT_H
 
-#include <config.h>
+#include <cfg/config.h>
 
 #if CONFIG_KERNEL
-       #include "config_kern.h"
+       #include <cfg/config_kern.h>
        #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
                #include "signal.h"
        #endif
index 46e9cdd34326a94b4e01640b4c7e97660ee440c1..be0d928cf92d469162cf1644f77fe76d15b2de4f 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.4  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -31,7 +34,7 @@
 #define KERN_KFILE_H
 
 #ifndef COMPILER_H
-#include <compiler.h>
+#include <cfg/compiler.h>
 #endif
 
 struct _KFile;
index 907487b133a741c15b315ee4fc9cbb7205da0215..b4a133d87c5196aa37a631d7f8daa0baf89e621b 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.3  2004/11/28 23:20:25  bernie
  *#* Remove obsolete INITLIST macro.
  *#*
@@ -39,8 +42,8 @@
 #include <mware/list.h>
 #include <drv/timer.h>
 #include <kern/proc.h>
-#include <macros.h>
-#include <debug.h>
+#include <cfg/macros.h>
+#include <cfg/debug.h>
 
 
 static List MonitorProcs;
index 3e544752fe9b27f8b2b4bb0ef47e89b8330da67c..23d083d1bdb2d4b9f0e4e57a163ca300fca6b0f4 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2004/10/03 20:39:03  bernie
  *#* Import in DevLib.
  *#*
@@ -26,8 +29,8 @@
 #ifndef KERN_MONITOR_H
 #define KERN_MONITOR_H
 
-#include <cpu.h>
-#include <config_kern.h>
+#include <cfg/cpu.h>
+#include <cfg/config_kern.h>
 
 #if CONFIG_KERN_MONITOR
 
index 2abe730c34afb80e4f185809f399470d606c4592..2fdc9a17532731910dfb7b9a2e3b618af53ac337 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.26  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.25  2005/03/15 00:20:54  bernie
  *#* proc_schedule(): New sanity check.
  *#*
 
 #include "proc_p.h"
 #include "proc.h"
-#include "cpu.h"
+#include <cfg/cpu.h>
 #include "event.h"
 #include "hw.h"
-#include <debug.h>
-#include <arch_config.h>  /* ARCH_EMUL */
-#include <macros.h>  /* ABS() */
+#include <cfg/debug.h>
+#include <cfg/arch_config.h>  /* ARCH_EMUL */
+#include <cfg/macros.h>  /* ABS() */
 
 #include <string.h> /* memset() */
 
index 22942d4c32ac7f72e3aca7c39c247233872014f3..25bfbae8bfcf3d9e0475e36e0f4ef632941e16a8 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.9  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.8  2004/11/16 22:37:14  bernie
  *#* Replace IPTR with iptr_t.
  *#*
@@ -35,9 +38,9 @@
 #ifndef KERN_PROC_H
 #define KERN_PROC_H
 
-#include "compiler.h"
-#include "cpu.h"
-#include "config_kern.h"
+#include <cfg/compiler.h>
+#include <cfg/cpu.h>
+#include <cfg/config_kern.h>
 
 /* Fwd decl */
 struct Process;
index 746cb0509873298277d82c81954067b0e6a35b06..a9553d81da66c623b4173c2f784f34a467ef3490 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.13  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.12  2004/12/08 08:57:35  bernie
  *#* Rename sigset_t to sigmask_t.
  *#*
 #ifndef KERN_PROC_P_H
 #define KERN_PROC_P_H
 
-#include "compiler.h"
-#include "cpu.h"        /* for cpu_stack_t */
-#include "config.h"
-#include "config_kern.h"
+#include <cfg/compiler.h>
+#include <cfg/cpu.h>        /* for cpu_stack_t */
+#include <cfg/config.h>
+#include <cfg/config_kern.h>
 #include <mware/list.h>
 
 typedef struct Process
index eab3e5db475d26a1d2b46b5eb46429c69d30ae7c..65c07bd17a7661df3998a8de715b8e35754d2808 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.9  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.8  2005/01/22 04:20:42  bernie
  *#* Add integrity checks.
  *#*
@@ -45,7 +48,7 @@
 #include "proc_p.h"
 #include "signal.h"
 #include "hw.h"
-#include <debug.h>
+#include <cfg/debug.h>
 
 INLINE void sem_verify(struct Semaphore *s)
 {
index 84a4811d056d52a6ca2a0d7aa79f53db4a5954b1..f3dead0eb26fbc0b93ee413fa96452f700eabdcb 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.4  2005/01/22 04:21:20  bernie
  *#* Add handy typedef for struct Semaphore.
  *#*
@@ -33,7 +36,7 @@
 #ifndef KERN_SEM_H
 #define KERN_SEM_H
 
-#include "compiler.h"
+#include <cfg/compiler.h>
 #include <mware/list.h>
 
 /* Fwd decl */
index 692cd44bf679b0f8c6b772f1a33152ce2532d243..e64272b0023225fa4157aed6bec917a29befcdf0 100755 (executable)
@@ -66,6 +66,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.10  2004/12/13 12:07:06  bernie
  *#* DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE.
  *#*
 #include "proc.h"
 #include "proc_p.h"
 #include "hw.h"
-#include <debug.h>
+#include <cfg/debug.h>
 
 #if CONFIG_KERN_SIGNALS
 
index 5d3d261ef2c9f12c582d89878f51a7c4892600fa..167c9de1e9dc05062ac94a2b7ac41bcd3fcdb1d0 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/12/08 08:57:35  bernie
  *#* Rename sigset_t to sigmask_t.
  *#*
@@ -35,7 +38,7 @@
 #ifndef KERN_SIGNAL_H
 #define KERN_SIGNAL_H
 
-#include "compiler.h"
+#include <cfg/compiler.h>
 
 
 /* Fwd decl */
index 4730eb5bca9bd566b81ef2083031b650bc30b35b..dc5e74ee85b8baec9ca084b29394089c114d0d06 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -35,8 +38,8 @@
 #ifndef MWARE_BYTEORDER_H
 #define MWARE_BYTEORDER_H
 
-#include <compiler.h>
-#include <cpu.h>
+#include <cfg/compiler.h>
+#include <cfg/cpu.h>
 
 /*!
  * \brief Swap upper and lower bytes in a 16-bit value.
index ca55259cef83a703aa3ad646d0efca9a2dd602d0..d659ccfb6de40ae47ebabdb13efba01a6db53622 100755 (executable)
@@ -18,6 +18,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/09/14 20:56:39  bernie
  *#* Make more generic and adapt to new gfx functions.
  *#*
@@ -32,7 +35,7 @@
 #define MWARE_CHARTS_H
 
 #include <mware/gfx.h> /* vcoord_t */
-#include <config.h> /* CONFIG_ stuff */
+#include <cfg/config.h> /* CONFIG_ stuff */
 
 /*!
  * \name Width/height of the small ticks drawn over the axes
index 5ad39c0092539343a7a90c4d7c791defde1ea873..79f814d364101bedc2970b33d5c0ea77b3e3c4c2 100755 (executable)
@@ -24,6 +24,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.4  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -40,7 +43,7 @@
 #ifndef CRC_H
 #define CRC_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 #ifdef __cplusplus
 extern "C" {
index e8eb6d942f26a61cc9d04c8578ffdc68182f0faa..7edfa7bd5ae8e7e23bf4fcb59d32249c7ffde66e 100755 (executable)
@@ -43,6 +43,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.20  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.19  2004/12/08 08:30:12  bernie
  *#* Add missing header.
  *#*
@@ -96,8 +99,8 @@
 #ifndef MWARE_FIFO_H
 #define MWARE_FIFO_H
 
-#include <cpu.h>
-#include <debug.h>
+#include <cfg/cpu.h>
+#include <cfg/debug.h>
 
 typedef struct FIFOBuffer
 {
index cdc0142a2500b5c687fe6586ca5176830bde8a4b..829c263f191bdae92f851902dfb55805ba9dc7d4 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2005/03/01 23:26:45  bernie
  *#* Use new CPU-neutral program-memory API.
  *#*
@@ -39,7 +42,7 @@
 #ifndef MWARE_FONT_H
 #define MWARE_FONT_H
 
-#include <compiler.h> /* uint8_t */
+#include <cfg/compiler.h> /* uint8_t */
 #include <mware/pgm.h> /* PROGMEM */
 
 /*!
index 54d0640847d7da4a07fa9e4c5cb60ee452888198..1e4ae0c9c44311c1dd689ff889c8fe742222bc23 100755 (executable)
@@ -53,6 +53,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.15  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.14  2005/03/01 23:26:22  bernie
  *#* Use shared hextab.
  *#*
@@ -78,8 +81,8 @@
 #include "formatwr.h"
 #include <mware/pgm.h>
 #include <mware/hex.h>
-#include <config.h> /* CONFIG_ macros */
-#include <debug.h> /* ASSERT */
+#include <cfg/config.h> /* CONFIG_ macros */
+#include <cfg/debug.h> /* ASSERT */
 
 #ifndef CONFIG_PRINTF_N_FORMATTER
        /*! Disable the arcane %n formatter. */
index 3be5896fe0814a7b0a877c22cabdd1ee9d3d6f13..001b86a6e93c313717b37a873a2b8e50946e008d 100755 (executable)
@@ -12,6 +12,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.8  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.7  2005/02/16 20:28:03  bernie
  *#* Add %S formatter.
  *#*
@@ -38,8 +41,8 @@
 #define MWARE_FORMATWR_H
 
 #include <stdarg.h> /* va_list */
-#include <config.h>
-#include <cpu.h>    /* CPU_HARVARD */
+#include <cfg/config.h>
+#include <cfg/cpu.h>    /* CPU_HARVARD */
 
 /*!
  * \name _formatted_write() configuration
index 6d164f18e5939f542d0378bcfa0287c53e4e9a76..8f1174520e9df1856e2c3180b55318b992b8f5f4 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.13  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.12  2005/03/01 23:26:45  bernie
  *#* Use new CPU-neutral program-memory API.
  *#*
  *#*/
 
 #include "gfx.h"
-#include "config.h"  /* CONFIG_GFX_CLIPPING */
-#include <debug.h>
-#include <cpu.h>     /* CPU_HARVARD */
-#include <macros.h>  /* SWAP() */
+#include <cfg/config.h>  /* CONFIG_GFX_CLIPPING */
+#include <cfg/debug.h>
+#include <cfg/cpu.h>     /* CPU_HARVARD */
+#include <cfg/macros.h>  /* SWAP() */
 
 #include <string.h>
 
index ab10712ad747782c3ba881464ece756a9ed7df4d..b0a3a2f135b6a46ac9e7963e30ca8f918cdadc23 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.10  2005/03/01 23:26:45  bernie
  *#* Use new CPU-neutral program-memory API.
  *#*
@@ -45,9 +48,9 @@
 #ifndef MWARE_GFX_H
 #define MWARE_GFX_H
 
-#include <config.h>
-#include <compiler.h>
-#include <cpu.h>
+#include <cfg/config.h>
+#include <cfg/compiler.h>
+#include <cfg/cpu.h>
 
 
 /*! Common type for coordinates expressed in pixel units */
index 72aae36d4aa0cbe1913edf00a7e7b4bcc68dfbe8..bfc8bc0ec6a0b1510be0fb5aba68bbe8a583ee34 100755 (executable)
@@ -61,6 +61,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.4  2004/12/08 09:42:30  bernie
  *#* Suppress warning.
  *#*
@@ -95,8 +98,8 @@
  *#*/
 
 #include "hashtable.h"
-#include <debug.h>
-#include <compiler.h>
+#include <cfg/debug.h>
+#include <cfg/compiler.h>
 
 #include <string.h>
 
index a55b3f7ab3f2904cb0e63a7b4bcbe7278d06dab1..c6da451a7e88084ca1389bbb2b985d9d0e677fbc 100755 (executable)
@@ -31,6 +31,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.5  2004/10/03 20:43:22  bernie
  *#* Import changes from sc/firmware.
  *#*
@@ -57,9 +60,9 @@
 #ifndef MWARE_HASHTABLE_H
 #define MWARE_HASHTABLE_H
 
-#include <compiler.h>
-#include <macros.h>
-#include <debug.h>
+#include <cfg/compiler.h>
+#include <cfg/macros.h>
+#include <cfg/debug.h>
 
 /*!
  * Enable/disable support to declare special hash tables which maintain a copy of
index f1315505e6eaf06265a8770694eccca4b9c8b9c4..14f7c3b7e149f7a9130cd5adfc933c11353ab972 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.6  2004/10/26 09:02:13  bernie
  *#* heap_free(): Handle NULL pointers like free(), write documentation.
  *#*
@@ -34,8 +37,8 @@
 
 #include "heap.h"
 #include <string.h>           // memset()
-#include <macros.h>           // IS_POW2()
-#include <debug.h>            // ASSERT()
+#include <cfg/macros.h>           // IS_POW2()
+#include <cfg/debug.h>            // ASSERT()
 
 /* NOTE: struct size must be a 2's power! */
 typedef struct _MemChunk
index 2635dff1594f9d8e58c12d7f4e9e1e7a8788b02b..ccc02654ccb6f87df63e521eb27e09b61855fafb 100755 (executable)
@@ -20,6 +20,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.3  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -40,8 +43,8 @@
 #ifndef MWARE_HEAP_H
 #define MWARE_HEAP_H
 
-#include <compiler.h>
-#include <config.h>
+#include <cfg/compiler.h>
+#include <cfg/config.h>
 
 struct _MemChunk;
 
index e2830054f70a1a420b1ffcef25da4c4e0ead58ff..7b84821169d3ab455272e00ca91b2e7ab130d7df 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.3  2004/12/31 16:43:23  bernie
  *#* Move seek function last in VT.
  *#*
@@ -27,7 +30,7 @@
 #ifndef MWARE_KFILE_H
 #define MWARE_KFILE_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 /* fwd decl */
 struct _KFile;
index e28abb43da95097c2e1bcfe03a3bf0021c6da908..5b0accde7d911113d3afcb2be2f3aeb582642946 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.13  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.12  2005/01/22 04:21:32  bernie
  *#* Add integrity checks.
  *#*
@@ -56,7 +59,7 @@
 #ifndef MWARE_LIST_H
 #define MWARE_LIST_H
 
-#include <compiler.h> // INLINE
+#include <cfg/compiler.h> // INLINE
 
 /*!
  * This structure represents a node for bidirectional lists.
index 20bb416e3aab2e202629bf562b3681a8d0db7549..87b46b2822c49ba598766fb9163cef380d5e9b65 100755 (executable)
@@ -22,7 +22,7 @@
 #ifndef MWARE_PGM_H
 #define MWARE_PGM_H
 
-#include <cpu_detect.h>
+#include <cfg/cpu_detect.h>
 
 #if CPU_AVR
 
index 739be28d8f9787d3277e96f3d2e40e1ce69b3c1b..b33098cc3aeb7e7a7d75795f62d8d9f6b69a08f6 100755 (executable)
@@ -13,6 +13,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.3  2004/12/08 08:09:01  bernie
  *#* Add missing header.
  *#*
@@ -20,7 +23,7 @@
 #ifndef MWARE_POOL_H
 #define MWARE_POOL_H
 
-#include <macros.h>
+#include <cfg/macros.h>
 #include <mware/list.h>
 
 #define EXTERN_POOL(name) \
index b756fb1dec503112d7a0c0ae664470c70db197dd..6ce8e0da5031c69e610d7b0b21aaf27ab6d80949 100755 (executable)
@@ -13,6 +13,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.10  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.9  2005/02/18 12:48:01  bernie
  *#* Fix bug with NULL buffers (caught with unit test).
  *#*
@@ -42,7 +45,7 @@
 
 #include <mware/formatwr.h>
 #include <mware/pgm.h>
-#include "compiler.h"
+#include <cfg/compiler.h>
 
 #include <stdio.h>
 
index e41a98e834560903a63efd5a5ab9fcb1e7e3aded..ab44f5c7906f860963b5bdb3ae11432626b35fa1 100755 (executable)
@@ -13,6 +13,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.1  2005/03/15 00:06:30  bernie
  *#* Simpler, smaller, faster.
  *#*
@@ -21,7 +24,7 @@
 #ifndef MWARE_STRTOL10_H
 #define MWARE_STRTOL10_H
 
-#include <compiler.h> /* bool */
+#include <cfg/compiler.h> /* bool */
 
 bool strtoul10(const char *first, const char *last, unsigned long *val);
 bool strtol10(const char *first, const char *last, long *val);
index 692119119b32f29f444af74ea7594be07551cb0e..f84fe222743583e357dafe2ed1ee45d8c7ba4a2e 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.12  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.11  2005/01/20 18:46:31  aleph
  *#* Fix progmem includes.
  *#*
@@ -68,7 +71,7 @@
 #include "font.h"
 #include "text.h"
 
-#include <debug.h>
+#include <cfg/debug.h>
 
 
 /*!
index 1f8bd89463496dced16fca7d7cdfa1ffd140b160..433a88abe124089270207c52b3e3183a28b167ef 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.10  2005/03/01 23:26:46  bernie
  *#* Use new CPU-neutral program-memory API.
  *#*
@@ -47,9 +50,9 @@
 #ifndef MWARE_TEXT_H
 #define MWARE_TEXT_H
 
-#include <compiler.h>
-#include <macros.h> /* BV() */
-#include <cpu.h> /* CPU_HARVARD */
+#include <cfg/compiler.h>
+#include <cfg/macros.h> /* BV() */
+#include <cfg/cpu.h> /* CPU_HARVARD */
 
 #include <stdarg.h>
 
index 8c01a5b393c49c1195af56d41fd154193b0c00f4..20423fba821b82d8017410abb3420ecb9d107d5b 100755 (executable)
--- a/verstag.h
+++ b/verstag.h
@@ -16,7 +16,7 @@
 #define DEVLIB_VERSTAG_H
 
 #ifndef ARCH_CONFIG_H
-       #include "arch_config.h"
+       #include <cfg/arch_config.h>
 #endif
 
 #define APP_NAME "Appname"