联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 文章/文档(12) 
按平台查找All C++ Builder(12) 

[文章/文档] en.STSW-IHM040V1

无传感器bldc驱动演示代码,基于stm32f103芯片,学习参考。
Sensorless BLDC driver demo code (2017-12-29, C++ Builder, 4175KB, 下载2次)

http://www.pudn.com/Download/item/id/1514548283913905.html

[文章/文档] PL0

PL0编译器,是一个很好的教学编译器,学习编程,先从编译器学起..已经修改
PL0 Complier I have already changed it! (2010-01-06, C++ Builder, 436KB, 下载4次)

http://www.pudn.com/Download/item/id/1031334.html

[文章/文档] ICL803CHINESE

介绍了函数波形发生器ICL8038的特点以及产生各类波的电路连接方式。
It tells us that how to use ICL8038 to gennerate waves. (2009-08-19, C++ Builder, 76KB, 下载2次)

http://www.pudn.com/Download/item/id/882913.html

[文章/文档] 1138driver

TI luminary公司的lms1138的驱动库源代码和用法。用于学习如何在不了解ARM底层寄存器的情况下使用C开发嵌入式系统
TI luminary of the driver' s lms1138 library source code and usage. To learn how to register at the bottom do not understand the ARM use C to develop embedded systems (2009-07-21, C++ Builder, 3723KB, 下载27次)

http://www.pudn.com/Download/item/id/851449.html

[文章/文档] yejing

12864 lcd显示器源程序
12864 lcd display source (2009-07-21, C++ Builder, 16KB, 下载1次)

http://www.pudn.com/Download/item/id/851437.html

[文章/文档] CoverageandcapacitiesplansstudyofWCDMA

本文根据3GPP规范,对WCDMA的覆盖与容量规划进行了分析研究。WCDMA在接入技术上比2G有了很大改善,这也使相应的网络规划方法发生了改变。与以往2G网络规划的传统静态预测不同,设计好一个WCDMA网络关键在于如何平衡覆盖与容量的关系。 本文是按照网络规划步骤展开分析的。首先使用静态分析计算得到基站覆盖的大致距离,以确定区域的基站密度和分布,这是进行网络仿真预测的基础 然后分析单一业务时覆盖与容量的关系 最后使用MonetCarlo法仿真多业务混合时的覆盖与容量状况。文中针对仿真预 测中容易出现的问题进行了探讨,重点介绍了WCDMA传播模型的校正方法,同时使用一 种新的基于负荷估计的呼叫接入控制算法来更好地模拟用户的干扰水平,在一定程度上提高了仿真预测的准确度,为将来网络的建设提供了借鉴。
The main body of a book GPP is standard according to 3 , the analysis having been in progress to the WCDMA coverage and capacities plans studies. WCDMA is compared to 2 G on cut-over technology have had very big improvement , this also makes the corresponding network plan method having happened change. Different from the tradition static state forecast that 2 G networks in the past plan, design that lie in the relation how to balance coverage and capacities how wonderful WCDMA network key be. (2009-06-01, C++ Builder, 6099KB, 下载49次)

http://www.pudn.com/Download/item/id/787250.html

[文章/文档] AD9850

基于AD9850的DDS信号源设计,输出信号稳定,失真度小 (2007-09-06, C++ Builder, 117KB, 下载97次)

http://www.pudn.com/Download/item/id/328844.html

[文章/文档] 1kHz10MHz

基于1KHz~10MHz系列的DDS设计原理及注意事项,附有控制程序
1KHz ~ 10MHz series based on the DDS design principles and attention, with control procedures (2007-09-06, C++ Builder, 347KB, 下载18次)

http://www.pudn.com/Download/item/id/328841.html

[文章/文档] CPU 测速(MHz)和高精度延时(微秒级)

一.高精度延时, 是 CPU 测速的基础 Windows 内部有一个精度非常高的定时器, 精度在微秒级, 但不同的系统这个定时器的频率不同, 这个频率与硬件和操作系统都可能有关。 利用 API 函数 QueryPerformanceFrequency 可以得到这个定时器的频率。 利用 API 函数 QueryPerformanceCounter 可以得到定时器的当前值。 根据要延时的时间和定时器的频率, 可以算出要延时的时间定时器经过的周期数。 在循环里用 QueryPerformanceCounter 不停的读出定时器值, 一直到经过了指定周期数再结束循环, 就达到了高精度延时的目的。 高精度延时的程序, 参数: 微秒 二.测速程序 利用 rdtsc 汇编指令可以得到 CPU 内部定时器的值, 每经过一个 CPU 周期, 这个定时器就加一。 如果在一段时间内数得 CPU 的周期数, CPU工作频率 = 周期数 / 时间 为了不让其他进程和线程打扰, 必需要设置最高的优先级 以下函数设置当前进程和线程到最高的优先级。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS) SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL) CPU 测速程序的源代码, 这个程序通过 CPU 在 1/16 秒的时间内经过的周期数计算出工作频率, 单位 MHz:
one. High-precision delay, the CPU speed is the basis of Windows within a very high accuracy of the timer, the microsecond precision, but in the system timer different frequencies, the frequency and hardware and the operating system are likely. Using API function can be QueryPerformanceFrequency the timing The frequency. Use QueryPerformanceCounter API function can be the current timer value. According to the delay time and the frequency of the timer, you could calculate the time to delay timer after a few cycles. The circle with QueryPerformanceCounter repeatedly read out the timer value, until after a specified number of cycles end the cycle again, it reached a high precision delay purposes. High-precision delay the procedure parameters : 2 microsecond. Gun utilize RDTSC instruction can (2005-12-31, C++ Builder, 1KB, 下载165次)

http://www.pudn.com/Download/item/id/137208.html

[文章/文档] 编译原理课程设计

编译原理词法分析,一个非常好的词法分析程序,还有附加原程序,值得一看!
compiler theory lexical analysis, a very good lexical analysis procedure, the original Additional procedures, eye-catcher! (2005-06-16, C++ Builder, 10KB, 下载171次)

http://www.pudn.com/Download/item/id/1118851512552048.html

[文章/文档] 用C++builder 制作flash播放器的几个细节问题

用C++builder 制作flash播放器的几个细节问题
C builder flash player produced several details (2004-11-30, C++ Builder, 3KB, 下载13次)

http://www.pudn.com/Download/item/id/1101825245282883.html

[文章/文档] lily66

编译,实验,语法分析器
compiler, experiment, Parser (2004-11-15, C++ Builder, 14KB, 下载50次)

http://www.pudn.com/Download/item/id/1100489455139981.html
总计:12