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: whitequark/glasgow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d5c2ece9fb7
Choose a base ref
...
head repository: whitequark/glasgow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05de04395af7
Choose a head ref
  • 1 commit
  • 9 files changed
  • 1 contributor

Commits on Nov 29, 2018

  1. pyrepl→support.pyrepl

    whitequark committed Nov 29, 2018
    Copy the full SHA
    05de043 View commit details
2 changes: 1 addition & 1 deletion software/glasgow/applet/i2c_master/__init__.py
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@
from migen.genlib.fsm import *

from .. import *
from ...support.pyrepl import *
from ...gateware.pads import *
from ...gateware.i2c import I2CMaster
from ...pyrepl import *


CMD_START = 0x01
2 changes: 1 addition & 1 deletion software/glasgow/applet/jtag/__init__.py
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
from migen.genlib.fsm import FSM

from .. import *
from ...support.pyrepl import *
from ...gateware.pads import *
from ...database.jedec import *
from ...arch.jtag import *
from ...pyrepl import *


class JTAGBus(Module):
2 changes: 1 addition & 1 deletion software/glasgow/applet/jtag_arc/__init__.py
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@

from .. import *
from ..jtag import JTAGApplet
from ...pyrepl import *
from ...support.pyrepl import *
from ...arch.jtag import *
from ...arch.arc import *
from ...database.arc import *
2 changes: 1 addition & 1 deletion software/glasgow/applet/jtag_mec16xx/__init__.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
from .. import *
from ..jtag_arc import JTAGARCApplet
from ...support.aobject import *
from ...pyrepl import *
from ...support.pyrepl import *
from ...arch.arc import *
from ...arch.arc.mec16xx import *

2 changes: 1 addition & 1 deletion software/glasgow/applet/jtag_mips/__init__.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
from ..jtag import JTAGApplet
from ...support.aobject import *
from ...support.endpoint import *
from ...pyrepl import *
from ...support.pyrepl import *
from ...arch.mips import *
from ...protocol.gdb_remote import *

2 changes: 1 addition & 1 deletion software/glasgow/applet/nand_flash/__init__.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

from .. import *
from ...database.jedec import *
from ...pyrepl import *
from ...support.pyrepl import *


CMD_CONTROL = 0x01
2 changes: 1 addition & 1 deletion software/glasgow/applet/swd/__init__.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

from .. import *
from ...gateware.pads import *
from ...pyrepl import *
from ...support.pyrepl import *


class SWDBus(Module):
2 changes: 1 addition & 1 deletion software/glasgow/cli.py
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
from .device.hardware import VID_QIHW, PID_GLASGOW, GlasgowHardwareDevice
from .access.direct import *
from .applet import *
from .pyrepl import *
from .support.pyrepl import *


logger = logging.getLogger(__name__)
File renamed without changes.