Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Integer types

Specified-width integer type definitions for shorter and nicer code. More...

Typedefs

typedef int8_t s8
 Signed 8-bit integer. More...
 
typedef int16_t s16
 Signed 16-bit integer. More...
 
typedef int32_t s32
 Signed 32-bit integer. More...
 
typedef int64_t s64
 Signed 64-bit integer. More...
 
typedef uint8_t u8
 Unsigned 8-bit integer. More...
 
typedef uint16_t u16
 Unsigned 16-bit integer. More...
 
typedef uint32_t u32
 Unsigned 32-bit integer. More...
 
typedef uint64_t u64
 Unsigned 64-bit integer. More...
 

Detailed Description

Specified-width integer type definitions for shorter and nicer code.

These should be used in preference to unspecified width types such as int which can lead to portability issues between different platforms.

Typedef Documentation

◆ s16

typedef int16_t s16

Signed 16-bit integer.

Definition at line 35 of file common.h.

◆ s32

typedef int32_t s32

Signed 32-bit integer.

Definition at line 37 of file common.h.

◆ s64

typedef int64_t s64

Signed 64-bit integer.

Definition at line 39 of file common.h.

◆ s8

typedef int8_t s8

Signed 8-bit integer.

Definition at line 33 of file common.h.

◆ u16

typedef uint16_t u16

Unsigned 16-bit integer.

Definition at line 43 of file common.h.

◆ u32

typedef uint32_t u32

Unsigned 32-bit integer.

Definition at line 45 of file common.h.

◆ u64

typedef uint64_t u64

Unsigned 64-bit integer.

Definition at line 47 of file common.h.

◆ u8

typedef uint8_t u8

Unsigned 8-bit integer.

Definition at line 41 of file common.h.