Programming with LPL
Making Objects
22-10
Using the LI-6400
22
size, the final array size matches the initializing sequence count (Table 22-5).
Char Arrays (Strings)
LPL implements strings as
CHAR
arrays. Characters and character arrays
can be initialized exactly like integers, but can also be initialized with string
constants. Generally, string constants begin and end with a double quote ("),
and everything in between is taken literally, including spaces, newline char-
acters, and comments. Actually, one can use any character to mark the start
and end of the string when declaring a
CHAR
array; whatever non-
whitespace character is first encountered when the parser is looking for the
initializing string is used for the terminating character of that string.
Examples of initializing
CHAR
s and
CHAR
arrays are shown in
Character arrays can also be initialized with a combination of characters and
numeric values by using escape sequences. For example, suppose you wish
to include double quotes within the string. Knowing that the decimal equiva-
lent of the double quote character is 34, one can write
Table 22-5.
Declaring arrays.
Declaration
Size
Initial Ready
:FLOAT abc[5] {1.234 1.23E+5 0 4.26 -.001}
5
5
:CHAR def[] {12 20 -15 2 33 6}
6
6
:INT jkl[10] {0xffff ÔAÕ 33}
10
3
:LONG xyz[3] {1 2 3 4 5}
5
5
:CHAR
flag 1
decimal '.'
esc 0x1b
name[80] "SYSTEM"
bad[] "Illegal Value!"
theBest[] .Penn State.
ok[] {1 2 5 9 20}
Figure 22-2. Declaring CHARs and strings.
Summary of Contents for LI-6400
Page 1: ...Using the LI 6400 Portable Photosynthesis System ...
Page 15: ...Part I The Basics ...
Page 16: ......
Page 174: ...Making Measurements Answers to Questions 4 56 Using the LI 6400 4 ...
Page 175: ...Part II Useful Details ...
Page 176: ......
Page 200: ...Standard Tools Power ON Hooks 5 24 Using the LI 6400 5 ...
Page 214: ...Real Time Data Real Time Graphics 6 14 Using the LI 6400 6 ...
Page 234: ...Environmental Control Light Control 7 20 Using the LI 6400 7 ...
Page 244: ...Light Sensor Considerations Gallium Arsenide Phosphide GaAsP Sensor 8 10 Using the LI 6400 8 ...
Page 288: ...Data Logging Making Your Own AutoPrograms 9 44 Using the LI 6400 9 ...
Page 289: ...Part III Working With Files ...
Page 290: ......
Page 312: ...The LPL File System Troubleshooting 10 22 Using the LI 6400 10 ...
Page 340: ...Downloading Files Using a Data Capture Program 11 28 Using the LI 6400 11 ...
Page 375: ...Part IV Configuration Issues ...
Page 376: ......
Page 420: ...Defining User Variables Old Style vs New Style 15 18 Using the LI 6400 15 ...
Page 454: ...Using an Energy Balance Further Reading 17 12 Using the LI 6400 17 ...
Page 455: ...Part V Maintenance Troubleshooting ...
Page 456: ......
Page 572: ...Troubleshooting Useful Information 20 46 Using the LI 6400 20 ...
Page 593: ...Part VI Programming ...
Page 594: ......
Page 622: ...Programming with LPL Compiler Directives 22 28 Using the LI 6400 22 ...
Page 846: ...Index I 16 Using the LI 6400 ...