ANSWERED Easy Nandpro commands

viper0831

Full Member
Aug 19, 2009
63
0
If anyone is interested I have written a small batch file for easy access to nandpro commands for reading and comparing nands. It will also write ecc images created from multibuilder. Just place it in your Nandpro folder. For ecc writing just copy your ecc file to your nandpro folder.

Please check it out.

Updated with support for programming the Coolrunner. xsvf files must be in nandpro folder.

Update #2 Renamed nand files to nanddump.bin 2, 3, 4 and Changed the option for nand compare to check all 4 nands on one command.

Easy Nandpro

Virus Scan





 
Last edited:

whoseanthony

VIP Member
Jul 3, 2011
208
0
Arkansas
Just out of curiosity, how can this help speed up the process? Does it do multiple checks of the nand? It is wise to do at least 3 checks to verify they match. If it does those steps and only continues if it gets 3 consecutive matches then I am sold.
 

DayvG

VIP Member
Apr 26, 2007
473
0
Gosport, UK
I can see this will be quite useful. Will save copying and pasting back and fourth. Good work buddy, the support and help on this forum is second to none! :D
 

joona2134

VIP Member
Jan 31, 2011
268
0
Walsall, UK
Nice one, will defo give this a go I hate using command prompt, must have 100 .bat files with different commands on lol :facepalm:
 

viper0831

Full Member
Aug 19, 2009
63
0
Just out of curiosity, how can this help speed up the process? Does it do multiple checks of the nand? It is wise to do at least 3 checks to verify they match. If it does those steps and only continues if it gets 3 consecutive matches then I am sold.
It is the same as command prompt, it just eliminates all the typing.

Right now you can compare 4 nands with 7,8,and 9 options. I can change it to compare 2 or 4 nand images in 1 go.



Update Complete.
 
Last edited:

RiderFx3

Full Member
Jan 9, 2011
25
0
Hello,
I have got a problem with your batch, and with any other Nandpro batch i can create...

When i launch the nandpro command, I have an "ARM incompatible ..." error in NandPro... but it's random...

For example, when I write this lines in a batch:
Code:
nandpro.exe usb: -r16 NAND1.bin
nandpro.exe usb: -r16 NAND2.bin
I have each time the ARM error on the first dump but the second dump is OK !!!
It's the same things with your batch, so I can't dump 2 files in queue...

I have tried with NandPro 2.0e & 2.0d... same problem.

If a run NandPro with CMD, i can dump 2 file without errors, but i must type the command manually for each dump.

any ideas ?
 

paul.86

VIP Member
Sep 4, 2011
242
0
ROTHERHAM
OP You can write ecc to either using +2 you dont need 16/64mb (thanks Martin c for bringing it to my attention)

From batch you need to speficy directorys
Plus if you run as admin op hasn't included
@ pushd
So somthings going to pop
Sent from my HTC Vision using Tapatalk

place nandpro and xsvf files in %temp%\cr\

Code:
@echo off
:menu
cls
echo Coolrunner Flasher
echo.
echo  Which Console Are You Glitching
echo.
echo.
echo.
echo  1 - Trinity
echo.
echo  2 - Opus
echo.
echo  3 - Falcon 
echo.
echo  4 - Zephyr
echo.
echo  5 - Jasper 16mb
echo.
echo  6 - Jasper 256mb
echo.
echo  7 - Jasper 512mb
echo.
echo.
echo  0 - BACK
echo.
 
set /P f=Select your console type then press ENTER: 
if "%f%"=="0" goto menu
if "%f%"=="7" goto 711
if "%f%"=="6" goto 611
if "%f%"=="5" goto 511
if "%f%"=="4" goto 411
if "%f%"=="3" goto 311
if "%f%"=="2" goto 211 
if "%f%"=="1" goto 111
goto cool
:111
%temp%\cr\nandpro xsvf: %temp%\cr\trinity.xsvf 
pause
goto menu
:211
%temp%\cr\nandpro xsvf: %temp%\cr\opus.xsvf 
pause
goto menu
:311
%temp%\cr\nandpro xsvf: %temp%\crfalcon.xsvf 
pause
goto menu
:411
%temp%\cr\nandpro xsvf: %temp%\cr\zephyr.xsvf
pause 
goto menu
:511
%temp%\cr\nandpro xsvf: %temp%\cr\jasper.xsvf 
pause
goto menu
:611
%temp%\cr\nandpro xsvf: %temp%\cr\jasper256.xsvf
pause 
goto menu
:711
%temp%\cr\nandpro xsvf: %temp%\cr\jasper512.xsvf 
pause
goto menu
http://www.mediafire.com/?dd926jmhneped43
try this all files included full script to do a full jtag read write create cpukey run nadpro cmd open options.ini
or pre scripted only usb not lpt tho unpack it and edit to your enjoyment
 
Last edited: