Skip to content

Commit

Permalink
targets/analog_pocket: Fix indent on videophy/cores.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Oct 9, 2023
1 parent 6386f29 commit ec2f948
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions litex_boards/targets/analog_pocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ def __init__(self, pads, clock_domain="sys"):
clk = ClockSignal(clock_domain)
)

self.videophy = VideoDDRPHY(platform.request("video"), clock_domain="video")
if with_video_colorbars:
self.add_video_colorbars(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")
if with_video_terminal:
self.add_video_terminal(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")
if with_video_framebuffer:
self.add_video_framebuffer(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")
self.videophy = VideoDDRPHY(platform.request("video"), clock_domain="video")
if with_video_colorbars:
self.add_video_colorbars(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")
if with_video_terminal:
self.add_video_terminal(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")
if with_video_framebuffer:
self.add_video_framebuffer(phy=self.videophy, timings="640x480@60Hz", clock_domain="video")

# Build --------------------------------------------------------------------------------------------

Expand Down

0 comments on commit ec2f948

Please sign in to comment.