I have a HDMI monitor, and when no cable is plugged in it displays a message stating this.
I connect to a monitor from the HDMI TX on the Z1, and the message on monitor disappears, so it seems the board is detected, but the monitor sleeps as it is getting no signal.
I run the code below:
from pynq.drivers.video import HDMI
hdmi_out = HDMI('out')
hdmi_out.mode(4) # 1920x1080
hdmi_out.start()
I tried manually creating a frame and writing data to in, and then writing to the display:
frame = hdmi_out.frame(0) # dumping frame at index
Addresses in drivers/video.py have been updated to match latest base design address scheme. Tested with the attached notebook.
[Uploading Video.zip…]()
HDMI out does not seem to be working.
I have a HDMI monitor, and when no cable is plugged in it displays a message stating this.
I connect to a monitor from the HDMI TX on the Z1, and the message on monitor disappears, so it seems the board is detected, but the monitor sleeps as it is getting no signal.
I run the code below:
from pynq.drivers.video import HDMI hdmi_out = HDMI('out')
hdmi_out.mode(4) # 1920x1080 hdmi_out.start()
I tried manually creating a frame and writing data to in, and then writing to the display:
frame = hdmi_out.frame(0) # dumping frame at index
AM I doing something wrong?