Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

iPod S5L87xx bootloader: Enable LCD sleep/awake test depending on target config, not on model

Change-Id: I7a3d86814e5f5b1c84ef73636f2094514aaf0120

+3 -3
+3 -3
bootloader/ipod-s5l87xx.c
··· 348 348 static uint16_t alive[] = { 500,100,0, 0 }; 349 349 static uint16_t alivelcd[] = { 2000,200,0, 0 }; 350 350 351 - #ifndef IPOD_6G 351 + #ifdef HAVE_LCD_SLEEP 352 352 static void sleep_test(void) 353 353 { 354 354 int sleep_tmo = 5; ··· 676 676 static void devel_menu(void) 677 677 { 678 678 const char *items[] = { 679 - #ifndef IPOD_6G 679 + #ifdef HAVE_LCD_SLEEP 680 680 "LCD sleep/awake test", 681 681 #endif 682 682 "PMU info", ··· 694 694 "Power off", 695 695 }; 696 696 void (*handlers[])(void) = { 697 - #ifndef IPOD_6G 697 + #ifdef HAVE_LCD_SLEEP 698 698 sleep_test, 699 699 #endif 700 700 pmu_info,