2024-01-12 17:16:08 +01:00

23 lines
437 B
C

#pragma once
using UInt8 = unsigned char;
using SInt8 = signed char;
using Int8 = SInt8;
using UInt16 = unsigned short;
using SInt16 = signed short;
using Int16 = SInt16;
#ifdef ARDUINO_AVR_UNO
using UInt32 = unsigned long;
using SInt32 = signed long;
#else
using UInt32 = unsigned int;
using SInt32 = signed int;
#endif
using Int32 = SInt32;
using UInt64 = unsigned long long;
using SInt64 = signed long long;
using Int64 = SInt64;