Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors in UART read #38

Closed
BrunoLevy opened this issue Apr 21, 2021 · 2 comments
Closed

Errors in UART read #38

BrunoLevy opened this issue Apr 21, 2021 · 2 comments
Labels

Comments

@BrunoLevy
Copy link
Owner

BrunoLevy commented Apr 21, 2021

Sometimes on the ULX3S I get random characters from the UART.
To reproduce: start FIRMWARE/EXAMPLES/tty_OLED.c
(or use the left arrow in the "commander" GUI to start the shell)

@BrunoLevy
Copy link
Owner Author

Fixed using BB/IFS1P3BX combo as follows:
(but I'm not 100% sure of what I deed though...)

 wire RXD_btw;
 BB RXD_bb(
   .I(1'b0), 
   .O(RXD_btw), 
   .B(RXD), 
   .T(1'b1)
 );
 IFS1P3BX RXD_pin(
   .SCLK(clk),		    
   .D(RXD_btw),
   .Q(RXD_internal),
   .PD(1'b0)		    
 );

@Mecrisp
Copy link
Contributor

Mecrisp commented Apr 26, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants