Getting Started
Clone the repository, set up your build environment, then build the library with CMake.
Clone the repository
Section titled “Clone the repository”git clone https://github.com/TrickfireRobotics/ak-series-lib.gitcd ak-series-libBuild the library
Section titled “Build the library”mkdir build && cd buildcmake -S .. -B . -DSETUP_TEST_IFNAME=ON -DBUILD_TESTING=ON \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ONcmake --build .| Option | Description |
|---|---|
BUILD_TESTING |
Build the GTest suite |
SETUP_TEST_IFNAME |
Configure a virtual CAN interface for tests |
CMAKE_EXPORT_COMPILE_COMMANDS |
Emit compile_commands.json for your LSP |
Next steps
Section titled “Next steps”- Set up the Dev Container for a reproducible CAN environment.
- Read the protocol overview to understand Servo and MIT modes.
- Explore the code reference for a deep dive into the library.
