diff options
| author | hathach <[email protected]> | 2015-05-01 18:34:08 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2015-05-01 18:34:08 +0700 |
| commit | 9218d1e8bb9fd6cb37358c9e08f6ff9849c6110c (patch) | |
| tree | 902d45c86f4f28564e620217cc8a5810a37ba443 /tinyusb/hal | |
| parent | 6dbd580b5398cf9e7a4b847b77539fe3f9ae9558 (diff) | |
replace ATTR_PACKED_STRUCT by simply ATTR_PACKED (drop IAR support)
remove "primitive_types.h" by simply include stdbool.h, stdint.h
Diffstat (limited to 'tinyusb/hal')
| -rw-r--r-- | tinyusb/hal/hal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h index da7ef63c7..24e39289d 100644 --- a/tinyusb/hal/hal.h +++ b/tinyusb/hal/hal.h @@ -43,7 +43,9 @@ // INCLUDES
//--------------------------------------------------------------------+
#include "tusb_option.h"
-#include "common/primitive_types.h"
+#include <stdbool.h>
+#include <stdint.h>
+
#include "common/tusb_errors.h"
#include "common/compiler/compiler.h"
|
