资源简介
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
- 上一篇:用哈夫曼编码实现文件压缩代码+报告
- 下一篇:最小二乘法曲线拟合C语言可执行代码
相关资源
- GD32F103例程
- stm32 DMA例程
- 基于STM32F407的W5500 tcpserver(官网例程
- QT CAN例程
- 博巨兴mcu例程(BJ8M601A)
- 电机控制例程
- STM8S105C6例程
- Wemos D1 mini阿里云MQTT例程
- C语言math.h文件使用说明及相应程序
- AVR单片机SPI通讯程序 (C语言源代码)
- prodave6.2 与s7-200通信例程
- C++调用C#库例程
- stm32L系列F系列 加密库Cryptographic lib
- 串口读写上位机例程
- MFC使用ado连接access数据库例程
- pic16的C语言例程
- 在vs中仿真uc/gui的例程,摆脱vc++
- 51单片机程序大全C语言写的150个程序
- ti官方DSP2812例程
- BMP180气压计STM32例程+51例程+数据手册
- LY-51S V2.33 c语言 160例程
- vc6下编写串口通讯例程
- mfc经典例程150例
- MSP430系列程序,各种例程。
- 单片机c语言和汇编语言混合编程详解
- MFC单文档绘图例程
- 正运动控制器入门程序例程vc++6.0版
- C51单片机C语言400例.zip
- visual c++教程第三版郑阿奇,丁有和课
- 51单片机C语言400例
评论
共有 条评论