From 7d0d32dbc65a8332a49aeed3a97e24cb109958b2 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 23 Apr 2021 11:31:58 -0400 Subject: Nuke the never-functional iriver ifp-7xx port It never worked, and hasn't compiled in something like a decade, Given the HW capabilities (limited onboard flash, no expandability) there's really no point in trying to fix/complete it. Change-Id: I7d175089840396f8891645bd10010d730dd5bfdc --- uisimulator/bitmaps/UI-iriverifp7xx.bmp | Bin 233562 -> 0 bytes uisimulator/buttonmap/SOURCES | 2 - uisimulator/buttonmap/iriver-ifp7xx.c | 71 -------------------------------- 3 files changed, 73 deletions(-) delete mode 100644 uisimulator/bitmaps/UI-iriverifp7xx.bmp delete mode 100644 uisimulator/buttonmap/iriver-ifp7xx.c (limited to 'uisimulator') diff --git a/uisimulator/bitmaps/UI-iriverifp7xx.bmp b/uisimulator/bitmaps/UI-iriverifp7xx.bmp deleted file mode 100644 index 95424ac2a6..0000000000 Binary files a/uisimulator/bitmaps/UI-iriverifp7xx.bmp and /dev/null differ diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index b372407b4a..03d4d7caff 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -15,8 +15,6 @@ ipod.c iriver-h10.c #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD) iriver-h100_h300.c -#elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD -iriver-ifp7xx.c #elif CONFIG_KEYPAD == SANSA_C200_PAD sansa-c200.c #elif CONFIG_KEYPAD == SANSA_CLIP_PAD diff --git a/uisimulator/buttonmap/iriver-ifp7xx.c b/uisimulator/buttonmap/iriver-ifp7xx.c deleted file mode 100644 index 97f29c7376..0000000000 --- a/uisimulator/buttonmap/iriver-ifp7xx.c +++ /dev/null @@ -1,71 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2006 Dan Everton - * - * 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. - * - ****************************************************************************/ - - -#include -#include "button.h" -#include "buttonmap.h" - -int key_to_button(int keyboard_button) -{ - int new_btn = BUTTON_NONE; - switch (keyboard_button) - { - case SDLK_KP4: - case SDLK_LEFT: - new_btn = BUTTON_LEFT; - break; - case SDLK_KP6: - case SDLK_RIGHT: - new_btn = BUTTON_RIGHT; - break; - case SDLK_KP8: - case SDLK_UP: - new_btn = BUTTON_UP; - break; - case SDLK_KP2: - case SDLK_DOWN: - new_btn = BUTTON_DOWN; - break; - case SDLK_KP_PLUS: - case SDLK_F8: - new_btn = BUTTON_PLAY; - break; - case SDLK_KP_ENTER: - case SDLK_RETURN: - case SDLK_a: - new_btn = BUTTON_EQ; - break; - case SDLK_KP5: - case SDLK_SPACE: - new_btn = BUTTON_SELECT; - break; - case SDLK_KP_PERIOD: - case SDLK_INSERT: - new_btn = BUTTON_MODE; - break; - } - return new_btn; -} - -struct button_map bm[] = { - { 0, 0, 0, 0, "None" } -}; -- cgit v1.2.3