Add GD77 keyboard file

replace/f922c733239465ca8eeba81a91f450fb739c20e7
Fred 2020-12-04 10:23:13 +01:00
rodzic 5d9ac78548
commit 0d437b239d
2 zmienionych plików z 35 dodań i 0 usunięć

Wyświetl plik

@ -206,6 +206,7 @@ mduv380_def = def + stm32f405_def + {'PLATFORM_MDUV380': ''}
## Radioddity GD77
gd77_src = src + mk22fn512_src + ['platform/targets/GD77/platform.c',
'platform/drivers/display/UC1701_GD77.c',
'platform/drivers/keyboard/keyboard_GD77.c',
'openrtx/src/graphics/graphics_bw.c']
gd77_inc = inc + mk22fn512_inc + ['platform/targets/GD77']

Wyświetl plik

@ -0,0 +1,34 @@
/***************************************************************************
* Copyright (C) 2020 by Federico Amedeo Izzo IU2NUO, *
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
* *
* 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 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#include "keyboard.h"
void kbd_init()
{
/* TODO */
}
keyboard_t kbd_getKeys()
{
/* TODO */
return 0;
}