登录
首页 » c » STM32F103USB模拟U盘升级

STM32F103USB模拟U盘升级

于 2022-03-31 发布 文件大小:1.25 MB
0 99
下载积分: 2 下载次数: 1

代码说明:

适用于STM32F103,因为ST官网提供的库103和105/107的不一样,这一份适用于F103的,以后把105的改完有时间发上来。还有,详细的操作是,程序下载之后,接上USB就会自动识别为U盘,在10秒内没有将bin文件拉进去U盘将会自动跳转到APP的地址,执行APP.

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

发表评论

0 个回复

  • STM32F103 三个 PWM 生成
    此代码用于生成三个 pwm 技术与定义死时间和补充形式与 STM32F103。 占空比的他们正在改变与价值,通过测量与 ADC。
    2022-01-25 17:52:12下载
    积分:1
  • Visual.Assist.X.v10.5.1715.0
    本文针对多光谱图像配准中不同光谱图像间存在较大的灰度差异、同一景物在不同波段表现的特征也各不相同等问题,提出了基于互信息相似性测度的多光谱图像配准算法。(In this paper, multi-spectral image registration between different spectral image there is a big difference in gray scale, the same scene in different bands performance characteristics are different questions, we present a similarity measure based on mutual information of multi-spectral image registration algorithm .)
    2010-09-07 11:54:35下载
    积分:1
  • vrp-jieyuelichengsuanfa
    数模vrp问题---节约里程算法C++代码 (vrp saving mileage algorithm C++ code。)
    2013-08-18 11:16:42下载
    积分:1
  • aodv
    opnet下修改AODV路由协议,将min hop routing 改为min cost routing,附说明文档(opnet to modify the AODV routing protocol, the min hop routing changed to min cost routing, attached documentation)
    2021-04-28 10:18:44下载
    积分:1
  • ADC0832TLC5615
    开关电源中用单片机产生可调电压控制PWM波程序,ADC0832读取输出电压(Single-chip switching power supply using adjustable voltage control PWM wave generation process, ADC0832 read the output voltage)
    2011-09-16 23:37:27下载
    积分:1
  • STK
    STK是由美国Analytical Graphics公司开发的一款在航天领域处于领先地位的商业分析软件。STK支持航天任务的全过程,包括设计、测试、发射、运行和任务应用(STK is a leading commercial analysis software developed by Analytical Graphics Inc. in the aerospace field. STK supports the whole process of space mission, including design, test, launch, operation and mission application.)
    2020-09-21 16:07:50下载
    积分:1
  • EzReportBuild 2.0报表组件源码和demo及说明
    2.0版本添加了多报表页功能,每份报表可设置多页,每页可设置不同的纸张大小、数据表、页面规则等,并可对报表页次序即时调整,同时,优化了显示,报表显示更流畅。EzReportBuild 2.0报表组件,可以完成报表设计、预览、打印等功能,提供接口函数,可以将设计、预览等嵌入到自定的winform中调用,使用简单,调用灵活。在你的工程项目里,新建一个窗体,添加按钮,使用:// 单独打开报表编辑器        private void button1_Click(object sender, EventArgs e)        {            _Interface.independent_DesignForm();    }打开设计器设计报表,保存报表后可去掉按钮,该工程项目生成的报表,别的应用不能打开查看。如需复杂数据报表,可先生成一个临时数据库表,然后引入报表系统,由于报表数据为按行读取,所以只要能够设计出数据库各字段和内容,就能够生成相应的报表。打印规则为“内容区域”栏目无论所在位置,紧跟页头栏,所以适当调整“页头区域”、“页脚区域”位置,保证按需求输出。制作每页多行数据报表,“内容区域”为自动计算填充“页头区域”、“页脚区域”之间的空间,应适当调整“内容区域”栏目和页头页脚之间的空间,达到最佳打印效果。如需在表格内添加空行,可在生成的报表数据库表中添加空记录即可。 注意:使用时,将fontawesome-webfont.ttf字体文件与exe文件放置在一起,使用Access数据库时,注意路径,如没有安装AccessDatabaseEngine.exe,可在微软网站下载,或在本压缩文件的soft文件夹中安装。 更新关注:https://www.cnblogs.com/qiaoke/p/10365440.html 设计器截图      预览截图 嵌入程序截图 多种纸张同时预览using System;using System.Drawing;using System.Windows.Forms;namespace Demo_1{ public partial class Form1 : Form { RBuild_Interface _Interface = new RBuild_Interface(); // 新建接口 RBuild_Preview rpb = new RBuild_Preview(); // 预览窗口对象 public Form1() { InitializeComponent(); } // 单独打开报表编辑器 private void button1_Click(object sender, EventArgs e) { _Interface.independent_DesignForm(); } // 单独打开报表预览 private void button2_Click(object sender, EventArgs e) { _Interface.independent_PreviewForm(@"测试报表1.rpt", 2, "", "", "", "地址库.mdb"); } private void button3_Click(object sender, EventArgs e) { // 按钮可以使用 b1.Enabled = true; b2.Enabled = true; b3.Enabled = true; b4.Enabled = true; b5.Enabled = true; b6.Enabled = true; b7.Enabled = true; b8.Enabled = true; _Interface.embedded_PreviewForm(rpb, panel1, @"测试报表1.rpt", 2, "", "", "", "地址库.mdb", true); } private void b1_Click(object sender, EventArgs e) { _Interface.preview_FirstPage(rpb); } private void b2_Click(object sender, EventArgs e) { _Interface.preview_PreviousPage(rpb); } private void b3_Click(object sender, EventArgs e) { _Interface.preview_NextPage(rpb); } private void b4_Click(object sender, EventArgs e) { _Interface.preview_LastPage(rpb); } private void b5_Click(object sender, EventArgs e) { _Interface.preview_Search(new Point(200,200)); } private void b6_Click(object sender, EventArgs e) { _Interface.zoom_Menu(rpb,new Point(300,200)); } private void b7_Click(object sender, EventArgs e) { _Interface.print_Page(rpb); } private void b8_Click(object sender, EventArgs e) { int _now, _tol; _now = _Interface.get_NowPage(rpb); _tol = _Interface.get_TotalPage(); MessageBox.Show("当前页:" _now "--- 总页数:" _tol); } }}
    2019-01-19下载
    积分:1
  • 绝对值编码器
    光电式编码器程序,此程序可实现光电式编码器的位置读取(Photoelectric encoder program, which can read the position of photoelectric encoder)
    2020-06-25 13:00:02下载
    积分:1
  • 3D数学基础图形与游戏开发
    说明:  3D数学优秀教材,包括理论知识和具体应用,浅显易懂,适合入门学习。(Three-dimensional mathematics excellent textbook, from theoretical knowledge to some specific realization, is easy to understand and suitable for introductory learning.)
    2020-06-20 21:00:01下载
    积分:1
  • NeatUpload-1.2.32 实例+源码下载
    NeatUpload-1.2.32 实例+源码下载
    2015-04-10下载
    积分:1
  • 696516资源总数
  • 106668会员总数
  • 21今日下载