aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/coseyfannitutti/discipline/discipline.c
diff options
context:
space:
mode:
authorcoseyfannitutti <43188488+coseyfannitutti@users.noreply.github.com>2019-08-04 00:37:26 -0400
committerDrashna Jaelre <drashna@live.com>2019-08-03 21:37:26 -0700
commit430c37024e8de42bb735f26386f2b13f042e3569 (patch)
tree1aac7b4bec8b132aa334addedd0fc78fb921e5d2 /keyboards/coseyfannitutti/discipline/discipline.c
parentf644db042c488a19c2256c9f3870b5bd331cc98c (diff)
downloadfirmware-430c37024e8de42bb735f26386f2b13f042e3569.tar.gz
firmware-430c37024e8de42bb735f26386f2b13f042e3569.tar.bz2
firmware-430c37024e8de42bb735f26386f2b13f042e3569.zip
[Keyboard] add keyboard-discipline (#6464)
* add keyboard-discipline * move discipline to /coseyfannitutti * Update readme.md * Update keyboards/coseyfannitutti/discipline/discipline.h Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/discipline.h Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/info.json Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/coseyfannitutti/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/info.json Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/67_ansi/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/67_ansi/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/coseyfannitutti/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/readme.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/coseyfannitutti/discipline/rules.mk Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update readme.md * Update keyboards/coseyfannitutti/discipline/discipline.c Co-Authored-By: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/coseyfannitutti/discipline/discipline.c')
-rw-r--r--keyboards/coseyfannitutti/discipline/discipline.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/coseyfannitutti/discipline/discipline.c b/keyboards/coseyfannitutti/discipline/discipline.c
new file mode 100644
index 000000000..6a788ce0e
--- /dev/null
+++ b/keyboards/coseyfannitutti/discipline/discipline.c
@@ -0,0 +1,24 @@
+/* Copyright 2019 coseyfannitutti
+ *
+ * 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 "discipline.h"
+
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ matrix_init_user();
+}