diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 09:11:03 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 09:11:03 +0200 |
commit | 50d32b105f25ac3e7a8290dfacd6ca9c87ed5f72 (patch) | |
tree | 37273e02036cda0f2893c8dc512e940d2abf3414 /include | |
parent | c1a41b3ce91f2b839faf8559822c1478c12d69d8 (diff) |
add arduino-nano arch_types
Diffstat (limited to 'include')
-rw-r--r-- | include/arch/arduino-nano/arch_types.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/arch/arduino-nano/arch_types.h b/include/arch/arduino-nano/arch_types.h new file mode 100644 index 0000000..5f4e729 --- /dev/null +++ b/include/arch/arduino-nano/arch_types.h @@ -0,0 +1,7 @@ +#ifndef ARCH_TYPES_H +#define ARCH_TYPES_H + +typedef uint8_t native_uint_t; +typedef int8_t native_int_t; + +#endif |