代码搜索:sbit
找到约 10,000 项符合「sbit」的源代码
代码结果 10,000
www.eeworm.com/read/446733/7103502
c k.c
#include
unsigned char buff[9]={0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08};
unsigned char k,e,b,n,m;
sbit CS=P2^1;
sbit CLK=P2^0;
sbit SDO=P2^2;
AD()
{
b=0;
CS=1;
CLK=0;
CS
www.eeworm.com/read/356730/7113408
c lesson6_1.c
#include
sbit csda=P3^2;
sbit wr=P3^6;
void main()
{
csda=0;
wr=0;
P0=0;
while(1);
}
www.eeworm.com/read/356730/7113412
c lesson6_2.c
#include
#define uchar unsigned char
#define uint unsigned int
sbit wr=P3^6;
sbit rd=P3^7;
void delay(uint z)
{
uint t1,y;
for(t1=z;t1>0;t1--)
for(y=110;y>0;y--);
}
void init()
www.eeworm.com/read/352774/7131593
c lesson6_1.c
#include
sbit csda=P3^2;
sbit wr=P3^6;
void main()
{
csda=0;
wr=0;
P0=0;
while(1);
}
www.eeworm.com/read/352774/7131598
c lesson6_2.c
#include
#define uchar unsigned char
#define uint unsigned int
sbit wr=P3^6;
sbit rd=P3^7;
void delay(uint z)
{
uint t1,y;
for(t1=z;t1>0;t1--)
for(y=110;y>0;y--);
}
void init()
www.eeworm.com/read/149582/7137067
h fx2regs.h
//-----------------------------------------------------------------------------
// File: FX2regs.h
// Contents: EZ-USB FX2 register declarations and bit mask definitions.
//
// $Archive
www.eeworm.com/read/464436/7158927
c 3.c
#include //51芯片管脚定义头文件
#define uint unsigned int
#define uchar unsigned char
uchar timeh;
uchar timel;
sbit out=P2^0;
sbit P01=P0^1;
sbit P02=P0^2;
sbit key1=P3^0;
sbi
www.eeworm.com/read/464434/7158962
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
char code dx516[3] _at_ 0x003b;//这是为了仿真设置的
sbit P10=P1
www.eeworm.com/read/464434/7159079
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sb
www.eeworm.com/read/464434/7159227
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sb