Skip to content

Commit

Permalink
lxsocsupport: update paths
Browse files Browse the repository at this point in the history
Update the path to include "lxsocsupport" instead of the generic
"gateware".

Signed-off-by: Sean Cross <sean@xobs.io>
  • Loading branch information
xobs committed Feb 18, 2019
1 parent b198653 commit 902ab67
Show file tree
Hide file tree
Showing 19 changed files with 6 additions and 6 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion cas.py → lxsocsupport/cas.py
Expand Up @@ -10,7 +10,7 @@
from migen.genlib.misc import WaitTimer

from litex.soc.cores.gpio import GPIOIn, GPIOOut
from gateware.led import RGBLed
from lxsocsupport.led import RGBLed

class ControlAndStatus(Module, AutoCSR):
def __init__(self, platform, clk_freq):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion led.py → lxsocsupport/led.py
Expand Up @@ -3,7 +3,7 @@
from litex.soc.interconnect.csr import *
from litex.soc.cores import gpio

from gateware.pwm import PWM
from lxsocsupport.pwm import PWM


class ClassicLed(gpio.GPIOOut):
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion opsis_i2c.py → lxsocsupport/opsis_i2c.py
Expand Up @@ -14,7 +14,7 @@
from litex.soc.cores.gpio import GPIOIn, GPIOOut
from litex.soc.interconnect.csr import *

from gateware import i2c
from lxsocsupport import i2c


class I2CShiftReg(Module, AutoCSR):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions lxsocsupport/streamer/__init__.py
@@ -0,0 +1 @@
from lxsocsupport.streamer.core import USBStreamer
2 changes: 1 addition & 1 deletion streamer/core.py → lxsocsupport/streamer/core.py
Expand Up @@ -45,4 +45,4 @@ def __init__(self, platform, pads):
)

# add vhdl sources
platform.add_source_dir(os.path.join("gateware", "streamer", "vhdl"))
platform.add_source_dir(os.path.join("lxsocsupport", "streamer", "vhdl"))
File renamed without changes.
2 changes: 1 addition & 1 deletion tofe.py → lxsocsupport/tofe.py
Expand Up @@ -4,7 +4,7 @@
from litex.soc.cores.gpio import GPIOIn, GPIOOut
from litex.soc.interconnect.csr import *

from gateware import i2c
from lxsocsupport import i2c


class TOFE(Module, AutoCSR):
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion streamer/__init__.py

This file was deleted.

0 comments on commit 902ab67

Please sign in to comment.