o add usb test

This commit is contained in:
david
2009-02-17 09:36:51 +01:00
parent 4fad7cab6d
commit 920913d9e1
27 changed files with 3285 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
int printf(const char *format, ...);
#ifdef DEBUG
#define DBG printf
#define ASSERT(x) if(!(x)){DBG("\nAssertion '%s' failed in %s:%s#%d!\n",#x,__FILE__,__FUNCTION__,__LINE__);while(1);}
#else
#define DBG(x ...)
#define ASSERT(x)
#endif