Skip to content

Commit 48e0acc

Browse files
committed
Merge branch 'main' into mcmchris/nano-matter/launch-assets-revamp
2 parents da89ee1 + ad6f86a commit 48e0acc

File tree

9 files changed

+145
-144
lines changed

9 files changed

+145
-144
lines changed
Loading
Loading

content/hardware/04.pro/boards/portenta-h7/datasheet/datasheet.md

+1
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,7 @@ Hereby, Arduino S.r.l. declares that this product is in compliance with essentia
918918

919919
| Date | **Revision** | **Changes** |
920920
|------------|--------------|-------------------------------------|
921+
| 14/11/2024 | 7 | Pinout information updated |
921922
| 06/02/2024 | 6 | MTBF information |
922923
| 05/12/2023 | 5 | Accessories section updated |
923924
| 17/10/2023 | 4 | I2C ports information section added |
Binary file not shown.
Loading

content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/content.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ The following sketch blinks the red LED at an interval of 200ms controlled by th
6464
```cpp
6565
// the setup function runs once when you press reset or power the board
6666
void setup() {
67-
  // initialize digital pin LEDR as an output.
67+
// initialize digital pin LEDR as an output.
6868
pinMode(LEDR, OUTPUT);
6969
}
7070

7171
// the loop function runs over and over again forever
7272
void loop() {
7373
digitalWrite(LEDR, LOW); // turn the red LED on (LOW is the voltage level)
7474
delay(200); // wait for 200 milliseconds
75-
digitalWrite(LEDR, HIGH); // turn the LED off by making the voltage HIGH
75+
digitalWrite(LEDR, HIGH); // turn the LED off by making the voltage HIGH
7676
delay(200); // wait for 200 milliseconds
7777
}
7878
```
@@ -88,15 +88,15 @@ Let's write another sketch that makes the RGB LED on the board blink green. Open
8888
```cpp
8989
// the setup function runs once when you press reset or power the board
9090
void setup() {
91-
  // initialize digital pin LEDG as an output.
91+
// initialize digital pin LEDG as an output.
9292
pinMode(LEDG, OUTPUT);
9393
}
9494

9595
// the loop function runs over and over again forever
9696
void loop() {
9797
digitalWrite(LEDG, LOW); // turn the LED on (LOW is the voltage level)
9898
delay(500); // wait for half a second
99-
digitalWrite(LEDG, HIGH); // turn the LED off by making the voltage HIGH
99+
digitalWrite(LEDG, HIGH); // turn the LED off by making the voltage HIGH
100100
delay(500); // wait for half a second
101101
}
102102
```
@@ -113,7 +113,7 @@ Before you can upload the code for the M4 core to the Flash memory you need to a
113113
```cpp
114114
// the setup function runs once when you press reset or power the board
115115
void setup() {
116-
  // initialize digital pin LED_BUILTIN as an output.
116+
// initialize digital pin LED_BUILTIN as an output.
117117
bootM4();
118118
pinMode(LEDR, OUTPUT);
119119
}

0 commit comments

Comments
 (0)