-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.c
180 lines (155 loc) · 3.29 KB
/
debug.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* Copying and distribution of this file, with or without modification,
* are permitted in any medium without royalty. This file is offered as-is,
* without any warranty.
*/
/*! @file debug.h
* @brief Contains a few facilities to be able to debug the code easier.
*/
#include "debug.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
OSC_ERR WrDbgImgInt16(const int16 *pData, const uint16 width, const uint16 height, const char * strPrefix, int32 seq)
{
struct OSC_PICTURE pic;
OSC_ERR err;
int i;
uint8 *pPix;
char strName[256];
char strTemp[16];
pPix = (uint8*)malloc(width*height);
pic.width = width;
pic.height = height;
pic.type = OSC_PICTURE_GREYSCALE;
pic.data = (void*)pPix;
strcpy(strName, strPrefix);
if (seq >= 0)
{
sprintf(strTemp, "%05u.bmp", (unsigned int)seq);
strcat(strName, strTemp);
}
else
{
strcat(strName, ".bmp");
}
for (i = 0; i < width*height; i++)
{
pPix[i] = (uint8)(((uint32)((int32)pData[i] + 0x8000)) >> 8);
}
err = OscBmpWrite(&pic, strName);
free(pPix);
return err;
}
OSC_ERR WrDbgImgUint16(const uint16 *pData, const uint16 width, const uint16 height, const char * strPrefix, int32 seq)
{
struct OSC_PICTURE pic;
OSC_ERR err;
int i;
uint8 *pPix;
char strName[256];
char strTemp[16];
pPix = (uint8*)malloc(width*height);
pic.width = width;
pic.height = height;
pic.type = OSC_PICTURE_GREYSCALE;
pic.data = (void*)pPix;
strcpy(strName, strPrefix);
if (seq >= 0)
{
sprintf(strTemp, "%05u.bmp", (unsigned int)seq);
strcat(strName, strTemp);
}
else
{
strcat(strName, ".bmp");
}
for (i = 0; i < width*height; i++)
{
pPix[i] = (uint8)(pData[i] >> 8);
}
err = OscBmpWrite(&pic, strName);
free(pPix);
return err;
}
OSC_ERR WrDbgImgUint8(const uint8 *pData, const uint16 width, const uint16 height, const char * strPrefix, int32 seq)
{
struct OSC_PICTURE pic;
OSC_ERR err;
char strName[256];
char strTemp[16];
pic.width = width;
pic.height = height;
pic.type = OSC_PICTURE_GREYSCALE;
pic.data = (uint8*)pData;
strcpy(strName, strPrefix);
if (seq != -1)
{
sprintf(strTemp, "%05u.bmp", (unsigned int)seq);
strcat(strName, strTemp);
}
else
{
strcat(strName, ".bmp");
}
err = OscBmpWrite(&pic, strName);
return err;
}
OSC_ERR WrDbgText(const char* strPrefix, int32 seq, const char *strFormat, ...)
{
FILE *pF;
char strName[256];
char strTemp[16];
va_list ap; /*< The dynamic argument list */
strcpy(strName, strPrefix);
if (seq != -1)
{
sprintf(strTemp, "%05u.txt", (unsigned int)seq);
strcat(strName, strTemp);
}
else
{
strcat(strName, ".txt");
}
pF = fopen(strName, "w");
if (pF == NULL)
{
return -EUNABLE_TO_OPEN_FILE;
}
va_start(ap, strFormat);
vfprintf(pF, strFormat, ap);
va_end(ap);
fflush(pF);
fclose(pF);
return SUCCESS;
}
OSC_ERR WrDbgData(void *pData, uint32 len, const char* strPrefix, int32 seq)
{
char strName[256];
char strTemp[16];
int32 ret;
FILE *pF;
strcpy(strName, strPrefix);
if (seq >= 0)
{
sprintf(strTemp, "%05u.dat", (unsigned int)seq);
strcat(strName, strTemp);
}
else
{
strcat(strName, ".dat");
}
pF = fopen(strName, "wb");
if (pF == NULL)
{
return -EUNABLE_TO_OPEN_FILE;
}
ret = fwrite(pData, 1, len, pF);
if (ret != len)
{
fclose(pF);
return -EFILE_ERROR;
}
fclose(pF);
return SUCCESS;
}