The UART live capture on Buspirate v2go, does not work. I have tried different versions 2.5, 3.0.
I believe that it is caused by line 174 in UART.c (current trunk - r87)
if(UART1RX()==' ')break; //escape
This line waits for input from user. The line should be replaced by something like:
if (U1STAbits.URXDA==1){ if (U1RXREG == ' ') break; }
do the checking only when data is ready in the buffer.
Comment #1
Posted on Dec 4, 2009 by Happy GiraffeURAT1RX includes a blocking check for data:
http://code.google.com/p/the-bus-pirate/source/browse/trunk/source/baseIO.c#340
//get a byte from UART unsigned char UART1RX(void){
while(U1STAbits.URXDA == 0);
return U1RXREG;
}
What issues are you experiencing? The forum would probably be the best place to discuss.
Comment #2
Posted on Dec 5, 2009 by Happy Giraffe(No comment was entered for this change.)
Status: Fixed
Labels:
Type-Defect
Priority-Medium