登录
首页 » C » STM32 IAR和APP

STM32 IAR和APP

于 2022-03-23 发布 文件大小:7.74 MB
0 44
下载积分: 2 下载次数: 1

代码说明:

STM32F107,有IAP和APP两个程序,采用的是标准库文件,项目不同,APP程序可以忽略。

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

发表评论

0 个回复

  • 1183622_General_DPSDK_
    大华平台DPSDK DSS开发手册,C++版,用于C#开发(Dahua Platform DPSDK DSS Development Manual)
    2020-12-28 16:09:01下载
    积分:1
  • the-static-binary-tree-and-input
    建立一个静态二叉树,并对他进行先序遍历,已在vc6.0上运行通过。(To establish a static binary tree, and carries on his first sequence traversal, has run through in vc6.0 )
    2014-01-14 12:37:28下载
    积分:1
  • hmmcodeandarticle
    用hmm实现的人脸识别及其文档,转自国外网站(hmm use face recognition and realization of the documents, decanted from overseas sites.)
    2006-10-16 09:09:27下载
    积分:1
  • 自然连接
    计算任意两个表的简单自然连接过程。假设有两个表A、B,分别为m1行、n1列和m2行、n2列,求它们简单自然连接的结果C=A B(i=j)。(A simple natural join procedure for computing two arbitrary tables. Suppose there are two tables A and B, which are M1 rows, N1 columns and M2 rows, N2 columns, and the result of their simple natural connection is C=A B (i=j).)
    2017-10-31 17:35:34下载
    积分:1
  • JPEG-LS压缩和解压缩算法的C代
    说明:  JPEG-LS压缩和解压缩算法的C代。。。。(This is a commonly used JPEG-LS codec C language.)
    2020-05-12 23:12:32下载
    积分:1
  • hex转bin的程序
    hex转bin的程序, 支持大于64K的hex, 网上下载的Hex2Bin不支持64k. 包含工程文件, 简单包装即可生成一个Hex2Bin的小程序【核心代码】                String szLine = "";                String szHex = "";                if (szHexPath == "")                {                    MessageBox.Show("请选择需要转换的目标文件!         ", "错误");                    return;                }                                StreamReader HexReader = new StreamReader(szHexPath);                                while (true)                {                    szLine = HexReader.ReadLine(); //读取一行数据                    if (szLine == null) //读完所有行                    {                        break;                    }                    if (szLine.Substring(0, 1) == ":") //判断第1字符是否是:                    {                        if (szLine.Substring(1, 8) == "00000001")//数据结束                        {                            break;                        }                        szHex = szLine.Substring(9, szLine.Length - 11); //读取有效字符                    }                }                HexReader.Close(); //关闭目标文件                Int32 i;                Int32 j = 0;                Int32 Length = szHex.Length;                byte[] szBin = new byte[Length];                pbConvert.Maximum = Length / 2;                for (i = 0; i < Length; i = 2) //两字符合并成一个16进制字节                {                    szBin[j] = (byte)Int16.Parse(szHex.Substring(i, 2), NumberStyles.HexNumber);                    j ;                    pbConvert.Increment(i);                                    }                if (szBinPath == "")                {                    szBinPath = Path.ChangeExtension(szHexPath, "bin");                    tbBinPath.Text = szBinPath;                }                FileStream fBin = new FileStream(szBinPath, FileMode.Create); //创建文件BIN文件                BinaryWriter BinWrite = new BinaryWriter(fBin); //二进制方式打开文件                BinWrite.Write(szBin, 0, Length); //写入数据                BinWrite.Flush();//释放缓存                BinWrite.Close();//关闭文件                MessageBox.Show("文件转换完成!        ", "提示");            }            catch (Exception ex)            {                MessageBox.Show(ex.ToString());            }
    2020-12-05下载
    积分:1
  • quartznet-master
    C#计划任务辅助类,可方便实现计划任务的调度(C# plan task auxiliary class)
    2018-03-15 16:43:40下载
    积分:1
  • 045-PWM
    这个是我写的单片机PWM脉冲调制程序,希望对初学者有点点帮助!(This is what I write microcontroller PWM pulse modulation program, hope for beginners who are little help)
    2012-04-10 22:56:37下载
    积分:1
  • FreeRTOS_Tutorial_Guide
    说明:  Manual for develpment of embedded SW based on FreeRTOS
    2020-04-06 05:09:38下载
    积分:1
  • 自动循迹小车
    基于AVR的自动循迹小车,光电对管检测黑线。1602液晶显示个光电对管信号。PWM驱动直流电机
    2022-01-26 03:39:35下载
    积分:1
  • 696518资源总数
  • 104331会员总数
  • 24今日下载