|
3 | 3 | C++ LIN bus library — RELAY-conformant, ISO 26262 ASIL-B. |
4 | 4 |
|
5 | 5 | [](https://github.com/SoundMatt/cpp-LIN/actions/workflows/ci.yml) |
6 | | -[](https://github.com/SoundMatt/RELAY) |
| 6 | +[](https://github.com/SoundMatt/RELAY) |
7 | 7 | [](SAFETY_PLAN.md) |
8 | 8 | [](LICENSE) |
9 | 9 |
|
10 | 10 | ## Overview |
11 | 11 |
|
12 | 12 | cpp-LIN is a production-quality C++ implementation of the LIN (Local Interconnect |
13 | | -Network) protocol, following the RELAY specification v1.10. It is the C++ sibling |
| 13 | +Network) protocol, following the RELAY specification v1.11. It is the C++ sibling |
14 | 14 | of [go-LIN](https://github.com/SoundMatt/go-LIN) and is patterned after |
15 | 15 | [cpp-CAN](https://github.com/SoundMatt/cpp-CAN). |
16 | 16 |
|
@@ -49,7 +49,7 @@ ctest --test-dir build --output-on-failure |
49 | 49 | ``` |
50 | 50 | include/lin/ |
51 | 51 | channel.hpp — Chan<T>: bounded, thread-safe FIFO |
52 | | - relay.hpp — RELAY v1.10 types (Protocol, Message, INode, …) |
| 52 | + relay.hpp — RELAY v1.11 types (Protocol, Message, INode, …) |
53 | 53 | lin.hpp — IBus, IMasterBus, Frame, Filter, free functions |
54 | 54 | virtual/bus.hpp — In-process virtual LIN bus |
55 | 55 | safety/e2e.hpp — E2E Protector / Receiver |
@@ -95,7 +95,7 @@ P1 = NOT(ID1 ^ ID3 ^ ID4 ^ ID5) (bit 7) |
95 | 95 |
|
96 | 96 | ## RELAY Integration |
97 | 97 |
|
98 | | -cpp-LIN exposes a RELAY v1.10 `INode` adapter: |
| 98 | +cpp-LIN exposes a RELAY v1.11 `INode` adapter: |
99 | 99 |
|
100 | 100 | ```cpp |
101 | 101 | #include <lin/lin.hpp> |
|
0 commit comments