代码搜索:sbit
找到约 10,000 项符合「sbit」的源代码
代码结果 10,000
www.eeworm.com/read/389036/8551632
c main.c
#define uchar unsigned char //定义一下方便使用
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sbit P12 = P1^2;
sbit P13 = P1^3;
bit ldelay=0; //长定时溢出
www.eeworm.com/read/389036/8551664
c main.c
#define uchar unsigned char //定义一下方便使用
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sbit P12 = P1^2;
sbit P13 = P1^3;
bit ldelay=0; //长定时
www.eeworm.com/read/389036/8551709
c main.c
#define uint unsigned int
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //要控制的LED灯
sbit K1= P3^2; //按键K1
void main(void) // 主程序
{
bit light; //位变量
uint n;
while(1) //程序循环
www.eeworm.com/read/389036/8551845
c main.c
#define uchar unsigned char //定义一下方便使用
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sbit P12 = P1^2;
sbit P13 = P1^3;
sbit K1= P2^0;
sb
www.eeworm.com/read/389036/8551856
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sbit P12 = P1^2;
sbit P13 = P1
www.eeworm.com/read/389036/8551941
c main.c
#define uint unsigned int
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sbit P12 = P1^2;
sbit P13 = P1^3;
void main(void) // 主程序
{
uint n
www.eeworm.com/read/432804/8572905
c led.c
#include
#include
#include
sbit DIN=P1^0;
sbit CLK=P1^1;
sbit LOAD=P1^2;
sbit KEY1=P1^3;
sbit KEY2=P1^4;
unsigned char KEYKEY=5;
void inputa(unsigned char aa)
www.eeworm.com/read/188038/8577757
lst main.lst
C51 COMPILER V6.23a MAIN 11/24/2002 21:27:04 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN m
www.eeworm.com/read/188038/8577771
c main.c
#ifdef MONITOR51 /* Debugging with Monitor-51 needs */
char code reserve [3] _at_ 0x23; /* space for serial interrupt if */
#endif
www.eeworm.com/read/388744/8579685
c lesson6_1.c
#include
sbit csda=P3^2;
sbit wr=P3^6;
void main()
{
csda=0;
wr=0;
P0=0;
while(1);
}