Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 621 Bytes

File metadata and controls

30 lines (25 loc) · 621 Bytes

Gradle

Gradle should be used to build the c++ native firmware. Most of the commands can be run from VSCode. press Shift + Ctrl + Backspace to open the command pallete, then type "WPI" to see a listing.

Firmware Build

./gradlew build

Simulate

./gradlew simulateNative

Testing

Run all unit tests.

./gradlew check

Deployment

Run the following command to deploy code to the roboRIO

./gradlew deploy

If it gives problems, cleaning the project could help. The --info option could give more information too.

./gradlew clean
./gradlew deploy --info