Skip to content

Commit ae4a32e

Browse files
committed
Update cheat-sheet.md
1 parent 94b787e commit ae4a32e

File tree

1 file changed

+2
-2
lines changed
  • content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet

1 file changed

+2
-2
lines changed

content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/cheat-sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ Further reading:
454454

455455
The ESP32-S3 is based on the dual-core XTensa LX7, which can run code separately on two cores. This is enabled through FreeRTOS, by setting up tasks that run on each core (similarly to how `void loop()` is implemented). The cores available are `0` and `1`.
456456

457-
The example below is a modified version of the [BasicMultiThreading](https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP32/examples/FreeRTOS/BasicMultiThreading) example found in the Arduino ESP32 core, and demonstrates how to use two common operations simulatenously:
457+
The example below is a modified version of the [BasicMultiThreading](https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP32/examples/FreeRTOS/BasicMultiThreading) example found in the Arduino ESP32 core, and demonstrates how to use two common operations simultaneously:
458458
- Blink an LED using one task on a specific core (0),
459459
- Read an analog pin using a second task on a specific core (1).
460460

@@ -566,7 +566,7 @@ When running this example, open the Serial Monitor tool and you will see what ha
566566
![Dual core example.](assets/nano-esp32-dualcore.png)
567567

568568
- The task is created in the `xTaskCreatePinnedToCore()`,
569-
- inside `xTaskCreatePinnedToCore()` we specifiy a number of parameters, most importantly what **core** and what **function** to run,
569+
- inside `xTaskCreatePinnedToCore()` we specify a number of parameters, most importantly what **core** and what **function** to run,
570570
- code inside task functions are placed inside the `for (;;){}` statement, that will loop infinitely.
571571

572572
***More information about dual-core on the ESP32 along with a detailed explanation of the example is available at [Basic Multi Threading Example](https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP32/examples/FreeRTOS/BasicMultiThreading).***

0 commit comments

Comments
 (0)