PSDR/Source/include/images.h
Michael Colton 7b8b1ac023 Starting to (slowly) make changes to the schematic for the next hardware version.
Making/made a lot of changes to the graphics and some to the menu system. Want to do a commit before I change too much more, incase I screw things up, you see. Graphics look much better!
2014-07-26 19:07:45 -06:00

30 lines
954 B
C

/*
* BMP image data converted from 24bpp
* to RGB565
*/
#define COLOR_BPP 16
#define COLOR_STORAGE_SIZE 2
#define BMPWIDTH 69;
#define BMPHEIGHT 33;
extern const unsigned short psdrLogo[];
extern const unsigned short bitmapMode[];
extern const unsigned short bitmapLSB[];
extern const unsigned short bitmapUSB[];
extern const unsigned short bitmapAM[];
extern const unsigned short bitmapPeriod[];
extern const unsigned short bitmapOne[];
extern const unsigned short bitmapTwo[];
extern const unsigned short bitmapThree[];
extern const unsigned short bitmapFour[];
extern const unsigned short bitmapFive[];
extern const unsigned short bitmapSix[];
extern const unsigned short bitmapSeven[];
extern const unsigned short bitmapEight[];
extern const unsigned short bitmapNine[];
extern const unsigned short bitmapZero[];
extern const unsigned short bitmapIronGradient[];
extern const unsigned short bitmapWebSdrGradient[];