Type aliases

This commit is contained in:
Imbus 2025-02-14 04:07:40 +01:00
parent 2bad1303dc
commit 120a61eca7

View file

@ -1,7 +1,18 @@
#include <stdint.h>
#ifndef _FUNCONFIG_H #ifndef _FUNCONFIG_H
#define _FUNCONFIG_H #define _FUNCONFIG_H
#define CH32V003 1 #define CH32V003 1
#define NULL ((void *)0)
typedef int8_t i8;
typedef uint8_t u8;
typedef int16_t i16;
typedef uint32_t u32;
typedef int32_t i32;
typedef int64_t i64;
typedef uint64_t u64;
#endif #endif