├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── acsi2stm ├── Acsi.cpp ├── Acsi.h ├── BlockDev.cpp ├── BlockDev.h ├── Devices.cpp ├── Devices.h ├── DmaPort.cpp ├── DmaPort.h ├── FlashFirmware.cpp ├── FlashFirmware.h ├── GEMDRIVE.boot.h ├── GemDrive.cpp ├── GemDrive.h ├── Monitor.h ├── SysHook.cpp ├── SysHook.h ├── TinyFile.cpp ├── TinyFile.h ├── Tos.cpp ├── Tos.h ├── acsi2stm.h └── acsi2stm.ino ├── asm ├── ACSITEST │ ├── bss.s │ ├── buftest.s │ ├── cmdtest.s │ ├── data.s │ ├── main.s │ ├── rtc.s │ ├── surftest.s │ ├── terrsens.s │ ├── tinquiry.s │ ├── tinvlun.s │ ├── tmodsens.s │ ├── tos.s │ ├── tread.s │ ├── treadcap.s │ ├── treadlng.s │ ├── trqsense.s │ └── ttstunit.s ├── CHARGEN │ ├── bss.s │ ├── data.s │ ├── main.s │ └── tos.s ├── GEMDRIVE │ ├── boot.s │ ├── init.s │ ├── prg.s │ └── syshook.s ├── GEMDRPIO │ ├── init.s │ ├── prg.s │ └── syshook.s ├── HDDFLASH │ ├── bss.s │ ├── data.s │ ├── main.s │ └── tos.s ├── SWAPTEST │ ├── bss.s │ ├── data.s │ ├── main.s │ └── tos.s ├── TOSTEST │ ├── bss.s │ ├── data.s │ ├── main.s │ ├── tdcreate.s │ ├── tdsetdrv.s │ ├── tdsetpth.s │ ├── tfattrib.s │ ├── tfcropen.s │ ├── tfdatime.s │ ├── tfilecpy.s │ ├── tfileio.s │ ├── tfrename.s │ ├── tfsfirst.s │ ├── tmx.s │ ├── tos.s │ └── tpexec.s └── inc │ ├── acsicmd.s │ ├── string.s │ ├── tos.i │ └── tui.s ├── debug_arduino.sh ├── doc ├── compatibility.md ├── debug_output.txt ├── firmware.md ├── gemdrive.md ├── hardware.md ├── images │ ├── a1_cs_pulse.png │ ├── compact_idc20.jpg │ ├── compact_installed.jpg │ ├── compact_jumpers.png │ ├── compact_pcb_flash.jpg │ ├── drq_ack_pulse.png │ ├── install_devices.png │ ├── install_drive_menu.png │ ├── install_drive_popup.png │ ├── irq_cs_pulse.png │ ├── remove_desktop_icon.png │ ├── remove_drive.png │ ├── save_desktop.png │ ├── stm32cube-1.png │ ├── stm32cube-2.png │ └── usb_serial.jpg ├── jumpers.md ├── protocols.md ├── quick_start.md ├── standard_configurations.md ├── tools.md ├── troubleshooting.md └── tutorial.md ├── pcb ├── Compact │ ├── 3D view - ACSI2STM Compact.png │ ├── BOM - ACSI2STM Compact.csv │ ├── Gerber - ACSI2STM Compact.zip │ ├── PCB - ACSI2STM Compact.json │ ├── Photo view bottom - ACSI2STM Compact.svg │ ├── Photo view top - ACSI2STM Compact.svg │ ├── PickAndPlace - ACSI2STM Compact.csv │ ├── README.md │ ├── Schematic - ACSI2STM Compact.json │ └── Schematic - ACSI2STM Compact.pdf └── MegaSTE Internal │ ├── ACSI2STM MegaSTE - Gerbers.zip │ ├── ACSI2STM MegaSTE.kicad_pcb │ ├── ACSI2STM MegaSTE.kicad_prl │ ├── ACSI2STM MegaSTE.kicad_pro │ ├── ACSI2STM MegaSTE.kicad_sch │ ├── ACSI2STM MegaSTE.png │ ├── LICENSE │ └── README.md └── release_notes.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5.00 2 | -------------------------------------------------------------------------------- /acsi2stm/Acsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Acsi.cpp -------------------------------------------------------------------------------- /acsi2stm/Acsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Acsi.h -------------------------------------------------------------------------------- /acsi2stm/BlockDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/BlockDev.cpp -------------------------------------------------------------------------------- /acsi2stm/BlockDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/BlockDev.h -------------------------------------------------------------------------------- /acsi2stm/Devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Devices.cpp -------------------------------------------------------------------------------- /acsi2stm/Devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Devices.h -------------------------------------------------------------------------------- /acsi2stm/DmaPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/DmaPort.cpp -------------------------------------------------------------------------------- /acsi2stm/DmaPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/DmaPort.h -------------------------------------------------------------------------------- /acsi2stm/FlashFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/FlashFirmware.cpp -------------------------------------------------------------------------------- /acsi2stm/FlashFirmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/FlashFirmware.h -------------------------------------------------------------------------------- /acsi2stm/GEMDRIVE.boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/GEMDRIVE.boot.h -------------------------------------------------------------------------------- /acsi2stm/GemDrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/GemDrive.cpp -------------------------------------------------------------------------------- /acsi2stm/GemDrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/GemDrive.h -------------------------------------------------------------------------------- /acsi2stm/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Monitor.h -------------------------------------------------------------------------------- /acsi2stm/SysHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/SysHook.cpp -------------------------------------------------------------------------------- /acsi2stm/SysHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/SysHook.h -------------------------------------------------------------------------------- /acsi2stm/TinyFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/TinyFile.cpp -------------------------------------------------------------------------------- /acsi2stm/TinyFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/TinyFile.h -------------------------------------------------------------------------------- /acsi2stm/Tos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Tos.cpp -------------------------------------------------------------------------------- /acsi2stm/Tos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/Tos.h -------------------------------------------------------------------------------- /acsi2stm/acsi2stm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/acsi2stm.h -------------------------------------------------------------------------------- /acsi2stm/acsi2stm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/acsi2stm/acsi2stm.ino -------------------------------------------------------------------------------- /asm/ACSITEST/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/bss.s -------------------------------------------------------------------------------- /asm/ACSITEST/buftest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/buftest.s -------------------------------------------------------------------------------- /asm/ACSITEST/cmdtest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/cmdtest.s -------------------------------------------------------------------------------- /asm/ACSITEST/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/data.s -------------------------------------------------------------------------------- /asm/ACSITEST/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/main.s -------------------------------------------------------------------------------- /asm/ACSITEST/rtc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/rtc.s -------------------------------------------------------------------------------- /asm/ACSITEST/surftest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/surftest.s -------------------------------------------------------------------------------- /asm/ACSITEST/terrsens.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/terrsens.s -------------------------------------------------------------------------------- /asm/ACSITEST/tinquiry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/tinquiry.s -------------------------------------------------------------------------------- /asm/ACSITEST/tinvlun.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/tinvlun.s -------------------------------------------------------------------------------- /asm/ACSITEST/tmodsens.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/tmodsens.s -------------------------------------------------------------------------------- /asm/ACSITEST/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/tos.s -------------------------------------------------------------------------------- /asm/ACSITEST/tread.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/tread.s -------------------------------------------------------------------------------- /asm/ACSITEST/treadcap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/treadcap.s -------------------------------------------------------------------------------- /asm/ACSITEST/treadlng.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/treadlng.s -------------------------------------------------------------------------------- /asm/ACSITEST/trqsense.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/trqsense.s -------------------------------------------------------------------------------- /asm/ACSITEST/ttstunit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/ACSITEST/ttstunit.s -------------------------------------------------------------------------------- /asm/CHARGEN/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/CHARGEN/bss.s -------------------------------------------------------------------------------- /asm/CHARGEN/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/CHARGEN/data.s -------------------------------------------------------------------------------- /asm/CHARGEN/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/CHARGEN/main.s -------------------------------------------------------------------------------- /asm/CHARGEN/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/CHARGEN/tos.s -------------------------------------------------------------------------------- /asm/GEMDRIVE/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRIVE/boot.s -------------------------------------------------------------------------------- /asm/GEMDRIVE/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRIVE/init.s -------------------------------------------------------------------------------- /asm/GEMDRIVE/prg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRIVE/prg.s -------------------------------------------------------------------------------- /asm/GEMDRIVE/syshook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRIVE/syshook.s -------------------------------------------------------------------------------- /asm/GEMDRPIO/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRPIO/init.s -------------------------------------------------------------------------------- /asm/GEMDRPIO/prg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRPIO/prg.s -------------------------------------------------------------------------------- /asm/GEMDRPIO/syshook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/GEMDRPIO/syshook.s -------------------------------------------------------------------------------- /asm/HDDFLASH/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/HDDFLASH/bss.s -------------------------------------------------------------------------------- /asm/HDDFLASH/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/HDDFLASH/data.s -------------------------------------------------------------------------------- /asm/HDDFLASH/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/HDDFLASH/main.s -------------------------------------------------------------------------------- /asm/HDDFLASH/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/HDDFLASH/tos.s -------------------------------------------------------------------------------- /asm/SWAPTEST/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/SWAPTEST/bss.s -------------------------------------------------------------------------------- /asm/SWAPTEST/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/SWAPTEST/data.s -------------------------------------------------------------------------------- /asm/SWAPTEST/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/SWAPTEST/main.s -------------------------------------------------------------------------------- /asm/SWAPTEST/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/SWAPTEST/tos.s -------------------------------------------------------------------------------- /asm/TOSTEST/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/bss.s -------------------------------------------------------------------------------- /asm/TOSTEST/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/data.s -------------------------------------------------------------------------------- /asm/TOSTEST/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/main.s -------------------------------------------------------------------------------- /asm/TOSTEST/tdcreate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tdcreate.s -------------------------------------------------------------------------------- /asm/TOSTEST/tdsetdrv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tdsetdrv.s -------------------------------------------------------------------------------- /asm/TOSTEST/tdsetpth.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tdsetpth.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfattrib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfattrib.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfcropen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfcropen.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfdatime.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfdatime.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfilecpy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfilecpy.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfileio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfileio.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfrename.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfrename.s -------------------------------------------------------------------------------- /asm/TOSTEST/tfsfirst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tfsfirst.s -------------------------------------------------------------------------------- /asm/TOSTEST/tmx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tmx.s -------------------------------------------------------------------------------- /asm/TOSTEST/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tos.s -------------------------------------------------------------------------------- /asm/TOSTEST/tpexec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/TOSTEST/tpexec.s -------------------------------------------------------------------------------- /asm/inc/acsicmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/inc/acsicmd.s -------------------------------------------------------------------------------- /asm/inc/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/inc/string.s -------------------------------------------------------------------------------- /asm/inc/tos.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/inc/tos.i -------------------------------------------------------------------------------- /asm/inc/tui.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/asm/inc/tui.s -------------------------------------------------------------------------------- /debug_arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/debug_arduino.sh -------------------------------------------------------------------------------- /doc/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/compatibility.md -------------------------------------------------------------------------------- /doc/debug_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/debug_output.txt -------------------------------------------------------------------------------- /doc/firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/firmware.md -------------------------------------------------------------------------------- /doc/gemdrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/gemdrive.md -------------------------------------------------------------------------------- /doc/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/hardware.md -------------------------------------------------------------------------------- /doc/images/a1_cs_pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/a1_cs_pulse.png -------------------------------------------------------------------------------- /doc/images/compact_idc20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/compact_idc20.jpg -------------------------------------------------------------------------------- /doc/images/compact_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/compact_installed.jpg -------------------------------------------------------------------------------- /doc/images/compact_jumpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/compact_jumpers.png -------------------------------------------------------------------------------- /doc/images/compact_pcb_flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/compact_pcb_flash.jpg -------------------------------------------------------------------------------- /doc/images/drq_ack_pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/drq_ack_pulse.png -------------------------------------------------------------------------------- /doc/images/install_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/install_devices.png -------------------------------------------------------------------------------- /doc/images/install_drive_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/install_drive_menu.png -------------------------------------------------------------------------------- /doc/images/install_drive_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/install_drive_popup.png -------------------------------------------------------------------------------- /doc/images/irq_cs_pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/irq_cs_pulse.png -------------------------------------------------------------------------------- /doc/images/remove_desktop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/remove_desktop_icon.png -------------------------------------------------------------------------------- /doc/images/remove_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/remove_drive.png -------------------------------------------------------------------------------- /doc/images/save_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/save_desktop.png -------------------------------------------------------------------------------- /doc/images/stm32cube-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/stm32cube-1.png -------------------------------------------------------------------------------- /doc/images/stm32cube-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/stm32cube-2.png -------------------------------------------------------------------------------- /doc/images/usb_serial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/images/usb_serial.jpg -------------------------------------------------------------------------------- /doc/jumpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/jumpers.md -------------------------------------------------------------------------------- /doc/protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/protocols.md -------------------------------------------------------------------------------- /doc/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/quick_start.md -------------------------------------------------------------------------------- /doc/standard_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/standard_configurations.md -------------------------------------------------------------------------------- /doc/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/tools.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/doc/tutorial.md -------------------------------------------------------------------------------- /pcb/Compact/3D view - ACSI2STM Compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/3D view - ACSI2STM Compact.png -------------------------------------------------------------------------------- /pcb/Compact/BOM - ACSI2STM Compact.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/BOM - ACSI2STM Compact.csv -------------------------------------------------------------------------------- /pcb/Compact/Gerber - ACSI2STM Compact.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/Gerber - ACSI2STM Compact.zip -------------------------------------------------------------------------------- /pcb/Compact/PCB - ACSI2STM Compact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/PCB - ACSI2STM Compact.json -------------------------------------------------------------------------------- /pcb/Compact/Photo view bottom - ACSI2STM Compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/Photo view bottom - ACSI2STM Compact.svg -------------------------------------------------------------------------------- /pcb/Compact/Photo view top - ACSI2STM Compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/Photo view top - ACSI2STM Compact.svg -------------------------------------------------------------------------------- /pcb/Compact/PickAndPlace - ACSI2STM Compact.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/PickAndPlace - ACSI2STM Compact.csv -------------------------------------------------------------------------------- /pcb/Compact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/README.md -------------------------------------------------------------------------------- /pcb/Compact/Schematic - ACSI2STM Compact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/Schematic - ACSI2STM Compact.json -------------------------------------------------------------------------------- /pcb/Compact/Schematic - ACSI2STM Compact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/Compact/Schematic - ACSI2STM Compact.pdf -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE - Gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE - Gerbers.zip -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_pcb -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_prl -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_pro -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE.kicad_sch -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/ACSI2STM MegaSTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/ACSI2STM MegaSTE.png -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/LICENSE -------------------------------------------------------------------------------- /pcb/MegaSTE Internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/pcb/MegaSTE Internal/README.md -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retro16/acsi2stm/HEAD/release_notes.md --------------------------------------------------------------------------------