summaryrefslogtreecommitdiff
path: root/keyboards/infinity60/infinity60.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-01-26 01:28:44 -0500
committerGitHub <noreply@github.com>2017-01-26 01:28:44 -0500
commitaac7c0aa4db6b27f4c8d8f3849f8fd41f07e892a (patch)
tree4cae966728b7b6baf101a7ab2b95eeff16cce141 /keyboards/infinity60/infinity60.c
parent0212a30aa67771b3c5a59f0201356b6efd83cce5 (diff)
parent9111cc00f587188c68d3ed0379aae6675ad8d377 (diff)
Merge pull request #1029 from SjB/qmk_infinity60
fix: infinity60 keyboard was not using quantum features.
Diffstat (limited to 'keyboards/infinity60/infinity60.c')
-rw-r--r--keyboards/infinity60/infinity60.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/infinity60/infinity60.c b/keyboards/infinity60/infinity60.c
index e471250feb..fdeed5124d 100644
--- a/keyboards/infinity60/infinity60.c
+++ b/keyboards/infinity60/infinity60.c
@@ -15,3 +15,18 @@ 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 "infinity60.h"
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ matrix_init_user();
+}
+
+void matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+
+ matrix_scan_user();
+}
+