14 lines
266 B
C
14 lines
266 B
C
|
#ifndef _DEBUG_H_
|
||
|
#define _DEBUG_H_
|
||
|
#include <SWM320.h>
|
||
|
#include <SWM320_uart.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <type.h>
|
||
|
|
||
|
void PutChar(char c);
|
||
|
void Printf(const char *format,...);
|
||
|
void DebugInit(void);
|
||
|
#endif
|