Team-OKC-Robotics / FRC-2022-CPP

a c++ port of our FRC-2022 code as training in C++
Other
0 stars 2 forks source link

Team OKC 2022 C++ Code

Installation

  1. Install the WPILib from here
    • Currently using the 2023 Beta 3 Release
  2. Install Visual Studio Desktop development with C++ as shown here
    • Note: you only need the one checkbox that WPILib shows
    • If you don't want to install this, you can still develop by turning off desktop support. However, this disables unit tests and simulation.
  3. Set up development tools:
    • clang-format VS.Code extension: Install
  4. Add the following to your settings.json:
    "[cpp]": {
    "editor.defaultFormatter": "xaver.clang-format"
    },
    "C_Cpp.default.cppStandard": "c++17",
    "editor.formatOnSave": true,
    "clang-format.language.cpp.style": "file",

Known Issues