代码搜索:sbit

找到约 10,000 项符合「sbit」的源代码

代码结果 10,000
www.eeworm.com/read/442566/7649349

c 改的循迹.c

#include"reg52.h" #define uchar unsigned char #define uint unsigned int sbit DZ=P1^0; sbit DY=P1^1; sbit D1=P1^2; sbit D2=P1^3; sbit EN1=P2^0; sbit EN2=P2^1; sbit IN1=P2^2; sbit IN2=P2^3; s
www.eeworm.com/read/441307/7672052

h cs5532.h

#pragma ot(4) sbit cs5532_cs =P0^0; sbit cs5532_clk =P0^1; sbit cs5532_sdo =P0^2; sbit cs5532_sdi =P0^3;
www.eeworm.com/read/440994/7678242

txt 步进电机转动控制-集成驱动模块.txt

#include "reg51.h" sbit p14=P1^4; //控制方向 sbit p15=P1^5; //驱动脉冲 sbit p16=P1^6; //脱机电平 sbit P3_4=P3^4; //控制百位 sbit P3_5=P3^5; // 控制十位 sbit P3_6=P3^6; // 控制个位 sbit P3_7=P3^7; // 确认键 un
www.eeworm.com/read/440268/7691299

c wanyong1.c

#include #include #define uchar unsigned char #define uint unsigned int sbit ALE=P2^3; sbit START=P2^4; sbit OE=P2^5; sbit EOC=P3^7; sbit xs=P1^7; sbit key1=P3^5; sbit ke
www.eeworm.com/read/438192/7734767

c ds18b20.c

/****************************************************************/ /*数码管驱动演示程序,只给出了基本的原理,实现需独立思考*********/ /*By Tony 2008.5.13 */ /**********************
www.eeworm.com/read/433612/7919197

c 转弯.c

/************************************************************** 头文件预处理: **************************************************************/ #include #include #include
www.eeworm.com/read/196958/8038470

lst startup400.lst

AX51 MACRO ASSEMBLER STARTUP400 01/24/07 12:40:12 PAGE 1 MACRO ASSEMBLER AX51 V2.14 OBJECT MODULE PLACED IN startup400.OBJ ASSEMB
www.eeworm.com/read/145270/12740700

h main.h

sbit TXDK =P3^1; void main(); void DelayMs(unsigned int time);
www.eeworm.com/read/328969/12992377

c globals.c

//----------------------------------------------------------------------------- // File: globals.c // Contents: contains all the global variables used by the firmware // // indent 3.
www.eeworm.com/read/239154/13300892

c 用键盘控制led.c

#include //对51内部资源说明 sbit K1=P1^0;//位定义 sbit K2=P1^1; sbit P30=P3^0; void main(void)//无返回值,无参数函数 { while(1) //循环=for(;;) { if(!K1) //判断如果K1=0则P30=0 { P30=0; } if(!K2) //判断