Maxim Integrated / 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 
00010 #ifndef MBED_LOGO_H
00011 #define MBED_LOGO_H
00012 
00013 typedef struct
00014 {
00015     const unsigned char width;
00016     const unsigned char height;
00017     const unsigned short offset;
00018 
00019 } FONT_CHAR_INFO;
00020 
00021 typedef struct
00022 {
00023     const unsigned char height;
00024     const char startCh;
00025     const char endCh;
00026     const FONT_CHAR_INFO*   charDesc;
00027     const unsigned char* bitmap;
00028 
00029 } FONT_INFO;
00030 
00031 // Font data for Ubuntu Condensed 28pt
00032 extern const unsigned char ubuntuCondensed_28ptBitmaps[];
00033 extern const FONT_INFO ubuntuCondensed_28ptFontInfo;
00034 extern const FONT_CHAR_INFO ubuntuCondensed_28ptDescriptors[];
00035 // Bitmap info for maxim128
00036 
00037 //extern const unsigned char maxim128WidthPages;
00038 //extern const unsigned char maxim128HeightPixels;
00039 
00040 // Font data for Microsoft Sans Serif 8pt
00041 extern const unsigned char AM_Bitmap[];
00042 extern const unsigned char PM_Bitmap[];
00043 
00044 
00045 #endif // MBED_LOGO_H