-
visual c# 操作串口 和 地图控件
visual c# 操作串口 和 地图控件-visual c# read the rs232 of computer and mapx ocx
- 2022-04-22 11:56:49下载
- 积分:1
-
车辆识别检测
车辆识别检测代码,基于C#设计,能较好的识别出车辆运动情况,各种车辆识别检测,亲自调试运行通过,保证成功运行绝对可靠。对智能行驶检测,车辆安全行驶有作用。
- 2022-02-15 10:06:34下载
- 积分:1
-
此为DirectX3D代码,无需解压码
此为DirectX3D代码,无需解压码-DirectX3D for this code, without extracting yards
- 2023-03-20 19:00:03下载
- 积分:1
-
基于2440的USB驱动
基于可以又440的USB驱动,源代码文件,经过调度,可以使用。可以直接修改和编译,扩展
- 2022-03-05 04:16:36下载
- 积分:1
-
打印ESC/POS 输出图形
用ESC/POS命令输出ESPSON 等打印机上输出图形。
图形输入 png 或 jpg ,bmp 等格式的文件。
并口打印,串口支持。串口速度较慢。
- 2022-05-10 22:32:59下载
- 积分:1
-
/* 求解最短路径代码 * 这段代码没有进行任何优化(包括算法上的), 但不意味我不知道该怎样优化它, * 它是为教学目的而做,旨在用易于理解和简洁的代码描述出...
/* 求解最短路径代码 * 这段代码没有进行任何优化(包括算法上的), 但不意味我不知道该怎样优化它, * 它是为教学目的而做,旨在用易于理解和简洁的代码描述出 A* 算法在求最段路 * 径中的运用. 由于很久没有摸算法书, 本程序不能保证是纯正的 A* 算法 -) * 你可以在理解了这段程序的基础上,按自己的理解写出类似的代码. * * 本程序附带有一个数据文件 map.dat, 保存有地图的数据 */-/* code for the Shortest Path* This code without any optimization (algorithm), but does not mean that I do not know how to optimize it,* it is for the purpose of instruction and so, easy to use and simple to understand code describes the A* algorithm for most of the Road* path use. As long without feeling algorithm, the procedure is no guarantee that the tradition of A* algorithm-)* You can understand this process on the basis of their own understanding to write a similar code.* The procedure is an ancillary data files map.dat preserve land The data* /
- 2022-04-01 08:22:41下载
- 积分:1
-
inventry control syatem
inventry control syatem
- 2022-02-25 00:41:27下载
- 积分:1
-
24l01发送端代码
#include #include #include "1602.h"typedef unsigned char uchar;typedef unsigned char uint;//****************************************IO端口定义***************************************sbit MISO =P1^2;sbit MOSI =P3^2;sbit SCK =P1^6;sbit CE =P1^5;sbit CSN =P1^7;sbit IRQ =P1^3;//***********************************数码管0-9编码*******************************************uchar seg[10]={0xC0,0xCF,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90}; //0~~9段码//************************************按键**********************************************sbit KEY1=P3^6;sbit KEY2=P3^7;//***********************************数码管位选**************************************************sbit led1=P2^1;
- 2022-03-18 17:46:09下载
- 积分:1
-
微机原理ad转换
利用HDL语言,基于Xilinx FPGA nexys4实验平台,设计一个能够执行以下MIPS指令集的单周期类MIPS处理器,要求完成所有支持指令的功能仿真,验证指令执行的正确性,要求编写汇编程序将本人学号的ASCII码存入RAM的连续内存区域。
(1)支持基本的算术逻辑运算如add,sub,and,or,slt,andi指令 (2)支持基本的内存操作如lw,sw指令 (3)支持基本的程序控制如beq,j指令
指令存储器设计
指令存储器为ROM类型的存储器,为单一输出指令的存储器。设置一个程序计数器指针PC指向指令存储器,当时钟上升沿到来时,取出PC所指的指令,当时钟的下降沿到来时,修改PC的值,使其指向下一条要执行的指令。因此其对外的接口为clk、存储器地址输入信号(指令指针)以及数据输出信号(指令)。在本实验中调用ISE提供的IP核进行设计,设定的指令存储器大小为128字。
- 2022-04-08 01:25:13下载
- 积分:1
-
PIC8单片机ADC应用
#include
volatile unsigned char adresult;
void ADC_Sample(unsigned char adch);
void DelayXms(unsigned char x);
#define _DEBUG //调试程序用
/**********************************************************
函数名称:AD_Sample
函数功能:AD检测
入口参数:adch - 检测通道
出口参数:无
备 注:采样通道需自行设置为模拟口
采样10次,取中间八次的平均值为采样结果存于adresult中
**********************************************************/
void ADC_Sample(unsigned char adch)
{
static unsigned int adsum = 0;
static unsigned char admin = 0,admax = 0;
static unsigned char adtimes = 0;
ADCON1 = 0; //左对齐
ADCON0 = 0X41 | (adch
- 2022-01-25 15:00:46下载
- 积分:1