diff options
author | TerryMathews <terry@terrymathews.net> | 2020-03-12 15:52:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 19:52:59 +0000 |
commit | 18bc5254932a842276627d8f055b6fb1d3345230 (patch) | |
tree | 0b8d831958384bb146dd0af751806e44cdbd691a /keyboards/candybar/lefty/lefty.c | |
parent | 4edb5a5e8c72e3be7fda20069941ea215cb49916 (diff) |
[Keyboard] Candybar update (#8335)
* Candybar: split lefty and righty into subprojects.
* Update readme.md
* Update readme.md
* Candybar: Moved STM32 library files into project root folder.
* Update keyboards/candybar/righty/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/candybar/righty/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/candybar/righty/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/candybar/righty/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/candybar/righty/righty.c
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Candybar: remove Boards directory so project uses one from drivers
* Update keyboards/candybar/righty/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update readme.md
* Update readme.md
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/candybar/lefty/lefty.c')
-rw-r--r-- | keyboards/candybar/lefty/lefty.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/candybar/lefty/lefty.c b/keyboards/candybar/lefty/lefty.c new file mode 100644 index 0000000000..920811b833 --- /dev/null +++ b/keyboards/candybar/lefty/lefty.c @@ -0,0 +1,21 @@ +/* Copyright 2018 Jack Humbert + * + * 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 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 "lefty.h" + +void matrix_init_kb(void) { + matrix_init_user(); +} |