From 9766cabdeff3acab7154dab624d6da8eed98a2ca Mon Sep 17 00:00:00 2001 From: "Kate J. Temkin" Date: Tue, 3 Apr 2018 04:49:02 -0600 Subject: [PATCH] fusee: jeez, srsly, kate, include all the files when you commit --- fusee/src/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fusee/src/main.c b/fusee/src/main.c index da36b0c56..a9b365e8e 100644 --- a/fusee/src/main.c +++ b/fusee/src/main.c @@ -14,6 +14,10 @@ int main(void) { lfb_base = display_init_framebuffer(); video_init(lfb_base); + // Always enable the backlight _after_ the display is initialized, + // to avoid flickering. + display_enable_backlight(true); + // Say hello. printk("Welcome to Atmosphere Fusee!\n"); printk("Using color linear framebuffer at 0x%p!\n", lfb_base);