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 /examples/device/hid_multiple_interface/src/tusb_config.h | |
| parent | 417f44acab92c42338b584bd0511e51781ff2821 (diff) | |
fix Identifiers that start with '__' or '_[A-Z]' are reserved.
fix compiling with nuc family
Diffstat (limited to 'examples/device/hid_multiple_interface/src/tusb_config.h')
| -rw-r--r-- | examples/device/hid_multiple_interface/src/tusb_config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/device/hid_multiple_interface/src/tusb_config.h b/examples/device/hid_multiple_interface/src/tusb_config.h index 49dc962fe..e1805017d 100644 --- a/examples/device/hid_multiple_interface/src/tusb_config.h +++ b/examples/device/hid_multiple_interface/src/tusb_config.h @@ -23,8 +23,8 @@ * */ -#ifndef _TUSB_CONFIG_H_ -#define _TUSB_CONFIG_H_ +#ifndef TUSB_CONFIG_H_ +#define TUSB_CONFIG_H_ #ifdef __cplusplus extern "C" { @@ -104,4 +104,4 @@ } #endif -#endif /* _TUSB_CONFIG_H_ */ +#endif /* TUSB_CONFIG_H_ */ |
