3761|7

30

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

发现TI LM4F232硬件库还有软件库函数有错误 [复制链接]

这是库函数,因为这个错误让我找了好久。
//*****************************************************************************
//
//! Sends an address character from the specified port when operating in 9-bit
//! mode.
//!
//! \param ulBase is the base address of the UART port.
//! \param ucAddr is the address to be transmitted.
//!
//! This function waits until all data has been sent from the specified port
//! and then sends the given address as an address byte.  It then waits until
//! the address byte has been transmitted before returning.
//!
//! The normal data functions (UARTCharPut(), UARTCharPutNonBlocking(),
//! UARTCharGet(), and UARTCharGetNonBlocking()) are used to send and receive
//! data characters in 9-bit mode.
//!
//! \note The availability of 9-bit mode varies with the Stellaris part in use.
//! Please consult the datasheet for the part you are using to determine
//! whether this support is available.
//!
//! \return None.
//
//*****************************************************************************
void
UART9BitAddrSend(unsigned long ulBase, unsigned char ucAddr)
{
    unsigned long ulLCRH;

    //
    // Check the arguments.
    //
    ASSERT(UARTBaseValid(ulBase));

    //
    // Wait until the FIFO is empty and the UART is not busy.
    //
    while(HWREG(ulBase + UART_O_FR) & (UART_FR_TXFE | UART_FR_BUSY))
    {
    }

    //
    // Force the address/data bit to 1 to indicate this is an address byte.
    //
    ulLCRH = HWREG(ulBase + UART_O_LCRH);
    HWREG(ulBase + UART_O_LCRH) = ((ulLCRH & ~UART_LCRH_EPS) | UART_LCRH_SPS |
                                   UART_LCRH_PEN);

    //
    // Send the address.
    //
    HWREG(ulBase + UART_O_DR) = ucAddr;

    //
    // Wait until the address has been sent.
    //
    while(HWREG(ulBase + UART_O_FR) & (UART_FR_TXFE | UART_FR_BUSY))
    {
    }

    //
    // Restore the address/data setting.
    //
    HWREG(ulBase + UART_O_LCRH) = ulLCRH;
}



注意看两个while循环就知道错在哪里了。

实际运行用ROM_库也是错的!

最新回复

UART_FR_TXFE  为 1 ,表示 TX FIFO 为空.没有数据需要发送。为 0 ,表示有数据需要发送。 UART_FR_BUSY  为 1 ,表示 UART 正在发送数据。 当检测到 UART_FR_BUSY 为 1 时,等待应该没有错。 问题应该出在 UART_FR_TXFE 这个地方,他为 1 表示 FIFO 为空了,就不需要等待了。 为 0 的时候才需要等待。 楼主是怎么发现这个问题的?操作什么样的外设要用到这个函数呢?  详情 回复 发表于 2012-3-15 09:26
 
点赞 关注

回复
举报

1万

帖子

16

TA的资源

版主

沙发
 

真地么

 
个人签名http://shop34182318.taobao.com/
https://shop436095304.taobao.com/?spm=a230r.7195193.1997079397.37.69fe60dfT705yr
 

回复

207

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
 
 
 

回复

30

帖子

0

TA的资源

一粒金砂(中级)

4
 

回复 沙发 ddllxxrr 的帖子

您去看看是否和我贴的一模一样,是一样的那就是错的!
 
 
 

回复

1803

帖子

0

TA的资源

五彩晶圆(高级)

5
 

回复 楼主 0nline 的帖子

有什么错误,没看出来啊。
 
 
 

回复

30

帖子

0

TA的资源

一粒金砂(中级)

6
 

回复 5楼 Study_Stellaris 的帖子

while(HWREG(ulBase + UART_O_FR) & (UART_FR_TXFE | UART_FR_BUSY))
你看看这一句本意是判断空闲和发送缓冲器不满的,结果现在你看看现在变成了当缓冲器空或者忙的时候一直循环!
 
 
 

回复

1803

帖子

0

TA的资源

五彩晶圆(高级)

7
 

回复 6楼 0nline 的帖子

UART_FR_TXFE  为 1 ,表示 TX FIFO 为空.没有数据需要发送。为 0 ,表示有数据需要发送。
UART_FR_BUSY  为 1 ,表示 UART 正在发送数据。
当检测到 UART_FR_BUSY 为 1 时,等待应该没有错。
问题应该出在 UART_FR_TXFE 这个地方,他为 1 表示 FIFO 为空了,就不需要等待了。
为 0 的时候才需要等待。
楼主是怎么发现这个问题的?操作什么样的外设要用到这个函数呢?
 
 
 

回复

30

帖子

0

TA的资源

一粒金砂(中级)

8
 

回复 7楼 Study_Stellaris 的帖子

485 通讯
 
 
 

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

随便看看
查找数据手册?

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