3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * Command to load a splash screen to the VFDs.
26 * NOTE that this will be controlled by a key combination when
27 * the keyboard stuff works. For now the user has to enter a
28 * bitmap number (only VFD_TEST_LOGO is supported now - 16.10.2002).
29 * Added VFD_REMOTE_LOGO (same as VFD_TEST_LOGO but a different color)
32 * This rather crudely requires that each bitmap be included as a
38 #if (CONFIG_COMMANDS & CFG_CMD_VFD)
41 #define VFD_TEST_LOGO_BMPNR 0
42 #define VFD_REMOTE_LOGO_BMPNR 1
44 extern int transfer_pic(unsigned char, unsigned char *, int, int);
46 int trab_vfd (ulong bitmap
);
48 int do_vfd (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char *argv
[])
53 printf ("Usage:\n%s\n", cmdtp
->usage
);
57 if (argv
[1][0] == '/') { /* select bitmap by number */
58 bitmap
= simple_strtoul(argv
[1]+1, NULL
, 10);
59 return (trab_vfd(bitmap
));
62 /* display bitmap at given address */
63 bitmap
= simple_strtoul(argv
[1], NULL
, 16);
64 transfer_pic(3, (uchar
*)bitmap
, VFD_LOGO_HEIGHT
, VFD_LOGO_WIDTH
);
70 "vfd - load a bitmap to the VFDs on TRAB\n",
72 " - load bitmap N to the VFDs (N is _decimal_ !!!)\n"
74 " - load bitmap at address ADDR\n"
76 #endif /* CFG_CMD_VFD */
79 int trab_vfd (ulong bitmap
)
85 case VFD_TEST_LOGO_BMPNR
:
86 if ((s
= getenv ("bitmap0")) != NULL
) {
87 addr
= (uchar
*)simple_strtoul (s
, NULL
, 16);
89 addr
= &vfd_test_logo_bitmap
[0];
92 case VFD_REMOTE_LOGO_BMPNR
:
93 if ((s
= getenv ("bitmap1")) != NULL
) {
94 addr
= (uchar
*)simple_strtoul (s
, NULL
, 16);
96 addr
= &vfd_remote_logo_bitmap
[0];
100 printf("Unknown bitmap %ld\n", bitmap
);
103 transfer_pic(3, addr
, VFD_LOGO_HEIGHT
, VFD_LOGO_WIDTH
);
106 #endif /* CONFIG_VFD */