feat: Build asserts for requires studio layout bits.

* When building with ZMK Studio, assert that we have physical layouts,
  and those layouts have key information set.
This commit is contained in:
Peter Johanson 2024-09-30 10:21:28 -06:00 committed by Pete Johanson
parent 59c82ef27a
commit 7276fd525f
1 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,11 @@ ZMK_EVENT_IMPL(zmk_physical_layout_selection_changed);
#define USE_PHY_LAYOUTS \
(DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT) && !DT_HAS_CHOSEN(zmk_matrix_transform))
BUILD_ASSERT(
!IS_ENABLED(CONFIG_ZMK_STUDIO) || USE_PHY_LAYOUTS,
"ZMK Studio requires physical layouts with key positions, and no chosen zmk,matrix-transform. "
"See https://zmk.dev/docs/development/hardware-integration/studio-setup");
#if USE_PHY_LAYOUTS
#define ZKPA_INIT(i, n) \
@ -43,6 +48,9 @@ ZMK_EVENT_IMPL(zmk_physical_layout_selection_changed);
}
#define ZMK_LAYOUT_INST(n) \
BUILD_ASSERT(!IS_ENABLED(CONFIG_ZMK_STUDIO) || DT_INST_NODE_HAS_PROP(n, keys), \
"ZMK Studio requires physical layouts with key positions. See " \
"https://zmk.dev/docs/development/hardware-integration/studio-setup"); \
static const struct zmk_key_physical_attrs const _CONCAT( \
_zmk_physical_layout_keys_, n)[DT_INST_PROP_LEN_OR(n, keys, 0)] = { \
LISTIFY(DT_INST_PROP_LEN_OR(n, keys, 0), ZKPA_INIT, (, ), n)}; \