#include <stdio.h>
#include <stdint.h>
#include <string.h>
-//#include <libgen.h>
#include <arpa/inet.h>
-//#include <sys/types.h>
-//#include <sys/stat.h>
-//#include <unistd.h>
#include "math_helpers.h"
#include "testmode_qa_unpacker.h"
return 1;
}
- /*
- // construct foldername for results
- char results_foldername[1024] = "";
- strcpy(results_foldername, hld_filename);
- results_foldername[1023] = '\0'; // ensure it's a zero terminated string
- char *dot = strrchr(results_foldername, '.');
- if (dot && !strcmp(dot, ".hld"))
- strcpy(dot, ".results");
- else
- strcat(results_foldername, ".results");
- struct stat st = {0};
- printf("Results foldername: %s\n", results_foldername);
- if (stat(results_foldername, &st) == -1) {
- mkdir(results_foldername, 0700);
- }
- */
-
pos = 0;
memset(min_values, 0xff, BANKS*sizeof(testmode_frame_header));
memset(max_values, 0x00, BANKS*sizeof(testmode_frame_header));