Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: timvideos/HDMI2USB-litex-firmware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: edef4712b8fd
Choose a base ref
...
head repository: timvideos/HDMI2USB-litex-firmware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 985f42281e2e
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Aug 22, 2015

  1. Makefile: since misoc/migen are now in build directory HDMI2USBDIR is…

    … necessary ../../, no need for auto determine it (which seems to cause issue on a Windows machine)
    enjoy-digital committed Aug 22, 2015
    Copy the full SHA
    ba01745 View commit details
  2. Copy the full SHA
    0077916 View commit details
  3. Copy the full SHA
    985f422 View commit details
Showing with 9 additions and 544 deletions.
  1. +1 −1 Makefile
  2. +0 −490 hdl/s6ddrphy.py
  3. +6 −31 targets/atlys_base.py
  4. +2 −22 targets/opsis_base.py
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ PROG ?= impact
SERIAL ?= /dev/ttyVIZ0
TARGET ?= hdmi2usb

HDMI2USBDIR = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
HDMI2USBDIR = ../../
PYTHON = python3

CMD = $(PYTHON) make.py -X $(HDMI2USBDIR) -t $(BOARD)_$(TARGET) -Ot firmware_filename $(HDMI2USBDIR)/firmware/lm32/firmware.bin -Op programmer $(PROG)
Loading