关于ek-lm3s811 uart_echo的疑问

2019-03-24 15:29发布

在了解ek-lm3s811时,看到uart_echo的demo,想要用到自己的项目中,但后来出现不能回显得问题,所以就新建了一个项目,将uart_echo项目中的源码拷贝到新项目中,一切都按照demo中的项目配置,编译下载后,仍然出现不能回显得问题,而且项目配置一样的情况下,生成的code大小还是不一样,所有的文件不一样的地方在startup.s文件中,但是这个文件是keil自动生成的,这个会有影响吗?都是使用的同样的库函数,我想差别就在其他的配置上。图片上显示的一个是TI(原demo)一个 Luminary(自己项目生成),这个影响应该很大,里面的代码也有几行不一样。问题会是出现在这里吗,如何解决这个问题 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
10条回答
microli
1楼-- · 2019-03-24 21:18
< //*****************************************************************************
//
// uart_echo.c - Example for reading data from and writing data to the UART in
//               an interrupt driven fashion.
//
// Copyright (c) 2005-2011 Texas Instruments Incorporated.  All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software for use solely and
// exclusively on TI's microcontroller products. The software is owned by
// TI and/or its suppliers, and is protected under applicable copyright
// laws. You may not combine this software with "viral" open-source
// software in order to form a larger program.
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
// DAMAGES, FOR ANY REASON WHATSOEVER.
//
// This is part of revision 7611 of the EK-LM3S811 Firmware Package.
//
//*****************************************************************************

Firmware版本已到7611!
microli
2楼-- · 2019-03-24 21:33
 精彩回答 2  元偷偷看……
academic
3楼-- · 2019-03-24 22:38
;******************************************************************************
;
; External declaration for the interrupt handler used by the application.
;
;******************************************************************************
        EXTERN  UARTIntHandler
.....
.....
        DCD     IntDefaultHandler           ; GPIO Port C
        DCD     IntDefaultHandler           ; GPIO Port D
        DCD     IntDefaultHandler           ; GPIO Port E
        DCD     UARTIntHandler              ; UART0 Rx and Tx
        DCD     IntDefaultHandler           ; UART1 Rx and Tx
        DCD     IntDefaultHandler           ; SSI0 Rx and Tx
David_Lee
4楼-- · 2019-03-24 23:20

原帖由 academic 于 2011-9-22 21:48 发表 ;****************************************************************************** ; ; External declaration for the interrupt handler used by the application. ; ;************************************* ...

 

用到了中断的话,得在startup.s里注册

 

另外,我记得那个例程是有点问题的,发送字符比较长的时候,会有丢字符的问题。

好像是因为调用的函数问题,它调用的串口函数把要发送的字符丢了就跑的,没有考虑fifo是否满,没有考虑前面字符是否发送完毕。

yhfathn
5楼-- · 2019-03-25 01:40
 精彩回答 2  元偷偷看……
yhfathn
6楼-- · 2019-03-25 07:23
原帖由 academic 于 2011-9-22 21:48 发表
;******************************************************************************
;
; External declaration for the interrupt handler used by the application.
;
;************************************* ...


问题确实出在这个地方,需要在startup文件里申明中断处理。这个问题真不会想到会出现在这个自动生成的文件中。

一周热门 更多>

相关问题

    相关文章