├── .gitignore ├── LICENSE ├── dev ├── build.bat ├── mp3convert.py ├── screenshot.png ├── screenshot2.png ├── song.bin ├── song.bin.license.txt └── wiring │ ├── breadboard.jpg │ ├── connections.pptx │ └── wiring.png ├── readme.md └── src ├── FTFlash.sln └── FTFlash ├── ChipID.cs ├── FTFlash.csproj ├── MenuForm.Designer.cs ├── MenuForm.cs ├── MenuForm.resx ├── ProgForm.Designer.cs ├── ProgForm.cs ├── ProgForm.resx ├── Program.cs ├── ProgramVersion.cs ├── SpiFlashManager.cs ├── TestForm.Designer.cs ├── TestForm.cs ├── TestForm.resx ├── WiringForm.Designer.cs ├── WiringForm.cs └── WiringForm.resx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/LICENSE -------------------------------------------------------------------------------- /dev/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/build.bat -------------------------------------------------------------------------------- /dev/mp3convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/mp3convert.py -------------------------------------------------------------------------------- /dev/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/screenshot.png -------------------------------------------------------------------------------- /dev/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/screenshot2.png -------------------------------------------------------------------------------- /dev/song.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/song.bin -------------------------------------------------------------------------------- /dev/song.bin.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/song.bin.license.txt -------------------------------------------------------------------------------- /dev/wiring/breadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/wiring/breadboard.jpg -------------------------------------------------------------------------------- /dev/wiring/connections.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/wiring/connections.pptx -------------------------------------------------------------------------------- /dev/wiring/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/dev/wiring/wiring.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/readme.md -------------------------------------------------------------------------------- /src/FTFlash.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash.sln -------------------------------------------------------------------------------- /src/FTFlash/ChipID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/ChipID.cs -------------------------------------------------------------------------------- /src/FTFlash/FTFlash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/FTFlash.csproj -------------------------------------------------------------------------------- /src/FTFlash/MenuForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/MenuForm.Designer.cs -------------------------------------------------------------------------------- /src/FTFlash/MenuForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/MenuForm.cs -------------------------------------------------------------------------------- /src/FTFlash/MenuForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/MenuForm.resx -------------------------------------------------------------------------------- /src/FTFlash/ProgForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/ProgForm.Designer.cs -------------------------------------------------------------------------------- /src/FTFlash/ProgForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/ProgForm.cs -------------------------------------------------------------------------------- /src/FTFlash/ProgForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/ProgForm.resx -------------------------------------------------------------------------------- /src/FTFlash/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/Program.cs -------------------------------------------------------------------------------- /src/FTFlash/ProgramVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/ProgramVersion.cs -------------------------------------------------------------------------------- /src/FTFlash/SpiFlashManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/SpiFlashManager.cs -------------------------------------------------------------------------------- /src/FTFlash/TestForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/TestForm.Designer.cs -------------------------------------------------------------------------------- /src/FTFlash/TestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/TestForm.cs -------------------------------------------------------------------------------- /src/FTFlash/TestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/TestForm.resx -------------------------------------------------------------------------------- /src/FTFlash/WiringForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/WiringForm.Designer.cs -------------------------------------------------------------------------------- /src/FTFlash/WiringForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/WiringForm.cs -------------------------------------------------------------------------------- /src/FTFlash/WiringForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/FTFlash/HEAD/src/FTFlash/WiringForm.resx --------------------------------------------------------------------------------