搜索:nop
找到约 51 项符合「nop」的查询结果
结果 51
按分类筛选
https://www.eeworm.com/dl/637/475885.html
多国语言处理
H=CIRCLE(CENTER,RADIUS,NOP,STYLE) This routine draws a circle with center defined as a vector
H=CIRCLE(CENTER,RADIUS,NOP,STYLE)
This routine draws a circle with center defined as
a vector CENTER, radius as a scaler RADIS. NOP is
the number of points on the circle. As to STYLE,
use it the same way as you use the rountine PLOT.
Since the handle of the object is r ...
https://www.eeworm.com/dl/648/383511.html
单片机开发
1..怎么用C51写一个NOP语句呢? 把头文件intrins.h包含进来
1..怎么用C51写一个NOP语句呢?
把头文件intrins.h包含进来,然后在需用NOP处调用_nop_() 函数即可。
头文件intrins.h包含进来,然后在需用NOP处调用_nop_() 函数即可。
2.c51中的intrins.h库函数
_crol_ 字符循环左移
_cror_ 字符循环右移
_irol_ 整数循环左移 ...
https://www.eeworm.com/dl/648/444640.html
单片机开发
基于单片机的10根线束线缆检测器的源程序 #pragma sfr #pragma DI #pragma EI #pragma NOP //#pragma interrupt INTTM010
基于单片机的10根线束线缆检测器的源程序
#pragma sfr
#pragma DI
#pragma EI
#pragma NOP
//#pragma interrupt INTTM010 isr_INTTM000
#pragma interrupt INTTM80 isr_INTTM80
//#pragma interrupt INTTMH1 isr_INTTMH1
#pragma section @@CNST OPT AT 80H
const char OPTION=0x94
typedef un ...
https://www.eeworm.com/dl/502/31459.html
单片机编程
24c16读写驱动程序
24c16读写驱动程序,//=-------------------------------------------------------------------------------/*模块调用:读数据:read(unsigned int address)写数据:write(unsigned int address,unsigned char dd)   dd为要写的 数据字节*///------------------------------------------------ ...
https://www.eeworm.com/dl/542/190587.html
其他书籍
#include "intrins.h" unsigned char SystemError sbit SCL= P1^6 //定义串行时钟线所在口 使用时根据自己的需要 sbit SDA=
#include "intrins.h"
unsigned char SystemError
sbit SCL= P1^6 //定义串行时钟线所在口 使用时根据自己的需要
sbit SDA= P1^7 //定义串行数据线所在口 使用时根据自己的需要
#define SomeNOP() {_nop_() _nop_() _nop_() _nop_() }
https://www.eeworm.com/dl/687/172541.html
其他嵌入式/单片机内容
24C01的IIC 读写的c51程序 为了安全起见,程序中很多NOP是冗余的,能进一步精简,但必须经过验证。 Atmel 24C01 比较特殊,为简约型. 51晶振为11.0592MHz
24C01的IIC 读写的c51程序
为了安全起见,程序中很多NOP是冗余的,能进一步精简,但必须经过验证。
Atmel 24C01 比较特殊,为简约型.
51晶振为11.0592MHz
https://www.eeworm.com/dl/987562.html
技术资料
2401源码
// 包含头文件
//------------------------------------------------------------------------------------
//是模拟 IO, 主 IIC
#include "BasType.h"
#include "RegDefs.h" // SFR declarations
#include "intrins.h"
extern void msec(unsigned int x);
sbit ht2402_data = P2^0 ...
https://www.eeworm.com/dl/648/243154.html
单片机开发
c51中的intrins.h库函数 _crol_ 字符循环左移 _cror_ 字符循环右移 _irol_ 整数循环左移 _iror_ 整数循环右移 _lrol_ 长整数循环左移
c51中的intrins.h库函数
_crol_ 字符循环左移
_cror_ 字符循环右移
_irol_ 整数循环左移
_iror_ 整数循环右移
_lrol_ 长整数循环左移
_lror_ 长整数循环右移
_nop_ 空操作8051 NOP 指令
_testbit_ 测试并清零位8051 JBC 指令
https://www.eeworm.com/dl/841701.html
技术资料
基于51+ADC0832+LCD1602+仿真图四位电压显示测试
/说明:调用VR2时,ADC0832将模拟电压转换为数字电压并显示在LCD1602上//********************************#include<reg51.h>#include<intrins.h>#define uchar unsigned char#define uint unsigned int#define delay4us(){nop_();_nop_():nop_();_nop_;}//********************************//ADC引 ...