diff options
author | Joel Spadin <joelspadin@gmail.com> | 2020-10-27 13:49:28 -0500 |
---|---|---|
committer | Joel Spadin <joelspadin@gmail.com> | 2020-10-28 18:15:05 -0500 |
commit | 2fe1fbb526d9190e478999f36adbcfcf4a8847b2 (patch) | |
tree | 1d6dbc3ed34a14f427e39d580e27c5064ca1bfb2 /app/dts | |
parent | 600bba25f049b1fa161b2372b2a47762164c7fcd (diff) |
feat(endpoints): rename behavior to outputs
"Outputs" is probably easier for most people to understand than "endpoints".
Diffstat (limited to 'app/dts')
-rw-r--r-- | app/dts/behaviors.dtsi | 2 | ||||
-rw-r--r-- | app/dts/behaviors/endpoints.dtsi | 9 | ||||
-rw-r--r-- | app/dts/behaviors/outputs.dtsi | 9 | ||||
-rw-r--r-- | app/dts/bindings/behaviors/zmk,behavior-outputs.yaml (renamed from app/dts/bindings/behaviors/zmk,behavior-endpoints.yaml) | 4 |
4 files changed, 12 insertions, 12 deletions
diff --git a/app/dts/behaviors.dtsi b/app/dts/behaviors.dtsi index 4a50761..a120b84 100644 --- a/app/dts/behaviors.dtsi +++ b/app/dts/behaviors.dtsi @@ -10,4 +10,4 @@ #include <behaviors/rgb_underglow.dtsi> #include <behaviors/bluetooth.dtsi> #include <behaviors/ext_power.dtsi> -#include <behaviors/endpoints.dtsi> +#include <behaviors/outputs.dtsi> diff --git a/app/dts/behaviors/endpoints.dtsi b/app/dts/behaviors/endpoints.dtsi deleted file mode 100644 index f6cb64c..0000000 --- a/app/dts/behaviors/endpoints.dtsi +++ /dev/null @@ -1,9 +0,0 @@ -/ { - behaviors { - end: behavior_endpoints { - compatible = "zmk,behavior-endpoints"; - label = "ENDPOINTS"; - #binding-cells = <1>; - }; - }; -}; diff --git a/app/dts/behaviors/outputs.dtsi b/app/dts/behaviors/outputs.dtsi new file mode 100644 index 0000000..a534cbf --- /dev/null +++ b/app/dts/behaviors/outputs.dtsi @@ -0,0 +1,9 @@ +/ { + behaviors { + out: behavior_outputs { + compatible = "zmk,behavior-outputs"; + label = "OUTPUTS"; + #binding-cells = <1>; + }; + }; +}; diff --git a/app/dts/bindings/behaviors/zmk,behavior-endpoints.yaml b/app/dts/bindings/behaviors/zmk,behavior-outputs.yaml index fdd76bb..8bcefd9 100644 --- a/app/dts/bindings/behaviors/zmk,behavior-endpoints.yaml +++ b/app/dts/bindings/behaviors/zmk,behavior-outputs.yaml @@ -3,8 +3,8 @@ # SPDX-License-Identifier: MIT # -description: Endpoints Behavior +description: Output Selection Behavior -compatible: "zmk,behavior-endpoints" +compatible: "zmk,behavior-outputs" include: one_param.yaml |