Hey, guys
I have read the ‘PynqMicroBlaze’ part in the doc, but I still can’t get that how I can use the peripherals in MicroBlaze Library (for example: UART). Are there any examples? Or did I miss any important tutorials?
Details:
When I type the following, jupyter notebook tells me “name ‘uart_open’ is not defined”
from pynq.lib import PynqMicroblaze
uart_open(0,1)
When I type the following,
%%microblaze
myuart = uart_open(0,1);
jupyter notebook tells me “File “”, line 1
_proxy.obj =
^
SyntaxError: invalid syntax”
I think I just missed some useful examples or tutorials, but I don’t know how to find them. Any advice will be appreciated, thank you for your help.
Chao Zhang