#ifndef _WATCHOS_CONFIG_h #define _WATCHOS_CONFIG_h // If defined, set debug mode. // Set: Enables output from watchos::debug; When the kernel panics goes into a tight loop // Unset: Disables output from watchos::debug; When the kernel panics automatically restart #define WATCHOS_DEBUG // If defined, use dark mode. // Set: White foreground, Black background // Unset: Black foreground, White background #define WATCHOS_DARK_MODE // If defined, use the second core for drawing // Set: Spawn a task on the other core to do drawing // Unset: Do drawing, blocking on the app core #define WATCHOS_UI_MULTICORE #endif