⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xtype.h

📁 关于MSP430与SD卡的FAT16文件系统
💻 H
字号:
#ifndef __XTYPE_H__
#define __XTYPE_H__

#define _MCS51_ 1

#ifdef _MCS51_
    typedef unsigned char uint8;
    typedef unsigned int uint16;
    typedef unsigned long uint32;

    typedef char int8;
    typedef int int16;
    typedef long int32;

    
    typedef uint8 bit;
#else

    typedef unsigned char uint8;
    typedef unsigned short uint16;
    typedef unsigned int uint32;

    typedef char int8;
    typedef short int16;
    typedef int int32;

    typedef unsigned char bool;
#endif  
    
    
typedef uint8 uint8_t;
typedef uint16 uint16_t;
typedef uint32 uint32_t;

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -