-
cantest
cancanbaud
canbaud
canbaud
canbaud
canbaud
- 2022-03-16 17:00:22下载
- 积分:1
-
平方探测法建立哈希表
平躺探测法建立哈希表,包括哈希表的初始化,销毁,关键字的插入操作,删除操作,搜索操作,以及哈希函数的建立哈希表的再散列等
- 2022-01-30 20:43:40下载
- 积分:1
-
C# 中文简体繁体转换小程序源码
Visual C# 简繁体转换,实现中文汉字的简体繁体转换功能,相信这个C#小程序源码会很实用吧,经常用到。编译运行后,请输入要转换的文字,单击对应的按钮,即可实现转换功能,绑定在对应按钮上的代码如下:
C#中文繁体转简体源码:
private void button1_Click(object sender, EventArgs e)
{
string src = txtSrcText.Text.Trim();
byte[] srcByte = Encoding.Default.GetBytes(src);
byte[] desByte = new byte[srcByte.Length];
LCMapString(2052, LCMAP_SIMPLIFIED_CHINESE, srcByte, -1, desByte, srcByte.Length);
string des = Encoding.Default.GetString(desByte);
txtDesText.Text = des;
}
C#中文简体转繁体源码:
private void button2_Click(object sender, EventArgs e)
{
string src = txtSrcText.Text.Trim();
byte[] srcByte = Encoding.Default.GetBytes(src);
byte[] desByte = new byte[srcByte.Length];
LCMapString(2052, LCMAP_TRADITIONAL_CHINESE, srcByte, -1, desByte, srcByte.Length);
string des = Encoding.Default.GetString(desByte);
txtDesText.Text = des;
}
- 2022-03-12 07:23:03下载
- 积分:1
-
双车会车
飞思卡尔双车断道会车鹊桥相会,好好调试,摄像头四轮加电磁三轮,两套代码(Freescale double car road will meet magicbridge meet, good debugging, camera four wheels and electromagnetic three wheels, two sets of code)
- 2020-06-18 19:40:01下载
- 积分:1
-
c && traffic light
一、实验设备:凌阳开发板一块,unSPIDE 3.0.4 编译软件
二、实验目的:红灯显示时间50s,黄灯显示时间5s,绿灯显示时间50s
三、实验程序的编写
1、 首先打开unSPIDE 3.0.4 编译软件,建一个名字为miaobiao的工程
2、 新建一个c文件命名 main,输入相应的代码并保持(代码见附件)
3、 添加头文件#include "SPCE061V004.h",方法是在软件的安装目录下找到SPCE061V004.h文件,并复制到miaobiao工程文件夹下,然后把SPCE061V004.h文件添加到工程中(不填加该文件进工程会报错)。
上面两段代码在unSPIDE 3.0.4 上编译通过,在低版本软件上编译可能会出现错误
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-25 17:36:21下载
- 积分:1
-
MXC6020_SoftwareIIC_C8051F320
用c8051f320单片机,任选两个IO口进行模拟IIC操做,用软件IIC对加速度芯片MXC6020进行读写操作(IIC接口)(With c8051f320 Singlechip, optional two IO simulation IIC mouth fuck to do with software acceleration chip IIC on MXC6020 to read and write operations (IIC interface))
- 2007-09-25 12:52:51下载
- 积分:1
-
坦克大战(c++控制台源码)
【实例简介】
- 2021-06-09 00:31:35下载
- 积分:1
-
Pull-SDK-Demo-master
zkteco pull sdk for connecting c3 devices
- 2020-06-25 06:40:02下载
- 积分:1
-
UsartHandle
该模块实现串口DMA发送中断接收,与系统或者外设通信,一发一答的方式,发送一帧数据,需等待对方应答,如果在规定时间内未等到ACK数据,发送端 会重发该数据,采用状态机制原理,对串口使用以及协议搭建很参考价值(The module DMA send serial interrupt receiving, and system or peripheral communication, one answer, send a frame of data, need to wait for the answer, if ACK did not wait until the data within the specified time, the sender will retransmit the data, using the state mechanism principle, build a reference value for the use of serial port and protocol)
- 2018-02-02 18:01:20下载
- 积分:1
-
虚拟示波器LPC例程
说明: 虚拟示波器历程 用于在线观察波形 智能车直立车专用(The course of virtual oscilloscope)
- 2019-06-09 16:02:37下载
- 积分:1