Our code for FRC 2023: CHARGED UP, using Gradle
- Follow the guide for installing wpilibsuite https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.html. Be aware of the version you install, as it must be the same as the version for this project, (E.g,
2022.4.1
)
- Note, this is not required if you already have a compiler (VisualCpp/Clang/Gcc) & Java already installed as gradle will download the necessary dependencies for you
-
Download Java (JDK 11 for best support https://www.oracle.com/java/technologies/javase-jdk11-downloads.html)
-
"Desktop development with C++" from VS required for local debugging and simulation support https://visualstudio.microsoft.com/downloads/
-
After this is complete you can fork or clone the project recursivly to grab the submodules needed for this project.
git clone --recurse-submodules https://github.com/CurtinFRC/2023-ChargedUp.git
-
Linux requires the build-essentials (GCC, CMake, etc...)
-
After this is complete you can fork or clone the project recursivly to grab the submodules needed for this project. E.g
git clone --recurse-submodules https://github.com/CurtinFRC/2023-ChargedUp.git
-
Download Xcode from the app store https://apps.apple.com/au/app/xcode/id497799835?mt=12
-
After this is complete you can fork or clone the project recursivly to grab the submodules needed for this project.
git clone --recurse-submodules https://github.com/CurtinFRC/2023-ChargedUp.git
-
Next we will need to download the roborio toolchain to cross compile the program for linuxathena. (All code in this project by a minimum must compile linuxathena)
- Navigate to the root directory of this project and run
./gradlew installRoboRioToolchain
- Navigate to the root directory of this project and run
-
Build the project
- Run
./gradlew build
to build and compile all gradle projects
- Run
-
Inside
build.gradle
consists of options on how that project should compile. If desktop support is disabled then the project will only compile and publish shared and static linuxathena builds. If enabled, the project will build for both linuxathena and the current platform. I.ewindowsx86-64
&linuxathena
.
- Build robot code using
./gradlew build
- Deploy robot code using
./gradlew deploy
- Clean all code using
./gradlew clean
- Build all code using
./gradlew build
- Deploy all code using
./gradlew deploy
This project uses our teams library wombat. To run this project you will need to use this library. It can be found here. Just download and extract the code and insert into your repository. For more information see our website here