forked from len0rd/rockbox
lcd-remote-target.h: Use only in firmware/target/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31614 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d00b7e8a6d
commit
12ef8723f8
6 changed files with 6 additions and 38 deletions
|
|
@ -29,10 +29,6 @@
|
||||||
|
|
||||||
#ifdef HAVE_REMOTE_LCD /* Not for the players with *only* a remote LCD (m3) */
|
#ifdef HAVE_REMOTE_LCD /* Not for the players with *only* a remote LCD (m3) */
|
||||||
|
|
||||||
#ifndef __PCTOOL__
|
|
||||||
#include "lcd-remote-target.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
||||||
#define REMOTETYPE_UNPLUGGED 0
|
#define REMOTETYPE_UNPLUGGED 0
|
||||||
#define REMOTETYPE_H100_LCD 1
|
#define REMOTETYPE_H100_LCD 1
|
||||||
|
|
@ -156,6 +152,10 @@ extern lcd_remote_blockfunc_type* const lcd_remote_blockfuncs[8];
|
||||||
|
|
||||||
#endif /* HAVE_LCD_REMOTE */
|
#endif /* HAVE_LCD_REMOTE */
|
||||||
|
|
||||||
|
#ifdef HAVE_REMOTE_LCD_TICKING
|
||||||
|
void lcd_remote_emireduce(bool state);
|
||||||
|
#endif
|
||||||
|
|
||||||
void lcd_remote_init_device(void);
|
void lcd_remote_init_device(void);
|
||||||
void lcd_remote_on(void);
|
void lcd_remote_on(void);
|
||||||
void lcd_remote_off(void);
|
void lcd_remote_off(void);
|
||||||
|
|
|
||||||
|
|
@ -50,9 +50,6 @@
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined(IAUDIO_X5) || defined(IAUDIO_M5)) && !defined (SIMULATOR)
|
|
||||||
#include "lcd-remote-target.h"
|
|
||||||
#endif
|
|
||||||
#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) \
|
#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) \
|
||||||
&& !defined (SIMULATOR)
|
&& !defined (SIMULATOR)
|
||||||
#include "pcf50606.h"
|
#include "pcf50606.h"
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
#ifdef HAVE_REMOTE_LCD
|
#ifdef HAVE_REMOTE_LCD
|
||||||
#include "lcd-remote.h"
|
#include "lcd-remote.h"
|
||||||
|
#include "lcd-remote-target.h"
|
||||||
static bool remote_hold = false;
|
static bool remote_hold = false;
|
||||||
static bool headphones_status = true;
|
static bool headphones_status = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "lcd-remote.h"
|
#include "lcd-remote.h"
|
||||||
|
#include "lcd-remote-target.h"
|
||||||
#include "button.h"
|
#include "button.h"
|
||||||
#include "button-target.h"
|
#include "button-target.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,9 +28,6 @@
|
||||||
#endif
|
#endif
|
||||||
#include "button-target.h"
|
#include "button-target.h"
|
||||||
#include "usb_drv.h"
|
#include "usb_drv.h"
|
||||||
#ifdef HAVE_REMOTE_LCD
|
|
||||||
#include "lcd-remote-target.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
|
#if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
|
||||||
extern void TIMER1(void);
|
extern void TIMER1(void);
|
||||||
|
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
/***************************************************************************
|
|
||||||
* __________ __ ___.
|
|
||||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
||||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
||||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
||||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
||||||
* \/ \/ \/ \/ \/
|
|
||||||
* $Id: lcd-remote-target.h 11967 2007-01-09 23:29:07Z linus $
|
|
||||||
*
|
|
||||||
* Copyright (C) 2007 by Jens Arnold
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License
|
|
||||||
* as published by the Free Software Foundation; either version 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
||||||
* KIND, either express or implied.
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
|
||||||
#ifndef LCD_REMOTE_TARGET_H
|
|
||||||
#define LCD_REMOTE_TARGET_H
|
|
||||||
|
|
||||||
#ifdef HAVE_REMOTE_LCD_TICKING
|
|
||||||
void lcd_remote_emireduce(bool state);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue