You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is an issue with a known workaround, and here is the solution if anyone else is encountering the same issues i did
clone the tinyFPGA programmer application repo, as well as its 2 dependencies, "a-series programmer" and "b-series"
(if you clone it using the recursive command, that will do it automatically, but if youre on windows, chances are you arent downloading this using the command line)
copy the folder "tinyfpgab" from "b-series/programmer" into the tinyfpga programmer repo directory, so its in the same folder as the "tinyfpga-programmer-gui.py"
install python 2.7
copy the folders tcl8.5 and tk8.5 from c:/python27/tcl to c:/python27/lib (note: these directories may change depending on your python install. you may just have to find your python install folder wherever it is. the folders will always be named tcl and lib, though)
open cmd (windows key+r, type "cmd", press enter), use the cd command to navigate to your repo, and then run the commands "pip install pyserial", followed by "python tinyfpga-programmer-gui.py"
(optional) i suggest making a .bat file containing that last command so you dont have to redo that every time
The text was updated successfully, but these errors were encountered:
Fix for Issue tinyfpga#11, provide consistent usage of "--mode" parameter.
--mode is not mandatory for all use-cases of the programmer
while flashing m4app or appfpga images, --mode [m4/fpga/fpga-m4] should be specified - this is enforced, and error message displayed if not specified
standalone use of --mode continues to be available :
qfprog --mode to read the currently active mode on the board
qfprog --mode [m4/fpga/fpga-m4] to set the mode, without needing to flash images.
this is an issue with a known workaround, and here is the solution if anyone else is encountering the same issues i did
(if you clone it using the recursive command, that will do it automatically, but if youre on windows, chances are you arent downloading this using the command line)
The text was updated successfully, but these errors were encountered: