📄 config.h
字号:
/*
**********************************Copyright (c) ****************************
* cwg
* All Rights Reserved
* QQ:7084394
*
*---------------------------------File Info---------------------------------
*File Name :config.h
*Descriptor :
*Create By :ChenWeiGuo
*Create Date :2007-4-27
*Version :V1.0
*Note :
*
*---------------------------------------------------------------------------
*Modified By :
*Modified Date :
*Version :
*Note :
*
****************************************************************************
*/
/*操作系统头文件*/
#include <avrx-io.h>
#include <avrx-signal.h>
#include "avrx.h"
/*系统文件*/
#include <avr\pgmspace.h>
#include <math.h>
#include <string.h>
/*数据类型定义*/
typedef unsigned char uint8;
typedef signed char int8;
typedef unsigned int uint16;
typedef signed int int16;
/*应用头文件*/
#include "hardware.h"
#include "uart.h"
/*系统定义*/
#define OK 1
#define ERROR 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -