]> hackdaworld.org Git - my-code/arm.git/blobdiff - betty/display.c
stupid mistake fixed, display basically working now!
[my-code/arm.git] / betty / display.c
index e102141d2a562ce4d7a87cea7c902fac3dbf832d..b3d3e9c89ff27d6c7d87d28c1da176f76f06354d 100644 (file)
@@ -14,7 +14,7 @@
  * functions
  */
 
  * functions
  */
 
-void display_clear_screen(void) {
+void display_fill_screen(u8 fill) {
 
        u8 page,width;
 
 
        u8 page,width;
 
@@ -22,12 +22,17 @@ void display_clear_screen(void) {
                DISPLAY_SET_C_ADDR(0);
                DISPLAY_SET_PAGE_ADDR(page);
                for(width=0;width<DISPLAY_DIMX;width++) {
                DISPLAY_SET_C_ADDR(0);
                DISPLAY_SET_PAGE_ADDR(page);
                for(width=0;width<DISPLAY_DIMX;width++) {
-                       DISPLAY_DATA=0x00;
-                       DISPLAY_DATA=0x00;
+                       DISPLAY_DATA=fill;
+                       DISPLAY_DATA=fill;
                }
        }
 }
 
                }
        }
 }
 
+void display_clear_screen(void) {
+
+       display_fill_screen(0x00);
+}
+
 void display_init(void) {
 
        DISPLAY_EXIT_POWER_SAVE;
 void display_init(void) {
 
        DISPLAY_EXIT_POWER_SAVE;