Skip to content

Commit 3bcfdea

Browse files
committed
#4 - small README.MD update
1 parent c4db06f commit 3bcfdea

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ Please see the [![License](https://img.shields.io/badge/License-Apache%202.0-blu
3535
Every type/variable/constant/etc. related to *ESPressio* Threads are located within the `Threads` submaspace of the `ESPressio` parent namespace.
3636

3737
The namespace provides the following (*click on any declaration to navigate to more info*):
38-
- [`ESPressio::Threads::IThread`](ithread)
39-
- [`ESPressio::Threads::Thread`](thread)
40-
- [`ESPressio::Threads::Manager`](threadmanager)
41-
- [`ESPressio::Threads::GarbageCollector`](garbagecollector)
42-
- [`ESPressio::Threads::IThreadSafe`](ithreadsafe)
43-
- [`ESPressio::Threads::Mutex`](mutex)
44-
- [`ESPressio::Threads::ReadWriteMutex`](readwritemutex)
38+
- [`ESPressio::Threads::IThread`](#ithread)
39+
- [`ESPressio::Threads::Thread`](#thread)
40+
- [`ESPressio::Threads::Manager`](#threadmanager)
41+
- [`ESPressio::Threads::GarbageCollector`](#garbagecollector)
42+
- [`ESPressio::Threads::IThreadSafe`](#ithreadsafe)
43+
- [`ESPressio::Threads::Mutex`](#mutex)
44+
- [`ESPressio::Threads::ReadWriteMutex`](#readwritemutex)
4545

4646
## Platformio.ini
4747
You can quickly and easily add this library to your project in PlatformIO by simply including the following in your `platformio.ini` file:
@@ -59,7 +59,7 @@ This section of the README will be updated concurrently with each release.
5959
Threads enable us to perform concurrent and/or parallel processing on our microcontroller devices.
6060
In the case of multi-core microcontrollers, such as the ESP32, we can achieve true concurrent execution by using the components provided here in the *ESPressio* Thread Library.
6161

62-
By default, when an instance of a [`Thread`](thread) descendant is created, presuming that you do not modify by calling `SetCoreID()` prior to initializing the instance, the Thread [`Manager`](threadmanager) will automatically allocate the Thread to the next CPU Core.
62+
By default, when an instance of a [`Thread`](#thread) descendant is created, presuming that you do not modify by calling `SetCoreID()` prior to initializing the instance, the Thread [`Manager`](#threadmanager) will automatically allocate the Thread to the next CPU Core.
6363

6464
For example, by default, your first Thread Instance will occupy *CPU 0*, your second will occupy *CPU 1*, your third will co-occupy *CPU 0*.
6565

0 commit comments

Comments
 (0)