mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-11 16:37:45 -04:00
Rockbox for the HiBy R3 Pro II/R1
Original author Melissa Autumn (https://codeberg.org/oopsallnaps/rockbox-hibyos) with contributions from Marc Aarts. Adaptation to Rockbox standards by Marc Aarts Change-Id: I09e5af7ba0a75c648e4b9fd424badc2d3665c943
This commit is contained in:
parent
eee6c31b4a
commit
1183b1ab1b
118 changed files with 2858 additions and 107 deletions
BIN
uisimulator/bitmaps/UI-hibyr1.bmp
Normal file
BIN
uisimulator/bitmaps/UI-hibyr1.bmp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 MiB |
BIN
uisimulator/bitmaps/UI-hibyr3proii.bmp
Normal file
BIN
uisimulator/bitmaps/UI-hibyr3proii.bmp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
|
|
@ -91,5 +91,7 @@ fiio-m3k.c
|
|||
shanling-q1.c
|
||||
#elif CONFIG_KEYPAD == RG_NANO_PAD
|
||||
rg-nano.c
|
||||
#elif CONFIG_KEYPAD == HIBY_R3PROII_PAD
|
||||
hiby-r3proii.c
|
||||
#endif
|
||||
#endif /* SIMULATOR */
|
||||
|
|
|
|||
34
uisimulator/buttonmap/hiby-r3proii.c
Normal file
34
uisimulator/buttonmap/hiby-r3proii.c
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2021 by Solomon Peachy
|
||||
*
|
||||
* 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)
|
||||
{
|
||||
return BUTTON_NONE;
|
||||
}
|
||||
|
||||
struct button_map bm[] = {
|
||||
{ 0, 0, 0, 0, "None" }
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue