KSM edits to RA8875

Dependents:   Liz_Test_Code

Revision:
163:17526689a3ed
Parent:
125:7a0b70f56550
--- a/Bitmap.h	Mon Feb 11 03:44:42 2019 +0000
+++ b/Bitmap.h	Wed Feb 13 04:20:12 2019 +0000
@@ -31,7 +31,7 @@
     uint16_t    bfReserved1;      ///< reserved placeholder for the structure footprint
     uint16_t    bfReserved2;      ///< reserved placeholder for the structure footprint
     uint32_t    bfOffBits;        ///< Offset to bitmap data 
-    } BITMAPFILEHEADER;
+    } BITMAPFILEHEADER;           // Size: 14B
 
 /// Bitmap information header
 typedef struct                    /**** BMP file info structure ****/
@@ -47,7 +47,7 @@
     int32_t     biYPelsPerMeter;  ///< Y pixels per meter 
     uint32_t    biClrUsed;        ///< Number of colors used 
     uint32_t    biClrImportant;   ///< Number of important colors 
-    } BITMAPINFOHEADER;
+    } BITMAPINFOHEADER;           // Size: 40B
 #pragma pop
 
 #define BF_TYPE 0x4D42            /* "MB" */