RoboidControl
Loading...
Searching...
No Matches
d:/PlatformIO/RoboidControl/Types.h
Go to the documentation of this file.
1#pragma once
2
3using UInt8 = unsigned char;
4using SInt8 = signed char;
5using Int8 = SInt8;
6
7using UInt16 = unsigned short;
8using SInt16 = signed short;
9using Int16 = SInt16;
10
11#ifdef ARDUINO_AVR_UNO
12using UInt32 = unsigned long;
13using SInt32 = signed long;
14#else
15using UInt32 = unsigned int;
16using SInt32 = signed int;
17#endif
18using Int32 = SInt32;
19
20using UInt64 = unsigned long long;
21using SInt64 = signed long long;
22using Int64 = SInt64;
signed long SInt32
Definition Types.h:13
SInt8 Int8
Definition Types.h:5
SInt32 Int32
Definition Types.h:18
SInt64 Int64
Definition Types.h:22
unsigned long UInt32
Definition Types.h:12
signed char SInt8
Definition Types.h:4
unsigned short UInt16
Definition Types.h:7
unsigned char UInt8
Definition Types.h:3
unsigned long long UInt64
Definition Types.h:20
SInt16 Int16
Definition Types.h:9
signed short SInt16
Definition Types.h:8
signed long long SInt64
Definition Types.h:21