Admittedly, I'm not a real programmer. Using CCS v4, I'm trying to program a microcontroller and want to use an array of unsigned char. When I try to compile, CCS tells me "an array may not have elements of this type". Here is the code that chokes:
unsigned char dotFont[][] = {
{0x80,0x80,0x80,0x00,0x00,0x00,0x00},
{0x80,0xf9,0xf9,0x00,0x00,0x00,0x00},
{0x80,0xC0,0xf0,0x80,0xC0,0xf0,0x00},
{0x80,0xA4,0xff,0xa4,0xff,0xa4,0x00},
{0x80,0x94,0xac,0xff,0xcc,0xc4,0x00}
};
Is that really not allowed? Please offer me some advice why this array is not allowed.