代码搜索:自举升压结构

找到约 10,000 项符合「自举升压结构」的源代码

代码结果 10,000
www.eeworm.com/read/363593/9943818

h menu.h

// menu.h // #ifndef __MENU_H #define __MENU_H #include "includes.h" // Menu Item 菜单信息数据结构 typedef struct { uchar strChinese[10]; // 5个汉字 uchar Mode; // show mode
www.eeworm.com/read/363593/9943851

c menu.c

// menu.c // #include "includes.h" // 菜单信息结构 MenuInfor MenuInforFile = {"文件",1,20,10,24,12,1,4}; MenuInfor MenuInforNew = {"新建",1,20,10,24,12,1,2}; MenuInfor MenuInforEmpy
www.eeworm.com/read/166904/9990507

h datastruct.h

/////////////////////////// //待校表库数据结构 typedef struct _CDjbkData { //校表参数 char jbh[25]; char ccbh[25]; char dbxh[25]; char jxfs[25]; char eddy[4]; char eddl[4]; char dbcs[4];
www.eeworm.com/read/362558/9992486

h seqstring.h

#define MAXLEN 40 typedef struct { /*串结构定义*/ char ch[MAXLEN]; int len; }SString; void createstring(SString *s) { int i,j; char c; printf("请输入要建立的串的长度:"); scanf("%d",
www.eeworm.com/read/166809/9997243

c iic.c

#include "iic.h" #define I2CDELAY(iterations) { \ volatile Int j; \ for(j = 0; j < iterations; j ++); \ } #define DELAY_TIME 0x4000 /*SEEDDM642的IIC的设置结构
www.eeworm.com/read/166676/10008649

m imagedilate.m

%-------------------------------------------------------------------------- % image dilation function % % result: 膨胀图像中灰度值为黑色的像素 % % principle: % 对结构元素为黑色的那些像素点,根据它们各自的坐标值,平移原始图像, %
www.eeworm.com/read/166053/10039260

h c3-2.h

/* c3-2.h 单链队列--队列的链式存储结构 */ typedef struct QNode { QElemType data; struct QNode *next; }QNode,*QueuePtr; typedef struct { QueuePtr front,rear; /* 队头、队尾指针 */ }LinkQueue;
www.eeworm.com/read/359477/10143746

h menu.h

// menu.h // #ifndef __MENU_H #define __MENU_H #include "includes.h" // Menu Item 菜单信息数据结构 typedef struct { uchar strChinese[10]; // 5个汉字 uchar Mode; // show mode
www.eeworm.com/read/359477/10143795

c menu.c

// menu.c // #include "includes.h" // 菜单信息结构 MenuInfor MenuInforFile = {"文件",1,20,10,24,12,1,4}; MenuInfor MenuInforNew = {"新建",1,20,10,24,12,1,2}; MenuInfor MenuInforEmpy
www.eeworm.com/read/163470/10158913

c fatinit.c

#ifndef _FAT_DEFINE #include "FAT.c" #endif void FATInit(void); void FATInit(void) { register BYTE i; DPT = (struct DPTStr *)(DiskBuffer+0x1be); //分区表结构指针 BOOTSEC = (struct BootSec