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

Commits on Mar 8, 2019

  1. applet.program.avr→applet.program.avr.spi

    Also, describe the Atmel programming interface mess.
    whitequark committed Mar 8, 2019
    Copy the full SHA
    91dfc35 View commit details
Showing with 476 additions and 440 deletions.
  1. +1 −1 software/glasgow/applet/all.py
  2. +32 −439 software/glasgow/applet/program/avr/__init__.py
  3. +443 −0 software/glasgow/applet/program/avr/spi.py
2 changes: 1 addition & 1 deletion software/glasgow/applet/all.py
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
from .debug.mips import DebugMIPSApplet
from .debug.arm_swd import DebugARMSWDApplet

from .program.avr import ProgramAVRApplet
from .program.avr.spi import ProgramAVRSPIApplet
from .program.ice40_flash import ProgramICE40FlashApplet
from .program.ice40_sram import ProgramICE40SRAMApplet
from .program.mec16xx import ProgramMEC16xxApplet
Loading