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.

Require HAVE_LCD_SLEEP when HAVE_LCD_SLEEP_SETTING is defined

Change-Id: I5429c538b8c46ab857100f3a290c4241c8991038

+5
+5
firmware/export/config.h
··· 1453 1453 other than audio support */ 1454 1454 #define AUDIOHW_SETTING(name, us, nd, st, minv, maxv, defv, expr...) 1455 1455 1456 + /* Trying to enable the setting without the underlying functions doesn't work */ 1457 + #if defined(HAVE_LCD_SLEEP_SETTING) && !defined(HAVE_LCD_SLEEP) 1458 + #error "HAVE_LCD_SLEEP_SETTING requires HAVE_LCD_SLEEP" 1459 + #endif 1460 + 1456 1461 #endif /* __CONFIG_H__ */