ENP (Embedded Network Protocol) is a communication protocol designed for data exchange between a wireless remote controller and its controller unit.
.
├── docs/ Protocol specification and design documents
├── include/enp/ Public header files (the ENP API surface)
├── src/ Implementation source files
├── tests/ Unit tests
└── CMakeLists.txt
cmake -S . -B build
cmake --build buildctest --test-dir build --output-on-failureSee docs/ for the full protocol specification, including frame format,
message types, and state machine descriptions.
TBD