mirror of
https://github.com/ClaytonWWilson/miryoku_zmk.git
synced 2025-12-13 09:48:47 +00:00
19 lines
381 B
C
19 lines
381 B
C
// Copyright 2022 Manna Harbour
|
|
// https://github.com/manna-harbour/miryoku
|
|
|
|
#pragma once
|
|
|
|
#if defined (MIRYOKU_KLUDGE_DOUBLETAPBOOT)
|
|
#if defined (MIRYOKU_KLUDGE_SUSPEND)
|
|
#define U_BOOT &u_suspend
|
|
#else
|
|
#define U_BOOT &u_bootloader
|
|
#endif
|
|
#else
|
|
#if defined (MIRYOKU_KLUDGE_SUSPEND)
|
|
#define U_BOOT &suspend
|
|
#else
|
|
#define U_BOOT &bootloader
|
|
#endif
|
|
#endif
|