ok mate, sorry..
let me rephrase,
my question is, how do i replace a 7x8 monocrome bitmap, with a 16bit bmp?
for example:
const unsigned char bitmap_icons_7x8[][7] =
{
{0x08,0x1c,0x3e,0x3e,0x3e,0x14,0x14}, /* Power plug */
{0x1c,0x14,0x3e,0x2a,0x22,0x1c,0x08}, /* USB plug */
{0x01,0x1e,0x1c,0x3e,0x7f,0x20,0x40}, /* Speaker mute */
{0x00,0x7f,0x7f,0x3e,0x1c,0x08,0x00}, /* Play */
every line is one monocrome bitmap..
and in here:
const unsigned short bitmap[] = {
0x8430, 0x8430, 0x8430, 0x8430, 0x0000, 0x8430, 0x8430,
0x8430, 0xd91a, 0xe0da, 0x83d0, 0x0000, 0x8430, 0x8430,
0x8430, 0xf81d, 0xf81d, 0x8b91, 0x0000, 0x8430, 0x8430,
0x8430, 0xf05c, 0xe0db, 0x8430, 0x0000, 0x8430, 0x8430,
0x8430, 0x8430, 0x8430, 0x8430, 0x0000, 0x8430, 0x8430,
0x0000, 0x0000, 0x0000, 0x0000, 0x8430, 0x8430, 0x8430,
0x8430, 0x8430, 0x8430, 0x8430, 0x8430, 0x8430, 0x8430,
0x8430, 0x8430, 0x8430, 0x8430, 0x8430, 0x8430, 0x8430,
};
its only one 16bit bitmap..
this is the command that prints it:
display->mono_bitmap(bitmap_icons_7x8[mode], STATUSBAR_PLAY_MODE_X_POS,
STATUSBAR_Y_POS, STATUSBAR_PLAY_MODE_WIDTH,
STATUSBAR_HEIGHT);
it prints monochrome bitmap, and i want it to print a 16bit bitmap, how do i do that?