mirror of https://github.com/zmkfirmware/zmk.git
46 lines
849 B
C
46 lines
849 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/device.h>
|
|
#include <zephyr/devicetree.h>
|
|
#include <zephyr/settings/settings.h>
|
|
|
|
#include <zephyr/logging/log.h>
|
|
LOG_MODULE_REGISTER(zmk, CONFIG_ZMK_LOG_LEVEL);
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_DISPLAY)
|
|
|
|
#include <zmk/display.h>
|
|
#include <lvgl.h>
|
|
|
|
#endif
|
|
|
|
int main(void) {
|
|
LOG_INF("Welcome to ZMK!\n");
|
|
|
|
#if IS_ENABLED(CONFIG_SETTINGS)
|
|
settings_subsys_init();
|
|
settings_load();
|
|
#endif
|
|
|
|
#ifdef CONFIG_ZMK_DISPLAY
|
|
zmk_display_init();
|
|
|
|
#if IS_ENABLED(CONFIG_ARCH_POSIX)
|
|
// Workaround for an SDL display issue:
|
|
// https://github.com/zephyrproject-rtos/zephyr/issues/71410
|
|
while (1) {
|
|
lv_task_handler();
|
|
k_sleep(K_MSEC(10));
|
|
}
|
|
#endif
|
|
|
|
#endif /* CONFIG_ZMK_DISPLAY */
|
|
|
|
return 0;
|
|
}
|