Skip to content

Commit

Permalink
improves wording
Browse files Browse the repository at this point in the history
reverse tab order
  • Loading branch information
RasmusKoit committed Aug 9, 2024
1 parent 7b3cc15 commit bc6f7d2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/docs/features/dongle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Disadvantages:

In the examples below, we will be modifying the [New Keyboard Shield](../development/new-shield.mdx) guide files and will be building on top of that.

We will add the dongle in a way that it can be easily enabled or disabled in the user configuration.
We will add the dongle in a way that it can be easily enabled, but is disabled by default.

### Keyboard Shield

Expand All @@ -49,8 +49,8 @@ config SHIELD_MY_KEYBOARD_DONGLE
<Tabs
defaultValue="unibody"
values={[
{label: 'Split Keyboard', value: 'split'},
{label: 'Unibody Keyboard', value: 'unibody'},
{label: 'Split Keyboard', value: 'split'},
]}
>
<TabItem value="unibody">
Expand Down Expand Up @@ -139,9 +139,10 @@ endif

### Dongle Overlay

We will replace the `kscan` node with a `kscan-mock` node in the dongle overlay.
We will replace the `kscan` with `kscan-mock` in the dongle overlay.

```dts title="my_keyboard_dongle.overlay"
// import the default shield configuration
#include "my_keyboard.dtsi"
&kscan {
Expand All @@ -155,7 +156,7 @@ We will replace the `kscan` node with a `kscan-mock` node in the dongle overlay.
```


## Using the Dongle
## Enabling the Dongle

Now that we have defined the default shield configuration, we can easily enable the dongle in the user configuration.

Expand Down

0 comments on commit bc6f7d2

Please sign in to comment.