搜索结果
找到约 53 项符合
D2 的查询结果
按分类筛选
其他嵌入式/单片机内容 S08例程:本程序是I/O模块的例程
S08例程:本程序是I/O模块的例程,所用资源为单片机通用IO接口,所接器件为LED灯,
其中D2与PTA0,D3与PTA1相连接!
数据结构 希尔排序(缩小增量法) 排序过程:先取一个正整数d1<n
希尔排序(缩小增量法)
排序过程:先取一个正整数d1<n,把所有相隔d1的记录放一组,组内进行直接插入排序;然后取d2<d1,重复上述分组和排序操作;直至di=1,即所有记录放进一个组中排序为止
其他 For solving the following problem: "There is No Free Lunch" Time Limit: 1 Second Memory Limit: 3
For solving the following problem:
"There is No Free Lunch"
Time Limit: 1 Second Memory Limit: 32768 KB
One day, CYJJ found an interesting piece of commercial from newspaper: the Cyber-restaurant was offering a kind of "Lunch Special" which was said that one could "buy one get two for free". That ...
数值算法/人工智能 编制具有如下原型的函数prime
编制具有如下原型的函数prime,用来判断整数n是否为素数:bool prime(int n) 而后编制主函数,任意输入一个大于4的偶数d,找出满足d=d1+d2的所有数对,其中要求d1与d2均为素数(通过调用prime来判断素数)。如偶数18可以分解为11+7以及13+5;而偶数80可以分解为:43+37、61+19、67+13、73+7。
提示:i与d-i的和恰为偶数d, ...
Delphi控件源码 一、KOL是什么?KOL能做什么? MCK是什么?MCK能做什么? KOL是一套对象库
一、KOL是什么?KOL能做什么? MCK是什么?MCK能做什么?
KOL是一套对象库,免费而且开放源代码,大家可以http://bonanzas.rinet.ru/去下载到
它。它能够使Delphi编出尺寸非常小的32位Windows图形用户界面的应用程序。
目前支持的Delphi版本:Delphi6,Delphi5,Delphi4,Delphi3和Delphi2。
使用KOL在D2-D5中编写的最小图形界面 ...
单片机开发 简单的无线遥控音乐制作 采用HC2272
简单的无线遥控音乐制作
采用HC2272,HC2262接收,
对应管脚连接:
1、无线遥控部分
D0----P1^0
D1----P1^1
D2----P1^2
D3----P1^3
VT----P3^2
2、显示部分:
74LS48驱动共阴数码管
A-----P3^0
B-----P3^1
C-----P3^2
D-----P3^3
3、蜂鸣器(或喇叭)
P3^4 ...
其他嵌入式/单片机内容 This is a source of 13.560MHz RFID card reader for TRH031M as ATMEGA8-16AU MPU. The title is 3Alogi
This is a source of 13.560MHz RFID card reader for TRH031M as ATMEGA8-16AU MPU.
The title is 3Alogics TRH031M 13.56MHz RFID Reader V1.0.
project : RFID Reader V2.0
Target : MEGA8-16AU
Crystal: 16.000 Mhz
Input : TRH031M RFID 13.56MHz
Output : RS232C 115200,N,8,1
Compiler : ICC-AVR V6.26C
// Pin co ...
数值算法/人工智能 program to solve a finite difference discretization of Helmholtz equation : (
program to solve a finite difference discretization of Helmholtz equation :
(d2/dx2)u + (d2/dy2)u - alpha u = f using Jacobi iterative method.
COMMENTS: OpenMP version 3: 1 PR outside the iteration loop, 4 Barriers
Directives are used in this c ...
书籍源码 -- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder a
-- Hamming Decoder
-- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection.
-- download from: www.pld.com.cn & www.fpga.com.cn
LIBRARY ieee
USE ieee.std_logic_1164.ALL
ENTITY hamdec IS
PORT(hamin : ...
matlab例程 Two scripts are included here. 1. convsys.m - combines the state space representation of two syst
Two scripts are included here.
1. convsys.m - combines the state space representation of two systems connected in series.
[Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2)
This algorithm gives the convolution of two state space representations
| A1 B1 | | A2 B2 |
u ==> | | == ...