Specific the directory for all hw and cfg module. Use double quote for cfg and hw...
[bertos.git] / bertos / cpu / avr / drv / kdebug_avr.c
index 3e1bdfda3936b08a18bc9da6810e5066835ffa97..34c1de9879490b283a1b176c042dbe46f2221bc7 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-#include "hw_cpu.h"     /* for CLOCK_FREQ */
-#include "hw_ser.h"     /* Required for bus macros overrides */
+#include "hw/hw_cpu.h"     /* for CLOCK_FREQ */
+#include "hw/hw_ser.h"     /* Required for bus macros overrides */
 
-#include <cfg/cfg_debug.h>
+#include "cfg/cfg_debug.h"
 #include <cfg/macros.h> /* for BV(), DIV_ROUND */
 
 #include <cpu/types.h>
@@ -54,7 +54,7 @@
 
        /*
         * Support for special bus policies or external transceivers
-        * on UART0 (to be overridden in "hw_ser.h").
+        * on UART0 (to be overridden in "hw/hw_ser.h").
         *
         * HACK: if we don't set TXEN, kdbg disables the transmitter
         * after each output statement until the serial driver
 
        /*
                * Support for special bus policies or external transceivers
-               * on UART1 (to be overridden in "hw_ser.h").
+               * on UART1 (to be overridden in "hw/hw_ser.h").
                *
                * HACK: if we don't set TXEN, kdbg disables the transmitter
                * after each output statement until the serial driver
  * Special debug port for BitBanged Serial see below for details...
  */
 #elif CONFIG_KDEBUG_PORT == 666
-       #include "hw_ser.h"
+       #include "hw/hw_ser.h"
        #define KDBG_WAIT_READY()      do { /*nop*/ } while(0)
        #define KDBG_WRITE_CHAR(c)     _kdebug_bitbang_putchar((c))
        #define KDBG_MASK_IRQ(old)     do { IRQ_SAVE_DISABLE((old)); } while(0)