Skip to content

Commit

Permalink
Fix: added license to all files
Browse files Browse the repository at this point in the history
Co-authored-by: Joel Challis <git@zvecr.com>
  • Loading branch information
Kyrremann and zvecr authored Oct 10, 2021
1 parent 64e4c9a commit 99d2cac
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 12 deletions.
25 changes: 13 additions & 12 deletions keyboards/minimon/index_tab/index_tab.c
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/*
Copyright 2020 Kyrre Havik Eriksen
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 "index_tab.h"

void keyboard_pre_init_kb(void) {
// Keyboard start-up code goes here
// Runs once when the firmware starts up
keyboard_pre_init_user();
};

void matrix_scan_kb(void) {
// Looping keyboard code goes here
// This runs every cycle (a lot)
matrix_scan_user();
};
13 changes: 13 additions & 0 deletions keyboards/minimon/index_tab/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/*
Copyright 2020 Kyrre Havik Eriksen
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 QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
Expand Down
13 changes: 13 additions & 0 deletions keyboards/minimon/index_tab/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/*
Copyright 2020 Kyrre Havik Eriksen
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 QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
Expand Down

0 comments on commit 99d2cac

Please sign in to comment.