4032|3

7

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

LM3S811的uart中断问题 [复制链接]

我用lm3s811写的uart中断成只能触发一次!每次必须复位一次才能触发一次!这是什么原因??


代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
//*****************************************************************************
//通过key触发相应管脚中断
//进入中断后,翻转LED电平
//
//*****************************************************************************
#define  KEY_PERIPH             SYSCTL_PERIPH_GPIOB
#define  KEY_PORT               GPIO_PORTB_BASE
#define  KEY_PIN                GPIO_PIN_5

//  防止JTAG失效
void jtagWait(void)
{
    SysCtlPeripheralEnable(KEY_PERIPH);                           //  使能KEY所在的GPIO端口
    GPIOPinTypeGPIOInput(KEY_PORT, KEY_PIN);                       //  设置KEY所在管脚为输入

    if (GPIOPinRead(KEY_PORT, KEY_PIN) == 0x00)             //  若复位时按下KEY,则进入
    {
        for (;;);                                           //  死循环,以等待JTAG连接
    }

    SysCtlPeripheralDisable(KEY_PERIPH);                          //  禁止KEY所在的GPIO端口
}
//**********************************************************************************
//防止jtag被锁
//**********************************************************************************


// Send  strings to the UART0.
void Uart0SendStrings(unsigned char *pStr)
{
    while((*pStr!='\0'))
    {
                //Sends the character ucData to the transmit FIFO for the specified port.
                //If there is no space available in the transmit FIFO, this
                //function will wait until there is space available before return-ing.
                UARTCharPut(UART0_BASE, *(pStr++));                //发送字符,若FIFO满,自动等待
                //Writes the character ucData to the transmit FIFO for the speci?ed port.
                //This function does not block, so if there is no space available,
                //then a false is returned, and the application will have to retry the function later.
                //UARTCharPutNonBlocking(UART0_BASE, *(pStr++));         //发送字符,若FIFO满,返回false
    }
}
long Uart0ReceiveStrings(unsigned char s[4],unsigned char a,unsigned char i)
{     
      
   
      while(UARTCharsAvail(UART0_BASE))
         {
             a= UARTCharGet(UART0_BASE);
             s=a;

             i=i+1;
           // SysCtlDelay(200);
            // UARTCharPut(UART0_BASE, i+48);
         }
        // UARTCharPut(UART0_BASE, '/');
      
      return i;   
}
//主函数
int main(void)
{   
    unsigned char s[7];
    unsigned char i;
    unsigned int j;
    unsigned char a;
      
   
   
        //函数开始,调用Jta g防锁死程序
    jtagWait();
        // Set the clocking to run directly from the crystal.配置时钟
    SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN |
                   SYSCTL_XTAL_6MHZ);
        // Enable the peripherals used by this example.
    SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);
    SysCtlPeripheralEnable(SYSCTL_PERIPH_UART0);
   
        // Set GPIO A0 and A1 as UART pins.
    GPIOPinTypeUART(GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1);
        // Configure the UART for 115,200, 8-N-1 operation.
    UARTConfigSetExpClk(UART0_BASE, SysCtlClockGet(), 9600,
                        (UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE |
                         UART_CONFIG_PAR_NONE));
   UARTFIFOLevelSet(UART0_BASE,UART_FIFO_TX4_8,UART_FIFO_RX6_8);
    UARTIntEnable(UART0_BASE,UART_INT_RX|UART_INT_RT);
    IntEnable(INT_UART0);
    IntMasterEnable();  
   for(;;);

        
            
           
}


void UART0_ISR(void)
{  unsigned char a;
   unsigned long ulStatus;
   IntMasterDisable();
   ulStatus=UARTIntStatus(UART0_BASE,true);
   UARTIntClear(UART0_BASE,ulStatus);
   if((ulStatus&UART_INT_RX)||(ulStatus&UART_INT_RT))
    {     a= UARTCharGet(UART0_BASE);
          UARTCharPut(UART0_BASE,a);
        
      
    }
   IntEnable(INT_UART0);
   IntMasterEnable();
}

最新回复

将你的工程传上来 调试下~~  详情 回复 发表于 2011-8-1 14:54
 
点赞 关注

回复
举报

7

帖子

0

TA的资源

一粒金砂(中级)

沙发
 
调试时出现错误Mon Jun 20 14:33:28 2011: Warning: **ERROR**: Unable to start execution 0x00000004
 
 

回复

849

帖子

0

TA的资源

纯净的硅(高级)

板凳
 

回复 沙发 zwj123zwj 的帖子

帮你调了一下,没有出现你说的情况。明天有时间放到板子上跑跑才知道UART是否正常工作了。。
   出现无法写的地址的时候,一般是由于你将程序的起始地址改变了。
 
个人签名只有想不到,没有做不到。
 
 

回复

58

帖子

0

TA的资源

一粒金砂(高级)

4
 

回复 楼主 zwj123zwj 的帖子

将你的工程传上来 调试下~~
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表