diff options
author | kurtis-lew <kurtis.a.lew@gmail.com> | 2020-10-09 08:19:40 -0700 |
---|---|---|
committer | kurtis-lew <kurtis.a.lew@gmail.com> | 2020-10-09 08:19:40 -0700 |
commit | 429c9dc464c38bb0604a3ebe55151b451580d8ca (patch) | |
tree | dff7380a0c44aa57beaeaec73040757877dda347 | |
parent | aca801d90ffcc12076244626dc0d4b239df25ab4 (diff) |
Revert "Addressed Issue #181"
This reverts commit dbda99a3788fb27d258a7c5b9c8f56638f190d65.
-rw-r--r-- | docs/docs/dev-guide-new-shield.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/dev-guide-new-shield.md b/docs/docs/dev-guide-new-shield.md index b8f1a19..ee48915 100644 --- a/docs/docs/dev-guide-new-shield.md +++ b/docs/docs/dev-guide-new-shield.md @@ -403,14 +403,14 @@ with different scopes. For example, a split board called `my_awesome_split_board The discrete .conf files for each half allows the user to define the central and peripheral sides of the split, like so: ``` -// Central Half (Usually the left side: my_awesome_split_board_left.conf) +// Central Half CONFIG_ZMK_SPLIT=y CONFIG_ZMK_SPLIT_BLE_ROLE_CENTRAL=y ``` ``` -// Peripheral Half (Usually the right side: my_awesome_split_board_right.conf) +// Peripheral Half CONFIG_ZMK_SPLIT=y CONFIG_ZMK_SPLIT_BLE_ROLE_Peripheral=y @@ -419,7 +419,7 @@ CONFIG_ZMK_SPLIT_BLE_ROLE_Peripheral=y Using the .conf file that affects both halves of a split board would be for circumstances like deep-sleep or _. ``` -// my_awesome_split_board.conf +// Global .conf CONFIG_ZMK_SLEEP=y ``` |