Skip to content

Commit

Permalink
replaced beta with 2025 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhreng committed Jan 9, 2025
1 parent 0d81b8c commit 44f74f0
Show file tree
Hide file tree
Showing 94 changed files with 1,777 additions and 3,789 deletions.
6 changes: 3 additions & 3 deletions FlexAdvKitBeta/.gitignore → FlexAdvKit2025/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ out/

# Simulation GUI and other tools window save file
networktables.json
simgui*.json
simgui.json
*-window.json

# Simulation data log directory
Expand All @@ -183,5 +183,5 @@ ctre_sim/
/.cache
compile_commands.json

# Version file
src/main/java/frc/robot/BuildConstants.java
# Eclipse generated file for annotation processors
.factorypath
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
"desktop": true
"desktop": true,
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
"desktop": false
"desktop": false,
}
]
}
60 changes: 60 additions & 0 deletions FlexAdvKit2025/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"java.server.launchMode": "Standard",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"bin/": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"**/*~": true
},
"java.test.config": [
{
"name": "WPIlibUnitTests",
"workingDirectory": "${workspaceFolder}/build/jni/release",
"vmargs": [ "-Djava.library.path=${workspaceFolder}/build/jni/release" ],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release" ,
"DYLD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release"
}
},
],
"java.test.defaultConfig": "WPIlibUnitTests",
"java.import.gradle.annotationProcessing.enabled": false,
"java.completion.favoriteStaticMembers": [
"org.junit.Assert.*",
"org.junit.Assume.*",
"org.junit.jupiter.api.Assertions.*",
"org.junit.jupiter.api.Assumptions.*",
"org.junit.jupiter.api.DynamicContainer.*",
"org.junit.jupiter.api.DynamicTest.*",
"org.mockito.Mockito.*",
"org.mockito.ArgumentMatchers.*",
"org.mockito.Answers.*",
"edu.wpi.first.units.Units.*"
],
"java.completion.filteredTypes": [
"java.awt.*",
"com.sun.*",
"sun.*",
"jdk.*",
"org.graalvm.*",
"io.micrometer.shaded.*",
"java.beans.*",
"java.util.Base64.*",
"java.util.Timer",
"java.sql.*",
"javax.swing.*",
"javax.management.*",
"javax.smartcardio.*",
"edu.wpi.first.math.proto.*",
"edu.wpi.first.math.**.proto.*",
"edu.wpi.first.math.**.struct.*",
]
}
6 changes: 6 additions & 0 deletions FlexAdvKit2025/.wpilib/wpilib_preferences.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025",
"teamNumber": 6672
}
Loading

0 comments on commit 44f74f0

Please sign in to comment.