I am running the demo titled ‘Hello World - Prints “Hello World” when ‘h’ is received over the UART port”
The documentation for this demo is no longer available:
https://alchitry.com/tutorials/verilog/mojo/hello-world/
I wanted to know what is the correct baud rate I should use for connecting via UART to the board. I’ve used the following command:
screen /dev/tty.usbserial-FT4MG9OV0 1000000
To match the pre-defined coded example and I have also used the 115200 rate and changed the code to match this rate:
.rst(rst) {
greeter greeter // instance of our greeter
uart_rx uart_rx(#BAUD(115_200), #CLK_FREQ(100_000_000))
uart_tx uart_tx(#BAUD(115_200), #CLK_FREQ(100_000_000))
}
But cannot seem to get connectivity. Can someone please provide any examples or guidance on how to make this successful or any other “Hello World” examples?
Best regards