代码搜索:内核模式

找到约 10,000 项符合「内核模式」的源代码

代码结果 10,000
www.eeworm.com/read/267017/11197846

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/333829/12659513

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/333821/12659772

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/333821/12659887

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/236095/14031942

c main.c

/* 本例程uCOS-II 版本为2.51,仅创建一个LED闪烁任务于 P1.0 上,每隔 0.5 秒闪动一次,任务而此例程运行于内 RAM > 300 Byte 的51内核单片机即可。*/ #include "includes.h" sbit LED=P1^0; OS_STK TaskStartStk[MaxStkSize]; void Task(void *ppdata) {
www.eeworm.com/read/290781/8462073

txt gprs_at.txt

GPRS AT 指令中文(1) FUNCTIONS AT COMMANDS DETAILS 厂家认证 AT+CGMI 获得厂家的标识 模式认证 AT+CGMM 查询支持频段 修订认证 AT+CGMR 查询软件版本 生产序号 AT+CGSN 查询IMEI NO. TE设置 AT+CSCS 选择支持网络 查询IMSI AT+CIMI 查
www.eeworm.com/read/188543/8529473

m 7-4.m

t = 0:pi/50:10*pi; i=1; h=plot3(sin(t(i)),cos(t(i)),t(i),'*','erasemode','none'); %设定擦除模式 grid on axis([-2 2 -2 2 -1 10*pi]) title '程序动画示例' for i=2:length(t) set(h,'xdata',sin(t(i)),'
www.eeworm.com/read/289651/8537435

h uart.h

/* 定义串口模式设置数据结构 */ typedef struct UartMode { uint8 datab; // 字长度,5/6/7/8 uint8 stopb; // 停止位,1/2 uint8 parity; // 奇偶校验位,0为无校验,1奇数校验,2为偶数校验 }UARTMODE
www.eeworm.com/read/389095/8548343

c adc.c

#include "adc.h" int gain; void Init_CLK(void) { unsigned int i; //将寄存器的内容清零 //XT2震荡器开启 //LFTX1工作在低频模式 //ACLK的分频因子为1 BCSCTL1 = 0X00; do {
www.eeworm.com/read/286264/8777853

c tputchar.c

#include #include void tst_putchar (void) { unsigned char i; for (i = 0x20; i < 0x7F; i++) putchar (i); } void main() { SCON = 0x50; /*SCON:工作模式1,8-bit UART,允许接收*/