Skip to content

Commit 50b759f

Browse files
committed
microcontrollers: regenerate all machine package docs for 0.16.0
Signed-off-by: deadprogram <[email protected]>
1 parent b4c33bd commit 50b759f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+14610
-108
lines changed

content/microcontrollers/machine/arduino-nano33.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,8 @@ func (p Pin) SetInterrupt(change PinChange, callback func(Pin)) error
12831283
```
12841284

12851285
SetInterrupt sets an interrupt to be executed when a particular pin changes
1286-
state.
1286+
state. The pin should already be configured as an input, including a pull up
1287+
or down if no external pull is provided.
12871288

12881289
This call will replace a previously set callback on this pin. You can pass a
12891290
nil func to unset the pin change interrupt. If you do so, the change

content/microcontrollers/machine/arduino-zero.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,8 @@ func (p Pin) SetInterrupt(change PinChange, callback func(Pin)) error
12231223
```
12241224

12251225
SetInterrupt sets an interrupt to be executed when a particular pin changes
1226-
state.
1226+
state. The pin should already be configured as an input, including a pull up
1227+
or down if no external pull is provided.
12271228

12281229
This call will replace a previously set callback on this pin. You can pass a
12291230
nil func to unset the pin change interrupt. If you do so, the change

0 commit comments

Comments
 (0)