登录
首页 » Visual C++ » GPIO_Interrupt

GPIO_Interrupt

于 2014-10-18 发布 文件大小:150KB
0 142
下载积分: 1 下载次数: 51

代码说明:

  TMS320C6678 GPIO源代码,TMS320C6678是TI公司推出的一款8核DSP,具有强大的并行处理能力,GPIO主要用于通用管脚的输入输出,可以响应中断,代码书写简单,可以用于简单的命令控制(TMS320C6678 GPIO source code, TMS320C6678 is TI has introduced an 8-core DSP, a powerful parallel processing capability, GPIO mainly used for general purpose input and output pins that can respond to the interrupt, write simple code, can be used for simple command control)

文件列表:

GPIO_Interrupt
..............\.ccsproject,436,2012-11-19
..............\.cproject,16333,2012-11-22
..............\.project,2579,2012-11-19
..............\Debug
..............\.....\ccsObjs.opt,276,2012-12-24
..............\.....\ccsSrcs.opt,59,2012-12-24
..............\.....\DMA.obj,49512,2012-12-24
..............\.....\DMA.pp,2381,2012-12-24
..............\.....\GpioInterrupt.obj,42912,2012-12-24
..............\.....\GpioInterrupt.pp,4285,2012-12-24
..............\.....\GpioInterruptForDMA.obj,33536,2012-12-24
..............\.....\GpioInterruptForDMA.pp,4080,2012-12-24
..............\.....\GPIO_Interrupt.map,26978,2012-12-24
..............\.....\GPIO_Interrupt.out,307305,2012-12-24
..............\.....\makefile,3547,2012-12-24
..............\.....\objects.mk,457,2012-12-24
..............\.....\sources.mk,1809,2012-12-24
..............\.....\subdir_rules.mk,1969,2012-12-24
..............\.....\subdir_vars.mk,796,2012-12-24
..............\DMA.c,3786,2012-12-24
..............\DMA.h,348,2012-12-24
..............\GpioInterrupt.c,2996,2012-12-15
..............\GpioInterrupt.h,373,2012-11-22
..............\GpioInterruptForDMA.c,674,2012-12-24
..............\GPIO_DMA.cmd,855,2012-12-17

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

发表评论


0 个回复

  • bit_text
    C语言位操作应用举例,简要说明在C语言中如何操作字节中的位(C language bit manipulation application example, a brief description of how to operate in the C language byte in bits)
    2009-09-13 12:05:30下载
    积分:1
  • SpellChecking
    英文文章中单词拼写检查,并推荐可能存在的正确单词示例源码(Article in the English word spelling checker, and recommend the correct word there may be examples of source)
    2007-08-03 01:19:16下载
    积分:1
  • Sniffertheory
    这是根据sniffer用vc++做的一个sniffer小程序,仅供参考。(This is in accordance with sniffer with vc++ Make a sniffer applet, for informational purposes only.)
    2007-10-12 16:03:21下载
    积分:1
  • if_ioctl
    在Linux下获取本地ip 网关,dns服务器等数据(Get local ip gateway data under Linux)
    2012-10-05 11:02:53下载
    积分:1
  • ZigBeePCC2530P12864
    基于CC2530的12860液晶的串行驱动(CC2530-based serial LCD driver 12860)
    2013-09-04 10:18:31下载
    积分:1
  • WOL_AIO
    Wake On Lan 通过设置BIOS中的Wake ON LAN,可以通过局域网UDP广播,启动远程计算机。(Wake On Lan in the BIOS by setting Wake ON LAN, LAN UDP through radio, start the remote computer.)
    2007-07-31 21:10:47下载
    积分:1
  • MFCexp10_1
    这是任哲老师的程序案例,主要是MFC windows应用程序设计。有关MFC程序设计的程序,其中包含界面的设计和源代码的设计(the design of MFC,include the design of interface and source code)
    2012-02-29 10:10:49下载
    积分:1
  • 基于DVB标准的mpeg-2 TS码流播放器源代码
    自己设计的基于DVB标准的mpeg-2 TS码流播放器源代码(Of their own design based on the DVB standard mpeg-2 TS stream player source code)
    2012-07-17 10:06:00下载
    积分:1
  • MATLAB
    接收端采用的算法和程序流程与发送端发送的OFDM符号的帧结构有关系。具体的帧结构,以及定时估计,频偏估计,剩余误差跟踪的算法可参考算法说明文档。这里对程序的流程进行说明。 首先根据短训练字的特性进行相关运算,进行信号到达检测,当检测到相关值大于门限一定次数后,认为有信号到达。然后根据长训练字的特性,进行相关运算,进行OFDM符号FFT窗口起始位置的估计。估计出FFT窗口的位置后,先在时域进行小频偏的估计,将两个长训练字进行小频偏补偿后,进行FFT运算,根据FFT运算的结果进行整数倍频偏的估计。这些参数估计完成后,就可以进行数据解调了。先对数据部分进行完整的频偏补偿,然后根据估计的FFT窗口位置进行FFT运算得到频域的数据,进行解调。然后在对应于导频的子载波位置上提取出导频信息,根据导频信息估计出剩余定时误差以及剩余的信道响应误差,将误差量送入环路进行跟踪。当收到所有数据后,重新回到信号到达检测状态,进行下一次信号到达的检测和信号接收。 (good)
    2020-11-04 23:49:52下载
    积分:1
  • area
    定义一个基类MyGraph,要求有一个纯虚函数double Area()=0。从基类派生一个圆类Circle和矩形类Rectangle,再由Rectangle类派生出Square类,分别给出Area()实现。 重载“>>”,实现对图形信息的输入。在主函数中计算三种形状的面积,并显示输出。 (Define a base class MyGraph, requires a pure virtual function double Area () = 0. Derive a circle and a rectangle class Rectangle Circle class from the base class, and then by Square Rectangle class derived class, are given Area () implementation. Reload " > > " to achieve the input of graphical information. Calculate the shape of the three main functions in the area, and display output.)
    2014-02-07 23:13:19下载
    积分:1
  • 696518资源总数
  • 104629会员总数
  • 9今日下载