summaryrefslogtreecommitdiff
path: root/tinyusb/common/common.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-02-28 17:00:51 +0700
committerhathach <[email protected]>2013-02-28 17:00:51 +0700
commit795fe7468d35b62987cee07d35c7cf452447ea70 (patch)
tree8be32c99910341d1b9671b8d047c26da04e1c697 /tinyusb/common/common.h
parent82bd4719ce1ab3d67c6d5f32973312250b8a443c (diff)
start to add code for hcd_init test
change hcd_init signature (omit hostid)
Diffstat (limited to 'tinyusb/common/common.h')
-rw-r--r--tinyusb/common/common.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/tinyusb/common/common.h b/tinyusb/common/common.h
index 0f02cb3f0..76e38c0a0 100644
--- a/tinyusb/common/common.h
+++ b/tinyusb/common/common.h
@@ -76,15 +76,6 @@
#include "core/std_descriptors.h"
#include "core/std_request.h"
-// TODO try to manipulate gcc cmd option instead
-#ifndef _TEST_
- #define STATIC_ static
- #define INLINE_ inline
-#else
- #define STATIC_
- #define INLINE_
-#endif
-
#define STRING_(x) #x // stringify without expand
#define XSTRING_(x) STRING_(x) // expand then stringify
#define STRING_CONCAT_(a, b) a##b // concat without expand