完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
使用starterware中的OMAPL138_StarterWare_1_10_03_03examplesevmOMAPL138nand的 工程,编译没错误,下载后运行,到调用drivers中的uart.c中的 UARTCharPut
/** * brief This function checks indefinitely whether the Transmitter FIFO * (THR regsiter in non-FIFO mode)is empty. If found empty, a byte * is written into the THR register. * * param baseAdd Memory address of the UART instance being used. * param byteTx Byte to be transmitted. * * return None. * */ void UARTCharPut(unsigned int baseAdd, unsigned char byteTx) [ unsigned int txEmpty; txEmpty = (UART_THR_TSR_EMPTY | UART_THR_EMPTY); /* ** Here we check for the emptiness of both the Trasnsmitter Holding ** Register(THR) and Transmitter Shift Register(TSR) before writing ** data into the Transmitter FIFO(THR for non-FIFO mode). */ while (txEmpty != (HWREG(baseAdd + UART_LSR) & txEmpty)); /* ** Transmitter FIFO(THR register in non-FIFO mode) is empty. ** Write the byte onto the THR register. */ HWREG(baseAdd + UART_THR) = byteTx; ] 到这一句时候 while (txEmpty != (HWREG(baseAdd + UART_LSR) & txEmpty)); 就停了,不知道什么原因,希望能帮我看看,谢谢 |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
279 浏览 1 评论
494 浏览 2 评论
NA555DR VCC最低电压需要在5V供电,为什么用3.3V供电搭了个单稳态触发器也使用正常?
730 浏览 3 评论
MSP430F249TPMR出现高温存储后失效了的情况,怎么解决?
630 浏览 1 评论
对于多级放大电路板,在PCB布局中,电源摆放的位置应该注意什么?
1096 浏览 1 评论
请问下tpa3220实际测试引脚功能和官方资料不符,哪位大佬可以帮忙解答下
212浏览 20评论
请教下关于TAS5825PEVM评估模块原理图中不太明白的地方,寻求答疑
168浏览 14评论
两个TMP117传感器一个可以正常读取温度值,一个读取的值一直是0,为什么?
41浏览 13评论
在使用3254进行录音的时候出现一个奇怪的现象,右声道有吱吱声,请教一下,是否是什么寄存器设置存在问题?
144浏览 13评论
TLV320芯片内部自带数字滤波功能,请问linein进来的模拟信号是否是先经过ADC的超采样?
148浏览 12评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-13 00:53 , Processed in 0.821264 second(s), Total 76, Slave 60 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号