dc05bec7e3
- Added XPM bitmap for the "trigger" state. - Init toolbar with USB debugger disabled state and switch to enabled when setting up the USB debug type. - USB debugger is now available with plugins enabled.
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
/* XPM */
|
|
static const char *usbdbg_xpm[] = {
|
|
/* width height num_colors chars_per_pixel */
|
|
" 32 32 2 1",
|
|
/* colors */
|
|
". c None",
|
|
"# c #000000",
|
|
/* pixels */
|
|
"................................",
|
|
"................................",
|
|
"......####################......",
|
|
".....######################.....",
|
|
"....#####..............#####....",
|
|
"....####................####....",
|
|
"....#####..............#####....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
"....########################....",
|
|
".....######################.....",
|
|
"......##................##......",
|
|
"......##................##......",
|
|
"......##..##........##..##......",
|
|
"......##..##........##..##......",
|
|
"......##..##........##..##......",
|
|
"......##..##........##..##......",
|
|
"......##................##......",
|
|
"......####################......",
|
|
".......##################......."
|
|
};
|