diff --git a/src/main.c b/src/main.c index 00a1cd0d..ecfbd56a 100644 --- a/src/main.c +++ b/src/main.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -25,6 +26,11 @@ void main(void) if (zmk_endpoints_init()) { + printk("ENDPOINT INIT FAILED\n"); return; } + +#ifdef CONFIG_SETTINGS + settings_load(); +#endif }