├── REV.md ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md └── README.md /REV.md: -------------------------------------------------------------------------------- 1 | # REV Beta Software 2 | 3 | ## Updating to REV Hardware Client v1.7.0-frcBeta2025.1 4 | 5 | 1. Open the current version of the Hardware Client or install it [here](https://github.com/REVrobotics/REV-Software-Binaries/releases/download/rhc-1.6.6/REV-Hardware-Client-Setup-1.6.6.exe). 6 | 2. Navigate to the "Downloads" tab. 7 | 3. Under the section "Subscribe to Software Channels", paste the following code into the text box: `frcBeta2025`. 8 | 4. Click "Add". 9 | 5. A popup will appear prompting you to update. Click "Download Update". 10 | 11 | ## Updating firmware 12 | 13 | The following latest firmwares will be available to download and install after updating the Hardware Client: 14 | 15 | * SPARK MAX v25.0.0-prerelease.9 16 | * SPARK Flex v25.0.0-prerelease.9 17 | 18 | Changelogs are available in the Hardware Client. 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. ... 16 | 2. ... 17 | 18 | - Link to code (if applicable): 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information if applicable):** 27 | - OS: [e.g. Windows 11] 28 | - OS Language: [e.g. English, Turkish] 29 | - Project Information: [In Visual Studio Code, press the WPILib button and choose WPILib: Open Project Information. Press the copy button and paste the data here. If not using VS Code, please include WPILib version, Gradle version, Java version, C++ version (if applicable), and any third party libraries and versions] 30 | 31 | **roboRIO (please complete the following information if applicable):** 32 | - roboRIO 1 or 2?: 33 | - Image version: [Use the roboRIO imaging tool or the WPILib team number setter to determine the image version] 34 | 35 | **Additional context** 36 | Add any other context about the problem here. 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2025Beta 2 | Repository for Beta Testing of 2025 Software 3 | 4 | >**Software posted here is Beta software for the 2025 season and is not compatible with 2024 software or roboRIO images.** 5 | 6 | Note that all updated documentation for 2025 changes, new features, etc. can be found on the 'latest' version of the WPILib Docs site: https://docs.wpilib.org/en/latest/. 7 | 8 | [Beta Test Documentation](https://docs.wpilib.org/en/latest/docs/beta/beta-getting-started/index.html) can be found at the top of the NavBar on the left side of that page as well as [Beta Test tasks to complete](https://docs.wpilib.org/en/latest/docs/beta/tasks/index.html). 9 | 10 | ## Beta Software Directory 11 | 12 | - [WPILib 2025.1.1-Beta-3](https://github.com/wpilibsuite/allwpilib/releases/tag/v2025.1.1-beta-3) 13 | - [NI Game Tools 25.0.0.13-Beta-2](https://github.com/wpilibsuite/2025Beta/releases/tag/NI_GAME_TOOLS_BETA_2) 14 | - [RobotPy 2025.0.0b3](https://pypi.org/project/robotpy/2025.0.0b3/) 15 | 16 | ### Vendor Libraries 17 | 18 | - [Studica 2025.1.1-beta-3](https://github.com/Studica-Robotics/NavX) 19 | - [Phoenix 25.0.0-beta-4](https://github.com/CrossTheRoadElec/Phoenix-Releases/releases/tag/v25.0.0-beta-4) 20 | - [ReduxLib 2025.0.0-beta0](https://docs.reduxrobotics.com/reduxlib) 21 | - [REVLib 2025.0.0-beta-4](https://github.com/REVrobotics/REV-Software-Binaries/releases/tag/revlib-2025.0.0-beta-4) 22 | - [Hardware Client and firmware instructions](REV.md) 23 | 24 | ### Other 25 | 26 | - [PhotonVision 2025.0.0-beta1](https://github.com/PhotonVision/photonvision/releases/tag/v2025.0.0-beta-1) 27 | - [PathPlanner 2025.0.0-beta4](https://github.com/mjansen4857/pathplanner/releases/tag/v2025.0.0-beta-4) 28 | - [AdvantageKit 4.0.0-alpha1](https://github.com/Mechanical-Advantage/AdvantageKit/releases/tag/v4.0.0-alpha-1) 29 | --------------------------------------------------------------------------------