Skip to content

Commit a9a81b6

Browse files
committed
Reformat README for better readability.
1 parent 277e7bb commit a9a81b6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@
1111

1212
This library provides support functionality for building a complete [Cyphal](https://opencyphal.org/) application in combination with [107-Arduino-Cyphal](https://github.com/107-systems/107-Arduino-Cyphal).
1313

14+
<p align="center">
15+
<a href="https://github.com/107-systems/l3xz"><img src="https://raw.githubusercontent.com/107-systems/.github/main/logo/l3xz-logo-memento-mori-github.png" width="30%"></a>
16+
<a href="https://github.com/107-systems/viper"><img src="https://github.com/107-systems/.github/raw/main/logo/viper.jpg" width="30%"></a>
17+
</p>
18+
19+
This library works for
20+
* [arduino-pico](https://github.com/earlephilhower/arduino-pico): [`Raspberry Pi Pico`](https://www.raspberrypi.org/products/raspberry-pi-pico), `Adafruit Feather RP2040`, ... :heavy_check_mark:
21+
1422
**Features:**
15-
* API for obtaining a unique 64-bit ID.
23+
* API for obtaining a **unique 64-bit ID**.
1624
```C++
1725
auto /* std::array<uint8_t, 16> */ const UNIQUE_ID = cyphal::support::UniqueId::instance().value();
1826
```
19-
* API for permanent register storage and retrieval.
27+
* API for **persistent register storage and retrieval**.
2028
```C++
2129
/* Declaration of key/value storage. */
2230
cyphal::support::platform::storage::littlefs::KeyValueStorage kv_storage(filesystem);
@@ -35,11 +43,3 @@ if (auto const opt_err = cyphal::support::save(kv_storage, *node_registry); opt_
3543
Serial.println(static_cast<int>(opt_err.value()));
3644
}
3745
```
38-
39-
<p align="center">
40-
<a href="https://github.com/107-systems/l3xz"><img src="https://raw.githubusercontent.com/107-systems/.github/main/logo/l3xz-logo-memento-mori-github.png" width="30%"></a>
41-
<a href="https://github.com/107-systems/viper"><img src="https://github.com/107-systems/.github/raw/main/logo/viper.jpg" width="30%"></a>
42-
</p>
43-
44-
This library works for
45-
* [arduino-pico](https://github.com/earlephilhower/arduino-pico): [`Raspberry Pi Pico`](https://www.raspberrypi.org/products/raspberry-pi-pico), `Adafruit Feather RP2040`, ... :heavy_check_mark:

0 commit comments

Comments
 (0)