资源简介
DSP 28335 CAN通信 可用 已配置好
代码片段和文件信息
#include “DSP2833x_Device.h“ // DSP2833x Headerfile Include File
#include “DSP2833x_Examples.h“ // DSP2833x Examples Include File
// Prototype statements for functions found within this file.
void scib_echoback_init(void);
void scib_fifo_init(void);
void scib_xmit(int a);
void scib_msg(char *msg);
// Global counts used in this example
Uint16 LoopCount;
Uint16 ErrorCount;
void main(void)
{
Uint16 ReceivedChar;
char *msg;
// Step 1. Initialize System Control:
// PLL WatchDog enable Peripheral Clocks
// This example function is found in the DSP2833x_SysCtrl.c file.
InitSysCtrl();
// Step 2. Initalize GPIO:
// This example function is found in the DSP2833x_Gpio.c file and
// illustrates how to set the GPIO to it‘s default state.
// InitGpio(); Skipped for this example
// For this example only init the pins for the SCI-A port.
// This function is found in the DSP2833x_Sci.c file.
InitScibGpio();
InitXintf16Gpio();
// Step 3. Clear all interrupts and initialize PIE vector table:
// Disable CPU interrupts
DINT;
// Initialize PIE control registers to their default state.
// The default state is all PIE interrupts disabled and flags
// are cleared.
// This function is found in the DSP2833x_PieCtrl.c file.
InitPieCtrl();
// Disable CPU interrupts and clear all CPU interrupt flags:
IER = 0x0000;
IFR = 0x0000;
// Initialize the PIE vector table with pointers to the shell Interrupt
// Service Routines (ISR).
// This will populate the entire table even if the interrupt
// is not used in this example. This is useful for debug purposes.
// The shell ISR routines are found in DSP2833x_DefaultIsr.c.
// This function is found in DSP2833x_PieVect.c.
InitPieVectTable();
// Step 4. Initialize all the Device Peripherals:
// This function is found in DSP2833x_InitPeripherals.c
// InitPeripherals(); // Not required for this example
// Step 5. User specific code:
LoopCount = 0;
ErrorCount = 0;
scib_fifo_init(); // Initialize the SCI FIFO
scib_echoback_init(); // Initalize SCI for echoback
msg = “\r\n\n\nHello World!\0“;
scib_msg(msg);
msg = “\r\nYou will enter a character and the DSP will echo it back! \n\0“;
scib_msg(msg);
for(;;)
{
msg = “\r\nEnter a character: \0“;
scib_msg(msg);
// Wait for inc character
while(ScibRegs.SCIFFRX.bit.RXFFST !=1) { } // wait for XRDY =1 for empty state
// Get character
ReceivedChar = ScibRegs.SCIRXBUF.all;
// Echo character back
msg = “ You sent: \0“;
scib_msg(msg);
scib_xmit(ReceivedChar);
LoopCount++;
}
}
// Test 1SCIA DLB 8-bit word baud rate 0x000F default 1 STOP bit no parity
void scib_echoback_init()
{
// Note: Clocks were turned on to the SCIA peripheral
// in the InitSysCtrl() function
ScibRegs.SCICCR.all =0x0007; // 1
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 11052 2012-01-07 11:59 lab14-CAN\CAN.paf2
文件 1634 2008-01-08 10:40 lab14-CAN\CAN.pjt
文件 6553 2012-01-07 11:59 lab14-CAN\CAN.sbl
文件 1126 2012-01-06 18:34 lab14-CAN\Debug.lkf
文件 134 2012-01-06 18:48 lab14-CAN\cc_build_Debug.log
文件 1568 2012-01-06 18:48 lab14-CAN\CAN.CS_\FILE.DBF
文件 2281 2012-01-06 18:48 lab14-CAN\CAN.CS_\FILE.FPT
文件 3072 2012-01-06 18:48 lab14-CAN\CAN.CS_\FILE.CDX
文件 237647 2012-01-06 18:48 lab14-CAN\CAN.CS_\SYMBOL.DBF
文件 408762 2012-01-06 18:48 lab14-CAN\CAN.CS_\SYMBOL.FPT
文件 320512 2012-01-06 18:48 lab14-CAN\CAN.CS_\SYMBOL.CDX
文件 3941 2007-12-31 15:02 lab14-CAN\CMD\28335_RAM_lnk.cmd
文件 8438 2007-09-21 11:09 lab14-CAN\CMD\DSP2833x_Headers_nonBIOS.cmd
文件 27441 2012-01-06 18:34 lab14-CAN\Debug\CAN.map
文件 1112 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_ADC_cal.obj
文件 1391 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_CodeStartBranch.obj
文件 113759 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_CpuTimers.obj
文件 154305 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_DefaultIsr.obj
文件 117229 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_ECan.obj
文件 121824 2008-11-11 11:24 lab14-CAN\Debug\DSP2833x_GlobalVariableDefs.obj
文件 112547 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_PieCtrl.obj
文件 119445 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_PieVect.obj
文件 113409 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_Sci.obj
文件 112718 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_Spi.obj
文件 117527 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_SysCtrl.obj
文件 1123 2008-11-11 11:25 lab14-CAN\Debug\DSP2833x_usDelay.obj
文件 118965 2012-01-06 18:34 lab14-CAN\Debug\ECanBack2Back.obj
文件 114537 2012-01-06 15:21 lab14-CAN\Debug\DSP2833x_Xintf.obj
文件 165004 2012-01-06 18:34 lab14-CAN\Debug\CAN.out
文件 10465 2007-09-26 10:23 lab14-CAN\INCLUDE\DSP2833x_Adc.h
............此处省略53个文件信息
相关资源
- 使用CANVAS将网页以图片的格式存到服
- CANoe写bootloader上位机代码
- CANOPEN在STM32F103ZET6单片机上的实现
- STM32F103ZET6单片机CAN总线通信程序例程
- 实现对占空比的随时可调代码
- ScanWebDirectory 网站目录扫描工具
- 基于周立功的usbcan接口卡的labview开发
- 28335的SPWM调试
- CCS6.2版本Dsp28335工程(包含基本模块的
- Advanced IP Scanner
- 鼠标在canvas上悬浮,并提示鼠标位置
- officescan.rar
- 基于TMS320F28335的三相PWM整流器设计与
- DSP28335 SCI中用FIFO完成485收发通信
- DSP28335 三相SVPWM程序
- DSP28335控制DHT11温湿度传感器
- excanvas_r3.zip解决了ie8不支持canvas
- CANdb++使用说明
- MCP2515 can波特率计算器
- 一对多 多字节的can总线通信
-
TMS320F28335 DSP28xxx_Section
copy_nonBIOS.a - appscan9.0破解补丁
- Canoco软件的PCA教程
- 网页端抠图实现 H5抠图 canvas抠图 在
- 周立功USBCAN二次开发套件库-供vc开发
- 飞思卡尔S12X CAN接收发送源代码
- TMS320F28335PGFA原理图库PCB封装库
- 在WIN7 64位机Excel 2010安装MSCOMM控件的
- 车规级CAN收发器支持3.3V电平
- ScanPort 多线程源代码
评论
共有 条评论