登录
首页 » Others » STM32单片机实现Modbus协议主机2个源码

STM32单片机实现Modbus协议主机2个源码

于 2020-11-28 发布
0 327
下载积分: 1 下载次数: 3

代码说明:

STM32单片机实现Modbus协议主机2个源码 , 实测有用

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • IBM SPSS Modeler 决策树之银行行销预测应用分析
    IBM SPSS Modeler 决策树之银行行销预测应用分析
    2020-11-27下载
    积分:1
  • 基于Andriod平台的安卓记事本序源码
    安卓记事本程序源码是一个适合新手学习的安卓记事本程序例子源码,包括很多安卓基础的知识,并且代码有比较详细的注释,主要用到了listView展示数据和SQLite的读写建表等操作。代码量很少没有分层布局也相对简单方便学习分析。
    2020-12-12下载
    积分:1
  • 树莓派python+DHT11+BH1750+mysql+Flask温度湿度传感器
    树莓派python3.6写的温度湿度传感器数据采集存储代码,涉及到DHT11湿度BH1750光照度,使用了mysql数据库做存储,Flask控制树莓派开关机操作
    2020-12-11下载
    积分:1
  • 无线电监测与测向定位.pdf
    无线电监测与侧向定位 西安电子科技大学出版社 张洪顺 王磊主编
    2021-05-06下载
    积分:1
  • Mecury晶体工具
    剑桥的著名软件,可用于观察晶体结构,了解晶体中的结构排列,相互作用等等,还能用于画图
    2020-12-10下载
    积分:1
  • 简洁美观的毕业答辩PPT模板
    【实例简介】找到的最适合各类答辩的简洁、美观、干净的模板,分享给大家!
    2021-05-18 10:33:32下载
    积分:1
  • 移动传播环境(杨大成+写)
    本书作者在其多年从事移动通信技术领域内研究和开发基础上,结合丰富的实践经验,围绕无线传播环境的基本理论和对无线传播的特征,建模等方面的深刻理解撰写了本书。本书首先简明扼要的介绍了无线传播环境理论分析等方面常用的概率论、随机过程及矩阵等基础理论;然后,全面系统地讲述了地球表面均匀大气中的电波传播,室外传播模型,室内无线传播及覆盖,小尺度衰落信道,标量信道建模及其仿真和矢量信道建模及其仿真等。
    2020-12-09下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 中继选择方案比较
    协同通信 中继选择方案的matlab仿真
    2020-12-03下载
    积分:1
  • 电力电子系统建模及控制
    《电力电子系统建模及控制》可作为电力电子与电力传动专业及相关专业的研究生教材,也可作为从事电力电子装置、变频器、电子电源等开发、设计工程技术人员的参考书。本书重点介绍电力电子系统的动态模型的建立方法和控制系统的设计方法。电力电子系统的建模与控制技术涉及功率变换技术、电工电子技术、自动控制理论等,是一门多学科交叉的应用性技术。本书内容包括:电力电子系统建模方法如状态空间平均、平均开关网络模型和统五邕路模型等,电流蜂值控制的稳定性问题及改进稳定性的方法,DC/DC变换器反馈控制设计,三相PWM整流器动态模型和三相PWM逆变器的动态模型,三相PWM变流器的解耦控制,三相PWM变流器的
    2021-05-07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载