-
STM32-7SEG-LED-SCAN
8位数码管动态扫描显示实验(显示不用库函数)
*显示用指针直接访问GPIO端口的输出寄存器,形式GPIOD->ODR
*延时delay_nms(5)时,显示不闪烁
*74HC138 A--P2.2--PE.0 B--P2.3--PE.1 C--P2.4--PE.2
*74HC573 D0~D7---PD[0..7] LE---PE.3
*by 追梦 2011-4-3(8-bit digital dynamic scan showed that the experimental (show no library function)* Display a pointer to directly access GPIO port output register, form GPIOD-> ODR* delay delay_nms (5), the display does not blink* 74HC138 A- P2. 2- PE.0 B- P2.3- PE.1 C- P2.4- PE.2* 74HC573 D0 ~ D7--- PD [0 .. 7] LE--- PE.3* by Dream 2011-4-3)
- 2011-05-20 09:36:18下载
- 积分:1
-
串口运动控制上位机/C#串口助手源码
C#串口运动控制上位机源码,主要用于运动控制调试,比如在"M "栏输入1000,串口输出M 1000,,在"M-"输入1000,串口输出M-1000;下位机可根据指令进行区别驱动电机方向运动
串口运动控制上位机
└── 马达串口运动控制上位机
├── SerialCommunicate
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SerialCommunicate.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── SerialCommunicate.exe
│ │ │ ├── SerialCommunicate.pdb
│ │ │ ├── SerialCommunicate.vshost.exe
│ │ │ └── SerialCommunicate.vshost.exe.manifest
│ │ └── Release
│ │ ├── SerialCommunicate.exe
│ │ ├── SerialCommunicate.pdb
│ │ ├── SerialCommunicate.vshost.exe
│ │ └── SerialCommunicate.vshost.exe.manifest
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SerialCommunicate.Form1.resources
│ │ ├── SerialCommunicate.Properties.Resources.resources
│ │ ├── SerialCommunicate.csproj.FileListAbsolute.txt
│ │ ├── SerialCommunicate.csproj.GenerateResource.Cache
│ │ ├── SerialCommunicate.csprojResolveAssemblyReference.cache
│ │ ├── SerialCommunicate.exe
│ │ ├── SerialCommunicate.pdb
│ │ └── TempPE
│ └── Release
│ ├── 3ed801191daeeafe4f32720599873cc71f6b.png
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── QIcon Changer.exe
│ ├── SerialCommunicate.Form1.resources
│ ├── SerialCommunicate.Properties.Resources.resources
│ ├── SerialCommunicate.csproj.FileListAbsolute.txt
│ ├── SerialCommunicate.csproj.GenerateResource.Cache
│ ├── SerialCommunicate.csprojResolveAssemblyReference.cache
│ ├── SerialCommunicate.exe
│ ├── SerialCommunicate.pdb
│ └── TempPE
├── SerialCommunicate.sln
└── SerialCommunicate.v11.suo
11 directories, 40 files
- 2021-08-15 00:31:13下载
- 积分:1
-
Genetic_Algorithm_for_Mapping
采用遗传算法来实现任务图到多核处理器的映射功能。遗传算法是计算机科学人工智能领域中用于解决最优化的一种搜索启发式算法,是进化算法的一种。这种启发式通常用来生成有用的解决方案来优化和搜索问题。进化算法最初是借鉴了进化生物学中的一些现象而发展起来的,这些现象包括遗传、突变、自然选择以及杂交等。遗传算法通常实现方式为一种计算机模拟。对于一个最优化问题,一定数量的候选解(称为个体)的抽象表示(称为染色体)的种群向更好的解进化。传统上,解用二进制表示(即0和1的串),但也可以用其他表示方法。进化从完全随机个体的种群开始,之后一代一代发生。在每一代中,整个种群的适应度被评价,从当前种群中随机地选择多个个体(基于它们的适应度),通过自然选择和突变产生新的生命种群,该种群在算法的下一次迭代中成为当前种群。这个程序通过遗传算法那实现任务图到多核的映射的路径最优。(Using genetic algorithms to achieve the task graph mapping to multicore processors . Genetic algorithms are used in the field of artificial intelligence in computer science to solve an optimization heuristic search algorithm , an evolutionary algorithm . This heuristic is typically used to generate a useful solution to optimization and search problems. Evolutionary algorithm was originally borrowed from evolutionary biology and developed a number of phenomena , these phenomena include genetic mutation , natural selection and hybridization . Genetic algorithms are typically implemented as a computer simulation methods . For an optimization problem , a number of candidate solutions ( called individuals ) an abstract representation of the population ( called chromosomes ) to evolve a better solution . Traditionally, the solution of the binary representation ( i.e., a string of 0 and 1 ) , but can also be expressed by other methods . Evolved from a completely random population of individua)
- 2020-12-11 12:49:18下载
- 积分:1
-
juzhen
用于矩阵的一般计算,如转置 求逆 矩阵乘法 行列式 数乘(juzhen)
- 2009-10-08 00:22:00下载
- 积分:1
-
Csharp字符串和正则表达式参考手册
此书讲了C#的字符串和正则表达式的详细内容,范围小而精,适合较高级编程人员使用和参考.(book stresses the C# and the string expression is the detailed content and scope of a small but efficient, suitable for the more senior programmers to use and reference.)
- 2005-08-30 15:27:39下载
- 积分:1
-
PL3106-surce
福星晓程PL3106电力载波程序,调试通过(Fu Xing Xiao Cheng PL3106 Power Line Carrier program debugging through)
- 2012-11-21 10:36:26下载
- 积分:1
-
PIT
说明: 基于IAR开发环境,野火PIT 配置文件,包含C和H文件(Based on IAR development environment, wildfire PIT configuration file, including C and H files)
- 2020-06-16 21:00:02下载
- 积分:1
-
MFCBank
说明: 银行账户管理系统
主要是练习使用MFC操作数据库,完成对账户的增删查改。(Bank account management system
It is mainly to practice using MFC to operate the database and complete the addition, deletion, and modification of accounts.)
- 2019-12-19 22:01:07下载
- 积分:1
-
CPPBuildersmssdk
C++Builder短信猫开发包,提供有C++Builde开发语言示例,方便程序员开发调用。支持单口gsm短信猫设备,-深圳汉邦科技 www.ssm-hb.com 0755-36537765(C++Builder SMS cat Development Kit, provides an example of the development of language C++Builde facilitate programmers call. Support single port gsm SMS cat equipment- Shenzhen parti Technology www.ssm-hb.com 0755-36537765)
- 2013-12-12 14:15:18下载
- 积分:1
-
sharpPlayer
简单的视频播放器,有播放,暂停,全屏,打开文件功能。(Simple video player, play, pause, full screen, open the file functions.)
- 2012-08-17 11:29:50下载
- 积分:1