• 大小: 156KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-28
  • 语言: C/C++
  • 标签: DSP6713  GPIO  例程  

资源简介

DSP6713 官网例程 C语言 包括GPIO例程 很实用的官网例程,觉得值得分享给大家!

资源截图

代码片段和文件信息

/********************************************************************************\
\*  DEC6713_GPIO.c V1.00     *\

\*  Copyright 2004 by SEED Electronic Technology LTD.                           *\
\*  All rights reserved. SEED Electronic Technology LTD.                        *\
\*  Restricted rights to use duplicate or disclose this code are               *\
\*  granted through contract.         *\
                                             
\* Designed by: Hongshuai.Li     *\
\********************************************************************************/
/********************************************************************************\
\* The example introduces using technique for GPIO. It generates a certain 
frequency pulse on pin GPIO X. LED D8 will twinkleif the routine runs correctly.*\
\********************************************************************************/

#include 
#include 
#include 
/********************************************************************************/

static GPIO_Handle hGpio;
extern far void vectors();
/********************************************************************************/
/********************************************************************************/
main()
{
/* Initialize CSLmust when using CSL. */
CSL_init();

/* Initialize DEC6713 board. */
DEC6713_init();

IRQ_setVecs(vectors);     /* point to the IRQ vector table */
   IRQ_globalEnable();       /* Globally enable interrupts       */ 
   IRQ_nmiEnable();          /* Enable NMI interrupt             */
/* Set GPIO. */
hGpio = GPIO_open(GPIO_DEV0GPIO_OPEN_RESET);

GPIO_reset(hGpio);

//GPIO_config(hGpio&MyGPIOCfg);

GPIO_pinEnable(hGpioGPIO_PIN13);

GPIO_pinDirection(hGpioGPIO_PIN13GPIO_OUTPUT);

while(1)
{
GPIO_pinWrite(hGpioGPIO_PIN130);
DEC6713_wait(0xfffff);
GPIO_pinWrite(hGpioGPIO_PIN131);
DEC6713_wait(0xfffff);
}
}
/******************************************************************************\
* End of GPIO_Test.c
\******************************************************************************/


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-08-15 21:12  DEC6713_GPIO\
     文件         670  2005-01-31 10:30  DEC6713_GPIO\cc_build_Debug.log
     文件      109678  2002-12-05 07:59  DEC6713_GPIO\csl6713.lib
     目录           0  2010-08-15 21:12  DEC6713_GPIO\Debug\
     文件         504  2005-01-31 10:30  DEC6713_GPIO\Debug.lkf
     文件         504  2005-01-31 10:30  DEC6713_GPIO\Debug.lkv
     文件        6481  2004-12-01 16:18  DEC6713_GPIO\DEC6713.C
     文件       13299  2004-10-28 16:09  DEC6713_GPIO\DEC6713.gel
     文件        2214  2005-01-26 16:14  DEC6713_GPIO\DEC6713_GPIO.c
     文件        4494  2005-02-02 11:13  DEC6713_GPIO\DEC6713_GPIO.paf
     文件        1026  2005-01-31 10:31  DEC6713_GPIO\DEC6713_GPIO.pjt
     文件        9273  2004-11-23 11:41  DEC6713_GPIO\DEC6713_GPIO.wks
     文件        1002  2004-12-01 16:15  DEC6713_GPIO\GPIO.cmd
     目录           0  2010-08-15 21:12  DEC6713_GPIO\include\
     文件        1074  2004-12-01 16:18  DEC6713_GPIO\include\DEC6713.h
     文件      343422  2003-01-08 09:42  DEC6713_GPIO\rts6700.lib
     文件        3626  2004-12-01 16:14  DEC6713_GPIO\vecs.asm

评论

共有 条评论