2700|1

6

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

关于lm3s811串口通信 [复制链接]

打算将一个数组的数通过串口发送,处理后返回给pc,在例程基础上修改的,先试验的将接收到的数两两组合存入GetI那个数组中,于是编写的那一段

void
UARTIntHandler(void)
{
    unsigned long ulStatus;
 unsigned char num;
 int i=1;
    char Get_tempchar[2];
volatile int  temp1;
 //
    // Get the interrrupt status.
    //
    ulStatus = UARTIntStatus(UART0_BASE, true);

    //
    // Clear the asserted interrupts.
    //
    UARTIntClear(UART0_BASE, ulStatus);

    //
    // Loop while there are characters in the receive FIFO.
    //
    while(UARTCharsAvail(UART0_BASE))
    {    
        for(num=0;num<=1;num++)
  {
   Get_tempchar[num]=UARTCharGetNonBlocking(UART0_BASE);
    
  }
  temp1=Get_tempchar[0]<<8;
     GetI
=Get_tempchar[1]+temp1;
     i=i+1;
    }
}

理想的效果是我发送11  22  33  44  55  66 则GetI[0]=1122 GetI[1]=3344  GetI[2]=5566,但watch这个数组发现总是GetI[1]=5566,其他的都为0,求高手指教,没修改完的源代码如下:

#include "inc/hw_ints.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/debug.h"
#include "driverlib/gpio.h"
#include "driverlib/interrupt.h"
#include "driverlib/sysctl.h"
#include "driverlib/uart.h"

//*****************************************************************************
//
//! \addtogroup example_list
//! <h1>UART Echo (uart_echo)</h1>
//!
//! This example application utilizes the UART to echo text.  The first UART
//! (connected to the FTDI virtual serial port on the Stellaris LM3S811
//! Evaluation Board) will be configured in 115,200 baud, 8-n-1 mode.  All
//! characters received on the UART are transmitted back to the UART.
//
//*****************************************************************************

//*****************************************************************************
//
// The error routine that is called if the driver library encounters an error.
//
//*****************************************************************************
#ifdef DEBUG
void
__error__(char *pcFilename, unsigned long ulLine)
{
}
#endif

int  GetI[10]={0};
int  GetV[1001]={0};

//*****************************************************************************
//
// The UART interrupt handler.
//
//*****************************************************************************
void
UARTIntHandler(void)
{
    unsigned long ulStatus;
 unsigned char num;
 int i=1;
    char Get_tempchar[2];
volatile int  temp1;
 //
    // Get the interrrupt status.
    //
    ulStatus = UARTIntStatus(UART0_BASE, true);

    //
    // Clear the asserted interrupts.
    //
    UARTIntClear(UART0_BASE, ulStatus);

    //
    // Loop while there are characters in the receive FIFO.
    //
    while(UARTCharsAvail(UART0_BASE))
    {    
        for(num=0;num<=1;num++)
  {
   Get_tempchar[num]=UARTCharGetNonBlocking(UART0_BASE);
    
  }
  temp1=Get_tempchar[0]<<8;
     GetI
=Get_tempchar[1]+temp1;
     i=i+1;
    }
}

//*****************************************************************************
//
// Send a string to the UART.
//
//*****************************************************************************
void
UARTSend(const unsigned char *pucBuffer, unsigned long ulCount)
{
    //
    // Loop while there are more characters to send.
    //
    while(ulCount--)
    {
        //
        // Write the next character to the UART.
        //
        UARTCharPutNonBlocking(UART0_BASE, *pucBuffer++);
    }
}

//*****************************************************************************
//
// This example demonstrates how to send a string of data to the UART.
//
//*****************************************************************************
int
main(void)
{
    //
    // Set the clocking to run directly from the crystal.
    //
    SysCtlClockSet(SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN |
                   SYSCTL_XTAL_6MHZ);

    //

    //
    // Enable the peripherals used by this example.
    //
    SysCtlPeripheralEnable(SYSCTL_PERIPH_UART0);
    SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);

    //
    // Enable processor interrupts.
    //
    IntMasterEnable();

    //
    // 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(), 115200,
                        (UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE |
                         UART_CONFIG_PAR_NONE));

  UARTFIFOEnable(UART0_BASE);
  UARTFIFOLevelSet(UART0_BASE,                            //
                     UART_FIFO_TX4_8,                       // 
                     UART_FIFO_RX1_8);                      //
   
 //
    // Enable the UART interrupt.
    //
    IntEnable(INT_UART0);
    UARTIntEnable(UART0_BASE, UART_INT_RX | UART_INT_RT);


    //
    // Prompt for text to be entered.
    //
    UARTSend((unsigned char *)"Enter text: ", 12);
 //UARTSend(*******,12);

    //
    // Loop forever echoing data through the UART.
    //
    while(1)
    {
    }
}

[ 本帖最后由 fancier 于 2012-4-25 03:25 编辑 ]

最新回复

你这个字体看着忒累了~ 之所以出现你现在看到的结果是应为,你每次操作完GetI后,数组的Index没有变化,所以每次进中断都是在对GetI[0]赋值,前面的被后面的覆盖了 剩下的想必不用再说了吧~  详情 回复 发表于 2012-4-25 16:07
 
点赞 关注

回复
举报

1944

帖子

32

TA的资源

纯净的硅(高级)

沙发
 
你这个字体看着忒累了~

之所以出现你现在看到的结果是应为,你每次操作完GetI后,数组的Index没有变化,所以每次进中断都是在对GetI[0]赋值,前面的被后面的覆盖了

剩下的想必不用再说了吧~
 
 

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

随便看看
查找数据手册?

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
快速回复 返回顶部 返回列表