登录
首页 » PDF » Keil_MDK4PJLINK_V8_debug_V1.0

Keil_MDK4PJLINK_V8_debug_V1.0

于 2012-11-28 发布 文件大小:558KB
0 157
下载积分: 1 下载次数: 9

代码说明:

  Keil_MDK4+JLINK_V8基于LPC1788的调试,版本V1.0(Keil_MDK4+JLINK_V8 based LPC1788 debugging, version V1.0)

文件列表:

Keil_MDK4%2BJLINK_V8基于LPC1788的调试V1.0.pdf,617386,2012-11-28

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

发表评论

0 个回复

  • IAR
    IAR入门的学习资料,里面详细讲解了工程配置等问题(IAR entry of the learning materials, which explain in detail such issues as the project configuration)
    2010-09-25 18:02:17下载
    积分:1
  • pedometer
    本文设计了基于加速度传感器的计步器,并通过仿真以及实际调试得到了相应的结果的记录。本实验首先通过加速度传感器检测目标物体的运动,产生脉冲,将脉冲放大后经过施密特触发器整型为方波,并给出了方波的调试电路图。然后编写程序,利用D触发器检测方波的上升沿,当上升沿到来时,计数,并对十位、个位分别编码,然后由使能信号交替控制数码管输出结果。本文给出了仿真以及调试的程序、结果。(This article is designed pedometer-based acceleration sensor and the corresponding results recorded by simulation and debugging. The experiments by first acceleration sensor detects the movement of the target object, generates a pulse, the pulse amplification is a square wave after the Schmitt trigger integer, and gives the the debug circuit diagram of a square wave. Then write procedures, the use of the rising edge of the detection of the square wave of the D flip-flop, when the rising edge, the count, and ten bits are encoded, and then alternately by the enable signal output of the digital control. In this paper, a simulation and debugging procedures, results.)
    2013-03-13 08:58:22下载
    积分:1
  • Effective
    c++ effective系列丛书电子版(c++ effective electronic version of the book series)
    2013-12-06 19:18:06下载
    积分:1
  • DTMB_Modulator1111
    本总体方案完成国标GB20600-2006数字电视地面广播传输系统基带部分功能。 输入数据码流经过扰码器(随机化)、前向纠错编码(FEC),然后进行比特流到符号流的星座映射,再进行交织后形成基本数据块,基本数据块与系统信息组合(复用)后并经过帧体数据处理形成帧体,帧体与相应的帧头(PN序列)复接为信号帧(组帧),经过基带后处理转换为输出信号(8MHz带宽内)。该信号经变频转换为射频信号(UHF和VHF频段范围内)。用C程序设计了图形交互界面,可以在界面上直接设置调制参数。(The overall program completion GB GB20600-2006 digital terrestrial television broadcasting transmission systems baseband function. The input data stream through the scrambler (randomization), forward error correction (the FEC), then the symbol constellation mapping bitstream to the stream, and then after forming the basic block interleaving, the basic data block and information combined system ( multiplexing) after data processing and after the frame body forms a frame body, frame body with a corresponding header (PN sequence) multiplexed signal frame (framing), after post-processing baseband signal is converted to an output (internal 8MHz bandwidth). The signal is downconverted to a radio frequency signal (in the VHF and UHF frequency range). C program designed graphical interface, you can set modulation parameters directly on the screen.)
    2021-01-29 23:48:41下载
    积分:1
  • KS103
    STM32 检测KS103超声波模块检测距离,串口发送(STM32 distance detection KS103 ultrasonic module, a serial port to send)
    2021-03-30 15:59:10下载
    积分:1
  • 3.HX711串口STM32例程
    说明:  称重模块,oled显示重量,RTC时钟显示时间,矩阵按键修改时间(Weighing module, OLED display)
    2020-06-19 17:20:02下载
    积分:1
  • ctrl
    说明:  模糊PID控制器,解决了规则爆炸的问题,同时改善了系统的动态性能和实时性(Fuzzy PID controller to solve the rule explosion problem, while improving the system dynamic performance and real-time)
    2010-04-29 09:31:20下载
    积分:1
  • nrf24z1info
    nrf24z1无线音频传输详细开发资料,PCB,原理图,源码。非常详细。(nrf24z1 wireless audio transmission detailed development information, PCB, schematics, source code. Very detailed.)
    2015-02-28 13:32:18下载
    积分:1
  • responder
    可以使用keil软件,利用51单片机实现抢答器功能(Keil software can be used to achieve the use of 51 single-chip Responder function)
    2016-12-22 15:12:29下载
    积分:1
  • UART_TXaRX
    单片机接收从电脑串口发送出来的一串字符串,却只能接收到第一个字符,其他的都丢失了或者是接收到的是乱码,却不知道是什么原因。其实,那是因为,虽然单片机的是全双工串口,但是串口的缓冲区(SBUF)却一般只有一个字节,即1Byte,远没有像电脑串口的缓冲区以KB计算那么大,并且,单片机的处理速度是很有限的,试想一下,假如要求一串字符串以9600bps的速率,一个起始位,一个结束位,无校正位,相当于960Byte/s传输到单片机,单片机要是能够全部接收的话,那么单片机接收和处理一个字节的时间仅为约1ms的时间。这说明了,如果单片机的处理速度不够快,还没有将接收到的上一帧数据及时转送到单片机的RAM中,而电脑串口又传输过来一帧新的数据,这帧新的数据就会把单片机的串口输入缓冲区的SBUF给刷新掉,或者说单片机压根就没有接收到新的一帧数据,造成了数据的丢失或接收到乱码。 如果需要单片机接收到从串口发送过来的一段很长的字符串,并且能够都正常接收和显示(TX&RX FUNCATION between PC and MCU)
    2013-10-20 08:35:17下载
    积分:1
  • 696516资源总数
  • 106562会员总数
  • 4今日下载