sibbley
Member
Thanks Don, I'll give that a try this weekend.
Is that reading the files based on the ARINDEX.DAT file listing?
I achieved 2837 files per second, also from a card reader. Pretty much the same speed as EZ Scan.
However, I have a lot of duplicates due to a bad ARINDEX.DAT, I assume. I'll try to motivate myself to have the scanner or EZ Scan rebuild the list. About 25% of the files on my CSV were duplicated. The number matched EZ Scan, so I just realized that all along I had duplicate recordings in EZ Scan.
#include <stdio.h>
int main( int argc, char *argv[] )
{
unsigned long filenum, dir, num;
unsigned char fnbuf[20];
FILE *fp, *afp;
fp = fopen( "X:\\REC\\ARINDEX.DAT", "wb" );
fwrite( "ARINDEX", 1, 8, fp );
for ( dir=0; dir<100000; dir++ )
{
for ( num=0; num<200; num++ )
{
sprintf( fnbuf, "X:\\REC\\%05ld\\%03ld.AU", dir, num );
if ( NULL != (afp = fopen( fnbuf, "rb" )) )
{
filenum = dir * 200 + num;
fwrite( &filenum, 4, 1, fp );
fclose( afp );
}
}
}
fclose( fp );
return 0;
}
I am able to see the detail of the AUParse in the command window but when it output to a log file it creates an Excel.CSV but there is no data. My SD Card is in Drive E. and the AUParse.exe is in C:\. So I used C:\AUParse E: > Log.csv and get a blank spreadsheet. Am I missing something here?
Thanks
PS I am using PSR-800
OK...Sorry Don. My frustration has been building over a few years. No acknowledgement on the issues reported, nor on suggestions made, so it's like no one is listening, cares, or anyone who could do something about them ever even heard them. That's the frustration. Thanks for that app. Nice of you to share that.
I have now over 114,000 data recordings (tracking long term trends) and will have to give that a try. Speed on a large amount of data like that is understandable, I guess. Audio recordings are somewhat large. But having all information in a CSV sortable file...and now having it out of EZscan is much better.
Phil
you can see it in the console window it should appear in the file when you redirect stdout.
Can you post a small sample of what appears in the console window? Maybe the first 10 lines, or so?
Screen Shot
Don, when I output an Excel.CSV file is created but all the cells are blank. I outputted it several times to different directories using different names but still the Excel file is completely blank.
No worries.
A couple of things to keep in mind, though: I neither specified the PSR-800 hardware or UI nor wrote the associated PC app. (Heck, even GRE didn't specify that UI, at least not directly). Also, I'm a contractor (have been since I started doing work for GRE 11 years ago - PSR-500) and not a Whistler employee.
I don't know if, in your previous post, you were using the terms "you" and "Whistler" interchangeably or if "you" referred to me, specifically. If the latter, see previous paragraph![]()
Are there any other source codes relating to Whistler scanners or EZ Scan that can be posted? It would be nice if they would be shared.
I spent a lot of time essentially creating the same thing, especially when it comes to making the arrays for non-standardized squelch value lists. Now that I said something about one of my projects, it is handed out.
At any rate, what is the byte at 164 for? In the documentation released by Whistler, it said it was reserved, but it looks to me to be in use.