diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-04-13 16:00:32 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-04-13 22:06:22 +0200 |
commit | a820a98361b43a01740f155fd4ae3881d844e124 (patch) | |
tree | feae173d7515c354c2db4a4dadc30560c17a9f83 /uisimulator | |
parent | cfc02cadcc65d74b17f15e5621c42a53467f6d04 (diff) | |
download | rockbox-a820a98361b43a01740f155fd4ae3881d844e124.tar.gz rockbox-a820a98361b43a01740f155fd4ae3881d844e124.tar.bz2 rockbox-a820a98361b43a01740f155fd4ae3881d844e124.zip |
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
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/buttonmap/SOURCES | 4 | ||||
-rw-r--r-- | uisimulator/buttonmap/archos-av300.c | 81 |
2 files changed, 1 insertions, 84 deletions
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 <SDL.h> -#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" } -}; - |