X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=cpu%2Fdsp56k%2Fdrv%2Fkdebug_dsp56k.c;h=2510b6d5e4b4ae774b62e80627ffdcc578dc0519;hb=HEAD;hp=67c9a9db45bc4ab0b87232d58e0088196ae108c2;hpb=27fef4ed34eb237817defa14242e726ccad70948;p=bertos.git diff --git a/cpu/dsp56k/drv/kdebug_dsp56k.c b/cpu/dsp56k/drv/kdebug_dsp56k.c deleted file mode 100644 index 67c9a9db..00000000 --- a/cpu/dsp56k/drv/kdebug_dsp56k.c +++ /dev/null @@ -1,54 +0,0 @@ -/** - * \file - * - * - * \brief General pourpose debug support for embedded systems (implementation). - * - * \version $Id$ - * \author Bernardo Innocenti - * \author Stefano Fedrigo - */ - -#error Revise me! - -/* Debugging go through the JTAG interface. The MSL library already - implements the console I/O correctly. */ -#include -#define KDBG_WAIT_READY() do { } while (0) -#define KDBG_WRITE_CHAR(c) __put_char(c, stdout) -#define KDBG_MASK_IRQ(old) do { (void)(old); } while (0) -#define KDBG_RESTORE_IRQ(old) do { (void)(old); } while (0) -typedef uint8_t kdbg_irqsave_t; /* unused */ -#if CONFIG_KDEBUG_PORT == 666 - #error BITBANG debug console missing for this platform - -#define kdbg_hw_init() do {} while (0) ///< Not needed