Bitstream Interpretation Library (BIL)  0.1
v5cfgmap_genMsgs.cpp
Go to the documentation of this file.
1 
7 
8 
9 const char* const SPLASH_MSG =
10  "v5cfgmap_gen version 0.1\nCopyright (c) 2011 Florian Benz\n\n";
11 
12 const char* const LOADING_DEVICE_FILE_MSG =
13  "Loading device file...\n";
14 
15 const char* const LOADING_ADDRESS_LAYOUT1_MSG =
16  "Loading address layout for ";
17 
18 const char* const LOADING_ADDRESS_LAYOUT2_MSG =
19  "...\n";
20 
21 const char* const CREATING_TILEMAP_MSG =
22  "Creating configuration tile map...\n";
23 
24 const char* const WRITING_TILEMAP_FILE_MSG =
25  "Writing configuration tile map file...\n";
26 
27 const char* const FINISHED_MSG =
28  "Finished.\n";
29 
30 const char* const INFO_MSG =
31  "\n\nUsage: v5cfgmap_gen <infile> [<datapath> <outfile>]\n"
32  "Where:\n"
33  "<infile> = Name of device file to open\n"
34  "<datapath> = Path to device data files\n"
35  "<outfile> = Name of output map file\n\n"
36  "v5cfgmap_gen: Generates the configuration tile map file out of a Virtex-5\n"
37  " device file describing which tile gets configured by which\n"
38  " configuration frames.\n";
39 
40 
41 const char* const ERROR_MSG =
42  "Error: ";
43 
44 const char* const ERROR_UNKNOWN_MSG =
45  "Unknown error occurred.\n";
46 
47 
48 const char* const ERROR_TOO_FEW_PARAMETERS_MSG =
49  "Too few parameters!";
50 
51 const char* const ERROR_TOO_MANY_PARAMETERS_MSG =
52  "Too many parameters!";
53 
54 const char* const ERROR_UNKNOWN_OPTION_1_MSG =
55  "Unknown option \"";
56 
57 const char* const ERROR_UNKNOWN_OPTION_2_MSG =
58  "\"!";
59 
60 
61 const char* const CAL_FILE_EXT = ".cal";
62 
63 const char* const MAP_FILE_EXT = ".map";