* For upcoming ZMK studio work, make a set of rich metadata available to provide a friendly name for a behavior, and allow super flexible descriptions of the parameters the behaviors take. * Add ability to validate a zmk_behavior_binding against the behavior metadata available.
26 lines
673 B
Text
26 lines
673 B
Text
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <dt-bindings/zmk/reset.h>
|
|
|
|
/ {
|
|
behaviors {
|
|
// Behavior can be invoked on peripherals, so name must be <= 8 characters.
|
|
sys_reset: sysreset {
|
|
compatible = "zmk,behavior-reset";
|
|
#binding-cells = <0>;
|
|
display-name = "Reset";
|
|
};
|
|
|
|
// Behavior can be invoked on peripherals, so name must be <= 8 characters.
|
|
bootloader: bootload {
|
|
compatible = "zmk,behavior-reset";
|
|
type = <RST_UF2>;
|
|
#binding-cells = <0>;
|
|
display-name = "Bootloader";
|
|
};
|
|
};
|
|
};
|