C-Link Protocol Commands
Keys/Display
B-26
Model 48
i
Instruction Manual
Thermo Electron Corporation
To convert this data into a BMP for use with windows, it needs to be turned
into a 4BPP as that is the smallest windows can display. Also note that BMP
files are upside down relative to this data, i.e. the top display line is the last
line in the BMP.
sc
screen
This command is meant for backward compatibility on the C series. Screen
information is reported using the “iScreen” command above.
Send:
screen
Receive:
screen
This is an I series
Instrument. Screen
Information not
available
Void unpackDisplay ( void far* tdib, unsigned char far* rlescreen )
{
int i,j,k;
unsigned char far *sc4bpp, *sc2bpp, *screen, *ptr;
ptr = screen = (unsigned char far *)malloc(19200);
//RLE decode the screen
for (i=0; i<19200 && (ptr - screen) < 19200; i++)
{
*(ptr++) = *(rle i);
if (*(rle i) == 0)
{
unsigned char rlecount = *(unsigned char *)(rle ++i);
while (rlecount)
{
*(ptr++) = 0;
rlecount--;
}
}
else if (*(rle i) == 0xff)
{
unsigned char rlecount = *(unsigned char *)(rle ++i);
while (rlecount)
{
*(ptr++) = 0xff;
rlecount--;
}
}
}
Содержание 48i
Страница 1: ...Model 48i Instruction Manual Gas Filter Correlation CO Analyzer Part number 101891 00 8Apr2005 ...
Страница 12: ...Preface Thermo Electron Corporation Model 48i Instruction Manual xii ...
Страница 22: ...Installation Startup 2 6 Model 48i Instruction Manual Thermo Electron Corporation ...
Страница 222: ...Servicing Service Locations 7 40 Model 48i Instruction Manual Thermo Electron Corporation ...
Страница 236: ...System Description I O Components 8 14 Model 48i Instruction Manual Thermo Electron Corporation ...
Страница 241: ...Thermo Electron Corporation Model 48i Instruction Manual 9 5 Figure 9 3 Bench Mounting ...
Страница 242: ...9 6 Model 48i Instruction Manual Thermo Electron Corporation Figure 9 4 EIA Rack Mounting ...
Страница 243: ...Thermo Electron Corporation Model 48i Instruction Manual 9 7 Figure 9 5 Retrofit Rack Mounting ...
Страница 244: ...Optional Equipment Mounting Options 9 8 Model 48i Instruction Manual Thermo Electron Corporation ...
Страница 292: ...C Link Protocol Commands Record Layout Definition B 46 Model 48i Instruction Manual Thermo Electron Corporation ...