/* * Copyright (c) 2020 The ZMK Contributors * * SPDX-License-Identifier: MIT */ #include #include #include #include #include LOG_MODULE_REGISTER(zmk, CONFIG_ZMK_LOG_LEVEL); #if IS_ENABLED(CONFIG_ZMK_DISPLAY) #include #include #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; }