I have a simple dos program that reads the name of the IC on the board. The program works fine and it reads the IC properly. In a return it writes the name of the IC like the image shows below:
But it does not write the name MINI52ZDE anywhere (exit code for example), so i could know what type of a IC it is.
I would like to have the exit code MINI52ZDE or write the detection to a .txt file so i can run another program depending on the detection of IC (i have 2 diffrent types).
This is the code i used for that .bat file:
Code: Select all
NuLink –r UID > tip.txt
NuLink -p
:finish
pause
Without the quotes . The tip.txt file is used to write the the name, but im always getting a command error written in the tip.txt file.
Any have any solution to this?
Best