1
Bus Pirate Support / Re: How save SPI traffic in a file?, is it possible?
It means you will have to change to the directory where the app exists (or include it in the path) and start it from a command box.
If none of this makes sense, do this:
{windows}-R
cmd
cd "where-evertheapp is"
"app name" > output_file.txt
The quotes are only required if the path or filename includes spaces.
One possible issue: _ALL_ of the output will go to the output file, including any prompts for input.
So you will either have to type blind or create an input file containing anything you would have typed at any prompt and then pipe that file to the app:
app_name < input_file.txt > output_file.txt
It's old school (at least for most Windows users), but it works with most apps that display to the console.
-markr