@@ -204,9 +204,9 @@ To correctly configure PWM and ADC, two independent items must be addressed:
204204
205205This is similar to configuring GPIO:
206206
207- 1) **Derive from nexus connector maps**
207+ 1) **Derive from connector maps**
208208
209- Provide connector mappings via the board’s nexus definitions (e.g., `pwm-map` and `io-channel-map`)
209+ Provide connector mappings via the board’s connector definitions (e.g., `pwm-map` and `io-channel-map`)
210210
211211 ```dts
212212 / {
@@ -232,7 +232,7 @@ This is similar to configuring GPIO:
232232
2332332) **Explicit lists under `/zephyr,user`**
234234
235- Set GPIO Pin lists in `/zephyr,user/pwm-pin-gpios` and `/zephyr,user/adc-pin-gpios`,
235+ Set GPIO pin lists in `/zephyr,user/pwm-pin-gpios` and `/zephyr,user/adc-pin-gpios`.
236236
237237 ```dts
238238 / {
@@ -254,7 +254,7 @@ This is similar to configuring GPIO:
254254ArduinoCore-Zephyr needs a list of available PWM/ADC channels.
255255You can provide it in either of the following ways (**lowest precedence rule first**):
256256
257- 1) **Derive from nexus connector maps**
257+ 1) **Derive from connector maps**
258258
259259 If the board defines `arduino_pwm` with `pwm-map` and/or `arduino_adc` with `io-channel-map`,
260260 ArduinoCore-Zephyr can derive the channel lists from those maps.
@@ -263,7 +263,7 @@ You can provide it in either of the following ways (**lowest precedence rule fir
263263
2642642) **Explicit lists under `/zephyr,user`**
265265
266- Sets the PWM/ADC channels corresponding to the pins specified by `pwm-pin-gpios` and `adc-pin-gpios`.
266+ Set the PWM/ADC channels corresponding to the pins specified by `pwm-pin-gpios` and `adc-pin-gpios`.
267267 - PWM channels: `/zephyr,user/pwms`
268268 - ADC channels: `/zephyr,user/io-channels`
269269
0 commit comments