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.

firmware: fix missing includes in some firmware headers

Add includes for any types/macros we use in these headers.

Change-Id: Icfcd7a58376c5738fe6562cdb3cdd7855df35c75

+4 -1
+1 -1
firmware/export/backlight.h
··· 22 22 #define BACKLIGHT_H 23 23 24 24 #include "config.h" 25 - 25 + #include <stdbool.h> 26 26 27 27 28 28 #if !defined(BOOTLOADER)
+1
firmware/export/pcm-internal.h
··· 23 23 #define PCM_INTERNAL_H 24 24 25 25 #include "config.h" 26 + #include "gcc_extensions.h" /* for FORCE_INLINE */ 26 27 27 28 #ifdef HAVE_SW_VOLUME_CONTROL 28 29 /* Default settings - architecture may have other optimal values */
+1
firmware/export/pcm.h
··· 23 23 24 24 #include <string.h> /* size_t */ 25 25 #include <inttypes.h> /* uint32_t */ 26 + #include <stdbool.h> 26 27 #include "config.h" 27 28 28 29 enum pcm_dma_status
+1
firmware/export/power.h
··· 22 22 #define _POWER_H_ 23 23 24 24 #include "config.h" 25 + #include <stdbool.h> 25 26 26 27 #if CONFIG_CHARGING 27 28 enum power_input_flags {