代码搜索:H型风机
找到约 10,000 项符合「H型风机」的源代码
代码结果 10,000
www.eeworm.com/read/292109/8376795
h display.h
#ifndef __DISPLAY_H__
#define __DISPLAY_H__
#include "figure.h"
#define DIRECT_DISPLAY 0
#define FONTSIZE_SMALL 1
#define FONTSIZE_MIDDLE 2
#define FONTSIZE_BIG 3
#define FONT_TR
www.eeworm.com/read/292109/8376797
h exio.h
#ifndef __EXIO_H__
#define __EXIO_H__
#define EXIOADDR (*(volatile unsigned short*)0xa000000) //bank5
extern unsigned short int EXIOReg;
#define SETEXIOBIT(bit) do{EXIOReg|=bit; EXIOADDR
www.eeworm.com/read/192522/8376799
h includes.h
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/292109/8376804
h loadfile.h
#ifndef __LOADFILE_H__
#define __LOADFILE_H__
#define LOAD_24FONT_EN 0 //装载24x24的字模文件
#define LOADU12FONT 1
#define LOADU16FONT 2
#define LOADU24FONT 4
U8 LoadFont(void);
U8 LoadSYS(voi
www.eeworm.com/read/292109/8376805
h directdisplay.h
#ifndef __DIRECTDISPLAY_H__
#define __DIRECTDISPLAY_H__
#include "figure.h"
#include "..\inc\drv\display.h"
#if DIRECT_DISPLAY==1
#define COLORDEPTH_GRAY 0
//#define COLORD
www.eeworm.com/read/292109/8376808
h maro.h
#ifndef __MARO_H__
#define __MARO_H__
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)>(b)?(b):(a))
#define ABS(a) ((a)>=0?(a):(-(a)))
#endif
www.eeworm.com/read/292109/8376810
h bitops.h
/*These are the standard ANSI bit operation macros. They are used by */
/*microcontrollers that don't have special bit operation instructions.*/
#define BIT(x) (1
www.eeworm.com/read/292109/8376812
h def.h
#ifndef __DEF_H__
#define __DEF_H__
#define U32 unsigned int
#define BOOL int
#define U16 unsigned short
#define S32 int
#define S16 short int
#define U8 unsigned char
#define S8 char
#de
www.eeworm.com/read/292109/8376817
h drv.h
#include "..\inc\drv\lcd320.h"
#include "..\inc\drv\KeyBoard16.h"
#include "..\inc\drv\rtc.h"
#include "..\inc\drv\flash.h"
#include "..\inc\drv\Loadfile.h"
#include "..\inc\drv\display.h"
#incl
www.eeworm.com/read/192522/8376818
h demo.h
#ifndef __DEMO_H
#define __DEMO_H
#include "../../ucos-ii/includes.h"
#include "../drv/driver.h"
#include "../gui/gui_msg.h"
//-------------------------------Timer
void Timer_Task(voi