?? config._h
字號(hào):
/************************************************
文件:config.h
用途:系統(tǒng)配置函數(shù)
注意:
創(chuàng)建:2008.1.26
修改:2008.1.26
Copy Right (c) www.avrvi.com AVR與虛擬儀器
************************************************/
#ifndef __config_H__
#define __config_H__
/*********************************************/
#define M8 1
#define M16 2
#define M32 3
#define M64 4
#define M128 5
/*********************************************/
#define CPU_TYPE M128
#define F_CPU 8000000
#if CPU_TYPE == M128
#include <iom128v.h>
#endif
#if CPU_TYPE == M64
#include <iom64v.h>
#endif
#if CPU_TYPE == M32
#include <iom32v.h>
#endif
#if CPU_TYPE == M16
#include <iom16v.h>
#endif
#if CPU_TYPE == M8
#include <iom8v.h>
#endif
#include <macros.h>
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif
#include "lib\TWI.h"
#include "lib\delay.h"
#include "lib\AT24C01.h"
#include "lib\sio.h"
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -