diff options
| author | hathach <[email protected]> | 2025-10-28 13:21:38 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-10-28 14:14:01 +0700 |
| commit | d92b810df7670aae0e195fd02abef5014470c2f7 (patch) | |
| tree | 483d0928f9c1f5bd75770b23d9309dcb5113312c /src/common/tusb_debug.h | |
| parent | 417f44acab92c42338b584bd0511e51781ff2821 (diff) | |
fix Identifiers that start with '__' or '_[A-Z]' are reserved.
fix compiling with nuc family
Diffstat (limited to 'src/common/tusb_debug.h')
| -rw-r--r-- | src/common/tusb_debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/tusb_debug.h b/src/common/tusb_debug.h index 86517b9c9..e3f9d3f18 100644 --- a/src/common/tusb_debug.h +++ b/src/common/tusb_debug.h @@ -24,8 +24,8 @@ * This file is part of the TinyUSB stack. */ -#ifndef _TUSB_DEBUG_H_ -#define _TUSB_DEBUG_H_ +#ifndef TUSB_DEBUG_H_ +#define TUSB_DEBUG_H_ #ifdef __cplusplus extern "C" { @@ -168,4 +168,4 @@ static inline const char* tu_lookup_find(tu_lookup_table_t const* p_table, uint3 } #endif -#endif /* _TUSB_DEBUG_H_ */ +#endif |
