From a820a98361b43a01740f155fd4ae3881d844e124 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Mon, 13 Apr 2020 16:00:32 -0400 Subject: obsolete: Nuke the very-incomplete Archos AV300 target It's even missing a config header file. Just shoot it in the head. Change-Id: I4c5cdb4fb63361a4e4fc893e93d73d3890fe17df --- uisimulator/buttonmap/SOURCES | 4 +- uisimulator/buttonmap/archos-av300.c | 81 ------------------------------------ 2 files changed, 1 insertion(+), 84 deletions(-) delete mode 100644 uisimulator/buttonmap/archos-av300.c (limited to 'uisimulator') diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES index 4c6ca3adef..4e331f4b85 100644 --- a/uisimulator/buttonmap/SOURCES +++ b/uisimulator/buttonmap/SOURCES @@ -23,12 +23,10 @@ archos-ondio.c archos-player.c #elif CONFIG_KEYPAD == RECORDER_PAD archos-recorder.c -#elif CONFIG_KEYPAD == ARCHOS_AV300_PAD -archos-av300.c #elif CONFIG_KEYPAD == SANSA_C200_PAD sansa-c200.c #elif CONFIG_KEYPAD == SANSA_CLIP_PAD -sansa-clip.c +sansa-clip.c #elif CONFIG_KEYPAD == SANSA_E200_PAD sansa-e200.c #elif CONFIG_KEYPAD == SANSA_FUZE_PAD diff --git a/uisimulator/buttonmap/archos-av300.c b/uisimulator/buttonmap/archos-av300.c deleted file mode 100644 index 5f09f7fc3e..0000000000 --- a/uisimulator/buttonmap/archos-av300.c +++ /dev/null @@ -1,81 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2007 Dave Chapman - * - * 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_ON; - break; - case SDLK_KP_ENTER: - case SDLK_RETURN: - case SDLK_a: - new_btn = BUTTON_OFF; - break; - case SDLK_KP_DIVIDE: - case SDLK_F1: - new_btn = BUTTON_F1; - break; - case SDLK_KP_MULTIPLY: - case SDLK_F2: - new_btn = BUTTON_F2; - break; - case SDLK_KP_MINUS: - case SDLK_F3: - new_btn = BUTTON_F3; - break; - case SDLK_KP5: - case SDLK_SPACE: - new_btn = BUTTON_SELECT; - break; - } - return new_btn; -} - - -struct button_map bm[] = { - { 0, 0, 0, 0, "None" } -}; - -- cgit v1.2.3