zmk_mf68/src/main.c

31 lines
409 B
C
Raw Normal View History

2020-04-22 06:20:34 +10:00
/*
2020-05-02 09:14:18 +10:00
* Copyright (c) 2020 Peter Johanson
2020-04-22 06:20:34 +10:00
*
2020-05-02 09:14:18 +10:00
* SPDX-License-Identifier: MIT
2020-04-22 06:20:34 +10:00
*/
#include <zephyr.h>
#include <device.h>
#include <devicetree.h>
#include "zmk.h"
2020-05-02 09:14:18 +10:00
#include "kscan.h"
2020-05-15 23:41:06 +10:00
#include "endpoints.h"
2020-04-22 06:20:34 +10:00
#define ZMK_KSCAN_DEV DT_LABEL(ZMK_MATRIX_NODE_ID)
2020-05-15 23:41:06 +10:00
2020-04-22 06:20:34 +10:00
void main(void)
{
printk("Welcome to ZMK!\n");
2020-04-22 06:20:34 +10:00
2020-05-15 23:41:06 +10:00
if (zmk_kscan_init(ZMK_KSCAN_DEV) != 0)
{
return;
}
2020-05-15 23:41:06 +10:00
if (zmk_endpoints_init())
{
return;
}
2020-04-22 06:20:34 +10:00
}