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: m-labs/artiq
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e7146cc99942
Choose a base ref
...
head repository: m-labs/artiq
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 312e09150e07
Choose a head ref
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on Feb 27, 2016

  1. Copy the full SHA
    ade3eda View commit details
  2. Copy the full SHA
    bd9ceb4 View commit details

Commits on Feb 28, 2016

  1. Copy the full SHA
    3b6999a View commit details
  2. Copy the full SHA
    f8732ac View commit details
  3. Copy the full SHA
    312e091 View commit details
Showing with 423 additions and 62 deletions.
  1. +1 −1 artiq/gateware/rtio/phy/spi.py
  2. +397 −49 artiq/gateware/spi.py
  3. +17 −1 artiq/gateware/targets/kc705.py
  4. +8 −11 artiq/gateware/targets/pipistrello.py
2 changes: 1 addition & 1 deletion artiq/gateware/rtio/phy/spi.py
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@


class SPIMaster(Module):
def __init__(self, pads, onehot=False, **kwargs):
def __init__(self, pads, **kwargs):
self.submodules._ll = ClockDomainsRenamer("rio")(
SPIMasterWB(pads, **kwargs))
self.submodules._rt2wb = RT2WB(2, self._ll.bus)
Loading