User's Manual Part 2

10.2: Data Types Chapter 10: Syntax
22
String
A string shall consist of a sequence of displayable characters from the ISO 8859-1
(8-bit ASCII) character set, except for characters \ and " and characters below
32 (space). A string constant shall be delimited by two double-qoute (") charac-
ters, e.g. Donald Duck. If the double-quote character (") is to be used within
a string, e.g. "My friend "Bono" is a singer", they have to be represented as
\22. If the back-slash character (\) is to be used within a string constant, it has
to be represented as \5C. An empty string is represented by two adjacent delim-
iters, "".
Integer
An integer value consists of a sequence of characters all in the range {0..9}.
Numeric constants are expressed in decimal format only.
Enumerator
An enumerator value is actually an integer, where all its possible values are speci-
fied in each case. Only the defined values are accepted for the command in ques-
tion.
Bd_Addr
This type is used to represent the Bluetooth Device Address. The type is composed
of six fields, each representing a hexadecimal value using two characters. For ex-
ample, the Bluetooth Device Address 0x112233AABBCC is represented as
112233AABBCC or 112233aabbcc. Note that the Bluetooth Device Address is not
delimited with by two double-qoute (") characters.