-
10.睡眠唤醒--中断唤醒
说明: 网蜂科技开发板CC2530F256实现中断定时唤醒(Realization of Watchdog Timing by Network Bee Technology Development Board CC2530F256)
- 2020-06-18 18:40:01下载
- 积分:1
-
Visual-cPP-MFC-SERIAL-PORT
VC++之MFC串口,包含串口调试助手源程序
及编程详细过程
(MFC serial port)
- 2013-08-29 16:09:49下载
- 积分:1
-
STM32上驱动基于IIC协议的OLED 128664 0.96英寸
压缩包当中有一个STM32驱动0.96 OLED 12864(SSD1306)显示屏的例程,还包含了OLED的官方使用说明以及取字软件,适合买了4个脚的OLED只能用于IIC通信的也适合于6脚OLED为了省管脚选择IIC通信的。例程很详细,SCL-PB6,SDA-PB7
- 2019-05-07下载
- 积分:1
-
gw376
南京能瑞的集中器程序,运行在振中掌机tp900.对集中器进行读写操作。(Nanjing Rui centralized program can run in the handheld vibration tp900. Perform read and write operations on the concentrator.)
- 2020-11-10 23:59:46下载
- 积分:1
-
基于MATALAB的GSM物理层仿真程序
信道编解码、GSMK调制解调、viterbi均衡等整套的L1算法,并有详细的文档说明
- 2023-06-15 12:10:14下载
- 积分:1
-
ev_pwm
DSP2812的时间管理器EVA和EVB,该程序可实现输出不同占空比和带有死区控制,适用于IGBT全桥驱动(DSP2812 time manager EVA and EVB, the program can achieve output of different than empty and with dead zone control, apply to the whole bridge IGBT drive)
- 2011-11-22 09:01:42下载
- 积分:1
-
LMS
1,、设置变量和参量:
X(n)为输入向量,或称为训练样本
W(n)为权值向量
e(n)为偏差
d(n)为期望输出
y(n)为实际输出
η为学习速率
n为迭代次数
2、初始化,赋给w(0)各一个较小的随机非零值,令n=0
3、对于一组输入样本x(n)和对应的期望输出d,计算
e(n)=d(n)-X^T(n)W(n)
W(n+1)=W(n)+ηX(n)e(n)
4、判断是否满足条件,若满足算法结束,若否n增加1,转入第3步继续执行(, set the variables and parameters:
X (n) is the input vector, otherwise known as the training sample
W (n) for the weight vector
e (n) for the deviation
d (n) is the desired output
y (n) is the actual output
η is the learning rate
n is the number of iterations)
- 2011-12-10 20:22:05下载
- 积分:1
-
31019415
浅析VC与matlab接口编程 On VC and matlab interface programming(Shallow of VC and matlab interface programming interface On VC and matlab programming)
- 2017-04-23 00:36:24下载
- 积分:1
-
left-crusion
消除左递归,包括自上而下的非递归分析和自上而下的分析(Eliminate left recursion, including non-recursive top-down analysis and top-down analysis)
- 2013-11-15 19:47:57下载
- 积分:1
-
C#以二进制格式打开和保存文件
C#使用BinaryWriter、BinaryReader对象分别保存和读取二进制文件,程序分两部分,先来看第一部分:
C#以二进制格式保存文件:设置保存文件的格式:
saveFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
//使用“另存为”对话框中输入的文件名实例化FileStream对象
FileStream myStream = new FileStream(saveFileDialog1.FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
//使用FileStream对象实例化BinaryWriter二进制写入流对象
BinaryWriter myWriter = new BinaryWriter(myStream);
//以二进制方式向创建的文件中写入内容
myWriter.Write(textBox1.Text);
//关闭当前二进制写入流
myWriter.Close();
//关闭当前文件流
myStream.Close();
textBox1.Text = string.Empty;
}
打开文件时同样也是以二进制来打开读取文件内容:
//设置打开文件的格式
openFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = string.Empty;
//使用“打开”对话框中选择的文件名实例化FileStream对象
FileStream myStream = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read);
//使用FileStream对象实例化BinaryRea
- 2022-02-14 18:03:07下载
- 积分:1