Slow bounging logo.
[bertos.git] / examples / lm3s8962 / lm3s8962.c
index cb1200c90999a4b11dfbd9ec47edb3a875ebd340..d9f0c49d7b4db64ec2a86497646db58c079a041e 100644 (file)
@@ -158,7 +158,7 @@ static void bouncing_logo(Bitmap *bm)
                        &bertos_logo);
                text_xprintf(bm, 7, 0, TEXT_FILL | TEXT_CENTER, "Press SELECT to quit");
                rit128x96_blitBitmap(bm);
-               timer_delay(5);
+               timer_delay(15);
                if (kbd_peek() & KEY_MASK)
                        break;
        }
@@ -324,7 +324,7 @@ static struct MenuItem main_items[] =
        { (const_iptr_t)"Reboot", 0, (MenuHook)soft_reset, (iptr_t)&lcd_bitmap },
        { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
 };
-static struct Menu main_menu = { main_items, "BeRTOS", MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0 };
+static struct Menu main_menu = { main_items, "BeRTOS", MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0, rit128x96_blitBitmap };
 
 int main(void)
 {