Arun Raj / Mbed OS MAXREFDES101_SOURCE

Dependencies:   max32630fthr Adafruit_FeatherOLED USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mbed_logo.h Source File

mbed_logo.h

00001 /** 128*128 1bpp version of the mbed-enabled logo */
00002 #if 0
00003 extern const unsigned char mbed_enabled_logo[];
00004 #endif
00005 extern const unsigned char maxim_integrated_logo[];
00006 extern const unsigned char maxim128Bitmaps[];
00007 extern const unsigned char BLELogoBitmap[];
00008 extern const unsigned char USBLogoBitmap[];
00009 //extern const unsigned string a;
00010 
00011 #ifndef MBED_LOGO_H
00012 #define MBED_LOGO_H
00013 
00014 typedef struct
00015 {
00016     const unsigned char width;
00017     const unsigned char height;
00018     const unsigned short offset;
00019 
00020 } FONT_CHAR_INFO;
00021 
00022 typedef struct
00023 {
00024     const unsigned char height;
00025     const char startCh;
00026     const char endCh;
00027     const FONT_CHAR_INFO*   charDesc;
00028     const unsigned char* bitmap;
00029 
00030 } FONT_INFO;
00031 
00032 // Font data for Ubuntu Condensed 28pt
00033 extern const unsigned char ubuntuCondensed_28ptBitmaps[];
00034 extern const FONT_INFO ubuntuCondensed_28ptFontInfo;
00035 extern const FONT_CHAR_INFO ubuntuCondensed_28ptDescriptors[];
00036 // Bitmap info for maxim128
00037 
00038 //extern const unsigned char maxim128WidthPages;
00039 //extern const unsigned char maxim128HeightPixels;
00040 
00041 // Font data for Microsoft Sans Serif 8pt
00042 extern const unsigned char AM_Bitmap[];
00043 extern const unsigned char PM_Bitmap[];
00044 
00045 
00046 #endif // MBED_LOGO_H