说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 复杂可编程器件
1)  CPLD
复杂可编程器件
1.
Using the TMS320C31 DSP as the core processor,a complex programmable logic device(CPLD) is used to accomplish the chip-selection and interrupt-control for external extension circuits(A/D,asynchronous-communication element 16C554 and external memories).
利用16C554扩展串口,其硬件接口电路简单;利用复杂可编程器件CPLD设计DSP扩展外设电路的译码电路,可以使设计者在系统内进行编程。
2.
The digital signal processor(DSP) TMS320LF2407 and the complex programmable logic device(CPLD) EPM7256E are used as the main control system and the drive module is also designed.
设计了一种交流电机控制系统用于水处理过程控制,采用数字信号处理器TMS320LF2407配合复杂可编程器件EPM7256E构成主控系统,并对驱动模块进行设计。
2)  complex programmable logic device
复杂可编程逻辑器件
1.
The Design and Technology of the Complex Programmable Logic Device;
复杂可编程逻辑器件的设计技术
2.
To solve the synchronizing problem between the fixed exposure schedule of the ordinary industrial CCD camera and the various state of welding arc during welding processes,a visual image sensor with controllable exposure was developed based on CPLD(complex programmable logic device) for arc welding.
为了解决普通工业CCD摄像机固定的曝光时序与焊接过程中变化的电弧状态之间的同步问题,研制了一种基于复杂可编程逻辑器件CPLD(complex programmable logic device)的曝光可控弧焊图像传感器。
3.
The control system of IGBT induction heating power supply is designed based on DSP(digital signal processor) and CPLD(complex programmable logic device).
用数字信号处理器(DSP)和复杂可编程逻辑器件(CPLD)设计了IGBT感应加热电源控制系统。
3)  CPLD
复杂可编程逻辑器件
1.
A Controller Design Based on DSP and CPLD for Cascaded Multilevel Convertor;
基于数字信号处理器和复杂可编程逻辑器件的单元级联多电平控制器的设计
2.
Application of CPLD in Control of High-frequency Link Inverter 115V/400Hz Aerial Power Supply;
复杂可编程逻辑器件(CPLD)在航空115V/400Hz高频链逆变电源中的应用
3.
Study on Sine-wave Current Micro Step Drives for Three-phase Hybrid Stepping Motor based on CPLD;
基于复杂可编程逻辑器件的三相混合式步进电动机正弦波微步驱动技术的研究
4)  CPLD
CPLD(复杂可编程逻辑器件)
5)  CPLD
复杂可编程逻辑器件(CPLD)
1.
The paper gives a brief introduction to the principles of high speed explosive switch,presents the necessity of fast detection of fault current,and gives a new method of fast detection of fault current by the use of CPLD.
阐述了短路故障快速检测的必要性,提出了利用复杂可编程逻辑器件(CPLD)实现短路故障快速检测的方法,逻辑仿真和试验结果表明,采用CPLD器件实现的短路故障快速检测装置具有体积小、速度快、可靠性高、抗干扰能力强、易于维护和扩展的优点,尤其适用于舰船电力系统的综合保护。
6)  complex programmable logic device(CPLD)
复杂可编程逻辑器件
1.
Through analyzing the synchronization problem which exists in the merging unit,this paper expatiates on the demand of the synchronization according the international standards,then proposes a new method for solving this problem using complex programmable logic device(CPLD).
提出了一种基于复杂可编程逻辑器件(CPLD)技术解决合并单元时间同步的新方法。
2.
In this paper,a motion logic control system based on the complex programmable logic device(CPLD) for remote control pruning robot was presented.
该文根据作业要求,研制了基于复杂可编程逻辑器件的自动立木整枝机运动控制系统。
3.
VHSIC hardware description langurage(VHDL) was used as the programming language,which was implemented in a complex programmable logic device(CPLD).
本方案在复杂可编程逻辑器件(complex programmablelogic device,CPLD)中使用VHDL(VHSIChardware descriptionlanguage)实现语言硬件编程。
补充资料:Autocad VBA初级教程 (第二课 编程基础)
 

第二课  编程基础



本课主要任务是对上一课的例程进行详细分析



下面是源码:
Sub c100()
Dim cc(0 To 2) As Double '声明坐标变量
cc(0) = 1000 '定义圆心座标
cc(1) = 1000
cc(2) = 0
For i = 1 To 1000 Step 10 '开始循环
  Call ThisDrawing.ModelSpace.AddCircle(cc, i * 10) '画圆
Next i
End Sub



先看第一行和最后一行:
Sub C100()
……
End Sub
C100是宏的名称,也叫过程名称,当用户执行C100时程序将运行sub 和end sub之间的所有指令。



第二行:
Dim cc(0 To 2) As Double '声明坐标变量
后半段“'声明坐标变量”自动变为绿色字体,它是代码语句的注释,它不会影响程序运行,它的作用是告诉阅读者程序员的想法。对于简单的程序,一般不需要写注释,如果要编写非常复杂的程序,最好要多加注释,越详细越好,对于程序员来说,这是一个好习惯。
电脑真正编译执行的是这条语句:Dim cc(0 To 2) As Double
它的作用就是声明变量。
Dim是一条语句,可以理解为计算机指令。
它的语法:Dim变量名 As 数据类型
本例中变量名为CC,而括号中的0 to 2声明这个CC是一个数组,这个数组有三个元素:CC(0)、CC(1)、CC(2),如果改为CC(1 to 3),则三个元素是CC(1)、CC(2)、CC(3),有了这个数组,就可以把坐标数值放到这个变量之中。
Double是数据类型中的一种。ACAD中一般需要定义坐标时就用这个数据类型。在ACAD中数据类型的有很多,下面两个是比较常用的数据类型,初学者要有所理解。
Long(长整型),其范围从 -2,147,483,648 到 2,147,483,647。
Variant  它是那些没被显式声明为其他类型变量的数据类型,可以理解为一种通用的数据类型,这是最常用的。



下面三条语句
cc(0) = 1000 '定义圆心座标
cc(1) = 1000
cc(2) = 0
它们的作用是给CC变量的每一个元素赋,值其顺序是X、Y、Z坐标。




For i = 1 To 1000 Step 10 '开始循环
……
Next i  '结束循环
这两条语句的作用是循环运行指令,每循环一次,i值要增加10,当i加到 1000时,结束循环。
i也是一个变量,虽然没有声明i变量,程序还是认可的,VB不是C语言,每用一个变量都要声明,不声明就会报错。简单是简单了,这样做也有坏处,如果不小心打错了一个字母,程序不会报错,如果程序很长,那就会出现一些意想不到的错误。
step后面的数值就是每次循环时增加的数值,step后也可以用负值。

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条