完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
求助PIC12LF1572串口问题这里是我的初始化:
void UART_init() { TRISA4=1; //1 = PORTA pin configured as an input (tri-stated) TRISA5=0; //0 = PORTA pin configured as an output ANSA4=0; //0 = Digital I/O; RA4 is assigned to port or digital special function RXDTSEL=1; //1 = RX/DT function is on RA5 TXCKSEL=1; //1 = TX/CK function is on RA4 SPEN=1; //1 = Serial port is enabled CREN=1; //1 = Enables receiver TXEN=1; //1 = Transmit is enabled BRG16=0; SPBRG=12; //Baud Rate is 9600 GIE=1; //1 = Enables all active interrupts PEIE=1; //1 = Enables all active peripheral interrupts RCIE=1; //1 = Enables the USART receive interrupt TXIE=0; //0 = Disables the USART transmit interrupt RCIF=0; //0 = Interrupt is not pending } 在中断中 void interrupt isr(void) { uint8_t receive; if(RCIE&&RCIF) { receive=RCREG; RCIF=0; while(!TRMT); uart_sent(receive); } } 发送: void uart_sent(uint8_t ch) { TXREG=ch; while(1) { if(TXIF==1) break; //?????? } } 问题是发送可以成功,我串口工具可以看到我发送的数据,但是接收不成功,请大神!!!!! |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
求解外围电路实现的是4脚给持续低电平复位并正常工作,高电平不工作的原因
2093 浏览 1 评论
3643 浏览 3 评论
PIC1946程序有一个变量在运行过程中恢复初始值其他变量保持不变
2341 浏览 2 评论
2770 浏览 0 评论
PIC16F1825的RC5引脚,在主程序中操作无效,在中断中可以改变是为什么?
4046 浏览 5 评论
993浏览 0评论
用XC8编译PIC18F25K80时提示下面Error,求怎么解决这个问题
6376浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-13 13:10 , Processed in 4.501088 second(s), Total 79, Slave 61 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号