forked from psi46/psi46test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psi46test.h
45 lines (35 loc) · 962 Bytes
/
psi46test.h
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
/* -------------------------------------------------------------
*
* file: psi46test.h
*
* description: globals for PSI46V2 Wafer tester
*
* author: Beat Meier
* modified: 7.8.2013
*
* rev:
*
* -------------------------------------------------------------
*/
#ifndef PSI46TEST_H
#define PSI46TEST_H
#include "config.h"
#include "pixel_dtb.h"
#include "settings.h"
#include "prober.h"
#include "waferlist.h"
#include "protocol.h"
#include "pixelmap.h"
#include "test.h"
#include "chipdatabase.h"
#define VERSIONINFO TITLE " " VERSION " (" TIMESTAMP ")"
// global variables
extern int nEntry; // counts the entries in the log file
extern CTestboard tb;
extern CSettings settings; // global settings
extern CProber prober; // prober
extern CProtocol Log; // log file
extern CWaferList waferList; // wafer list for wafer test option
extern CChip g_chipdata;
void cmd();
#endif