德州仪器TMS320C6713 DSP 入门套件 (DSK)光盘资源
2024-01-17 15:27:16 547.77MB DSP6713 6713 TMS320C6713 DSP
1
DSP6713+FPGA+USB2.0增强板
2022-03-29 00:02:29 118KB DSP6713 FPGA USB2.0
1
dsp6713最小系统原理图pdf flash为sst39lf400 sdram为hy57v651620
2022-02-16 15:58:00 1.31MB tms320c6713bpyp
1
关于DSP的C6000系列,特别是C6713型号,中断设置的过程,和程序实例,具有很高的参考价值。 包含程序例子,可以直接调试
2021-12-30 16:45:59 38KB 6713 中断设置 教程 说明
1
/********************************************************************************\ \* 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 twinkle,if the routine runs correctly.*\ \********************************************************************************/ #include #include #include /********************************************************************************/ static GPIO_Handle hGpio; extern far void vectors(); /********************************************************************************/ /********************************************************************************/ main() { /* Initialize CSL,must 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_DEV0,GPIO_OPEN_RESET); GPIO_reset(hGpio); //GPIO_config(hGpio,&MyGPIOCfg); GPIO_pinEnable(hGpio,GPIO_PIN13); GPIO_pinDirection(hGpio,GPIO_PIN13,GPIO_OUTPUT); while(1) { GPIO_pinWrite(hGpio,GPIO_PIN13,0); DEC6713_wait(0xfffff); GPIO_pinWrite(hGpio,GPIO_PIN13,1); DEC6713_wait(0xfffff); } } /***************************
2021-11-09 16:38:24 2KB DSP6713
1
DSP6713 官网例程 C语言 包括GPIO例程 很实用的官网例程,觉得值得分享给大家!
2021-09-19 19:03:26 156KB DSP6713 GPIO 例程
1
SEED6713的例程,大家如果刚接触6713这个应该是一个很好的学习的东西
2021-08-24 11:03:26 2.09MB DSP6713
1
烧写DSP6713的BootLoader例程与讲解,简单易懂直接运行
2021-08-16 10:01:53 5.8MB DSP6713 BootLoader
1
DSP6713 官网例程 C语言 包括基本的外设初始化程序 很实用的官网例程,觉得值得分享给大家!
2021-07-01 11:50:42 2.39MB DSP6713 官网例程
1
包含BootLoader ,Codec,EDMA,EEPROM,ESAM,FLASH,GPIO,SBSRAM,SDRAM,Timer,Uart,USB
2021-04-20 19:05:13 1.87MB DSP
1