SikendeRTOS
RTOS for ARM Cortex M3+ SoCs designed and written from scratch
cpu_vars.h
Go to the documentation of this file.
1
7#ifndef __CPU_VARS_H
8#define __CPU_VARS_H
9
10#include <stdint.h>
11
12
13typedef uint8_t INT8U;
14typedef uint16_t INT16U;
15typedef uint32_t INT32U;
16typedef uint64_t INT64U;
17typedef int8_t INT8;
18typedef int16_t INT16;
19typedef int32_t INT32;
20typedef int64_t INT64;
21typedef char CHAR;
22
23
24
25#endif // __CPU_VARS_H
26
int8_t INT8
Definition: cpu_vars.h:17
int64_t INT64
Definition: cpu_vars.h:20
int32_t INT32
Definition: cpu_vars.h:19
uint64_t INT64U
Definition: cpu_vars.h:16
uint32_t INT32U
Definition: cpu_vars.h:15
uint16_t INT16U
Definition: cpu_vars.h:14
uint8_t INT8U
Definition: cpu_vars.h:13
int16_t INT16
Definition: cpu_vars.h:18
char CHAR
Definition: cpu_vars.h:21