diff --git a/meson.build b/meson.build index 18b012d6..f6213a05 100644 --- a/meson.build +++ b/meson.build @@ -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'] diff --git a/platform/drivers/keyboard/keyboard_GD77.c b/platform/drivers/keyboard/keyboard_GD77.c new file mode 100644 index 00000000..c31c60b3 --- /dev/null +++ b/platform/drivers/keyboard/keyboard_GD77.c @@ -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 * + ***************************************************************************/ + + +#include "keyboard.h" + +void kbd_init() +{ + /* TODO */ +} + +keyboard_t kbd_getKeys() +{ + /* TODO */ + return 0; +} +