
Designer Reference Manual USB08 Evaluation Board
86 USB08 Descriptors MOTOROLA
USB08 DescriptorsB.8 String Descriptors// Language IDs
//--------------
#define SD0LEN 4
//--------------
const uchar String0Desc[SD0L EN ] = {
// Size, Type
SD0LEN, DT_STRING,
// LangID Codes
0x09, 0x04
};
// Manufacturer String
//--------------------- -----------------------
#define SD1LEN sizeof("MCT Ele kt ro nikladen")*2
//--------------------- -----------------------
const uchar String1Desc[SD1L EN ] = {
// Size, Type
SD1LEN, DT_STRING,
// Unicode String
’M’, 0,
’C’, 0,
’T’, 0,
’ ’, 0,
’E’, 0,
’l’, 0,
’e’, 0,
’k’, 0,
’t’, 0,
’r’, 0,
’o’, 0,
’n’, 0,
’i’, 0,
’k’, 0,
’l’, 0,
’a’, 0,
’d’, 0,
’e’, 0,
’n’, 0
};