1
0
Fork 0
forked from len0rd/rockbox

battery_level() already had a stub

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1367 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-07-16 11:11:00 +00:00
parent 77eb0e1328
commit 2534097fc8
2 changed files with 4 additions and 6 deletions

View file

@ -26,8 +26,3 @@ void backlight_time(int dummy)
{
(void)dummy;
}
int battery_level(void)
{
return 73;
}

View file

@ -73,7 +73,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c
APPS = main.c tree.c menu.c credits.c main_menu.c\
playlist.c showtext.c wps.c settings.c
@ -224,6 +224,9 @@ $(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c
$(OBJDIR)/stubs.o: ../common/stubs.c
$(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/power.o: $(DRIVERS)/power.c
$(CC) $(CFLAGS) -c $< -o $@
# these ones are simulator-specific