Skip to content

Commit 94e6a19

Browse files
committed
update to 2019 FRC control system
1 parent 96bf1d8 commit 94e6a19

File tree

4 files changed

+98
-17
lines changed

4 files changed

+98
-17
lines changed

build.gradle

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
/*
2-
* This file was generated by the Gradle 'init' task.
3-
*
4-
* This generated file contains a sample Java Library project to get you started.
5-
* For more details take a look at the Java Libraries chapter in the Gradle
6-
* user guide available at https://docs.gradle.org/5.1/userguide/java_library_plugin.html
7-
*/
81
plugins {
92
// Apply the java-library plugin to add support for Java Library
103
id 'java-library'
114
id 'java'
125
id 'idea'
13-
id 'jaci.openrio.gradle.GradleRIO' version '2018.01.22'
6+
id 'edu.wpi.first.GradleRIO' version '2019.1.1'
147
}
158

169
sourceCompatibility = 1.8
17-
version = '0.1.0'
10+
version = '1.0.0'
1811

1912
repositories {
2013
// Use jcenter for resolving your dependencies.
@@ -24,7 +17,8 @@ repositories {
2417

2518
dependencies {
2619
// FRC Bois
27-
compile wpilib()
28-
compile ctre()
29-
compile navx()
20+
compile wpi.deps.wpilib()
21+
compile wpi.deps.vendor.java()
22+
nativeZip wpi.deps.vendor.jni(wpi.platforms.roborio)
23+
nativeDesktopZip wpi.deps.vendor.jni(wpi.platforms.desktop)
3024
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Jan 03 10:37:48 PST 2019
1+
#Sat Jan 05 10:14:53 PST 2019
22
distributionBase=GRADLE_USER_HOME
3-
distributionPath=wrapper/dists
3+
distributionPath=permwrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
66
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1-all.zip

src/main/java/frc/team3256/warriorlib/hardware/ADXRS453_Gyro.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
/* the project. */
88
/*----------------------------------------------------------------------------*/
99

10+
import edu.wpi.first.hal.FRCNetComm;
11+
import edu.wpi.first.hal.HAL;
1012
import edu.wpi.first.wpilibj.DriverStation;
1113
import edu.wpi.first.wpilibj.GyroBase;
1214
import edu.wpi.first.wpilibj.SPI;
1315
import edu.wpi.first.wpilibj.Timer;
14-
import edu.wpi.first.wpilibj.hal.FRCNetComm.tResourceType;
15-
import edu.wpi.first.wpilibj.hal.HAL;
1616
import edu.wpi.first.wpilibj.interfaces.Gyro;
1717
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
1818

@@ -83,7 +83,7 @@ public ADXRS453_Gyro(SPI.Port port) {
8383

8484
calibrate();
8585

86-
HAL.report(tResourceType.kResourceType_ADXRS450, port.value);
86+
HAL.report(FRCNetComm.tResourceType.kResourceType_ADXRS450, port.value);
8787
LiveWindow.addSensor("ADXRS453_Gyro", port.value, this);
8888
}
8989

vendordeps/Phoenix-latest.json

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"fileName": "Phoenix.json",
3+
"name": "CTRE-Phoenix",
4+
"version": "5.12.0",
5+
"uuid": "ab676553-b602-441f-a38d-f1296eff6537",
6+
"mavenUrls": [
7+
"http://devsite.ctr-electronics.com/maven/release/"
8+
],
9+
"jsonUrl": "http://devsite.ctr-electronics.com/maven/release/com/ctre/phoenix/Phoenix-latest.json",
10+
"javaDependencies": [
11+
{
12+
"groupId": "com.ctre.phoenix",
13+
"artifactId": "api-java",
14+
"version": "5.12.0"
15+
},
16+
{
17+
"groupId": "com.ctre.phoenix",
18+
"artifactId": "wpiapi-java",
19+
"version": "5.12.0"
20+
}
21+
],
22+
"jniDependencies": [
23+
{
24+
"groupId": "com.ctre.phoenix",
25+
"artifactId": "cci",
26+
"version": "5.12.0",
27+
"isJar": false,
28+
"skipInvalidPlatforms": true,
29+
"validPlatforms": [
30+
"linuxathena",
31+
"windowsx86-64",
32+
"linuxx86-64"
33+
]
34+
}
35+
],
36+
"cppDependencies": [
37+
{
38+
"groupId": "com.ctre.phoenix",
39+
"artifactId": "wpiapi-cpp",
40+
"version": "5.12.0",
41+
"libName": "CTRE_Phoenix_WPI",
42+
"headerClassifier": "headers",
43+
"sharedLibrary": false,
44+
"skipInvalidPlatforms": true,
45+
"binaryPlatforms": [
46+
"linuxathena",
47+
"windowsx86-64",
48+
"linuxx86-64"
49+
]
50+
},
51+
{
52+
"groupId": "com.ctre.phoenix",
53+
"artifactId": "api-cpp",
54+
"version": "5.12.0",
55+
"libName": "CTRE_Phoenix",
56+
"headerClassifier": "headers",
57+
"sharedLibrary": false,
58+
"skipInvalidPlatforms": true,
59+
"binaryPlatforms": [
60+
"linuxathena",
61+
"windowsx86-64",
62+
"linuxx86-64"
63+
]
64+
},
65+
{
66+
"groupId": "com.ctre.phoenix",
67+
"artifactId": "cci",
68+
"version": "5.12.0",
69+
"libName": "CTRE_PhoenixCCI",
70+
"headerClassifier": "headers",
71+
"sharedLibrary": false,
72+
"skipInvalidPlatforms": true,
73+
"binaryPlatforms": [
74+
"linuxathena",
75+
"windowsx86-64",
76+
"linuxx86-64"
77+
]
78+
},
79+
{
80+
"groupId": "com.ctre.phoenix",
81+
"artifactId": "core",
82+
"version": "5.12.0",
83+
"libName": "CTRE_PhoenixCore",
84+
"headerClassifier": "headers"
85+
}
86+
]
87+
}

0 commit comments

Comments
 (0)