File tree Expand file tree Collapse file tree 6 files changed +28
-16
lines changed
subprojects/robotpy-wpimath Expand file tree Collapse file tree 6 files changed +28
-16
lines changed Original file line number Diff line number Diff line change @@ -98,26 +98,11 @@ jobs:
98
98
env :
99
99
OS : ${{ runner.os }}
100
100
run : |
101
- if [[ "$OS" != "Linux" ]]; then
102
- echo "VARIANT=sccache" >> $GITHUB_OUTPUT
103
- else
104
- echo "VARIANT=ccache" >> $GITHUB_OUTPUT
105
- echo "MAX_SIZE=500M" >> $GITHUB_OUTPUT
106
- fi
107
101
if [[ "$OS" == "macOS" ]]; then
108
102
echo "SCCACHE_CACHE_MULTIARCH=1" >> $GITHUB_ENV
109
103
fi
110
104
111
- - name : Setup ccache
112
- if : steps.ccache.outputs.variant == 'ccache'
113
- uses :
hendrikmuhs/[email protected]
114
- with :
115
- key : ${{ matrix.os }}-${{ matrix.python_version }}
116
- variant : ccache
117
- max-size : ${{ steps.ccache.outputs.max_size }}
118
-
119
105
- name : Setup sccache
120
- if : steps.ccache.outputs.variant == 'sccache'
121
106
uses :
mozilla-actions/[email protected]
122
107
123
108
- name : Install deps
@@ -136,7 +121,7 @@ jobs:
136
121
./rdev.sh ci run
137
122
env :
138
123
RPYBUILD_STRIP_LIBPYTHON : " 1"
139
- RPYBUILD_CC_LAUNCHER : ${{ steps.ccache.outputs.variant }}
124
+ RPYBUILD_CC_LAUNCHER : sccache
140
125
SCCACHE_WEBDAV_USERNAME : ${{ secrets.WPI_ARTIFACTORY_USERNAME }}
141
126
SCCACHE_WEBDAV_PASSWORD : ${{ secrets.WPI_ARTIFACTORY_TOKEN }}
142
127
Original file line number Diff line number Diff line change @@ -65,6 +65,13 @@ templates:
65
65
- 2
66
66
- 1
67
67
- 1
68
+ ExtendedKalmanFilter_2_1_2 :
69
+ qualname : frc::ExtendedKalmanFilter
70
+ subpackage : estimator
71
+ params :
72
+ - 2
73
+ - 1
74
+ - 2
68
75
ExtendedKalmanFilter_2_2_2 :
69
76
qualname : frc::ExtendedKalmanFilter
70
77
subpackage : estimator
Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ templates:
48
48
- 2
49
49
- 1
50
50
- 1
51
+ KalmanFilter_2_1_2 :
52
+ qualname : frc::KalmanFilter
53
+ subpackage : estimator
54
+ params :
55
+ - 2
56
+ - 1
57
+ - 2
51
58
KalmanFilter_2_2_2 :
52
59
qualname : frc::KalmanFilter
53
60
subpackage : estimator
Original file line number Diff line number Diff line change @@ -70,6 +70,13 @@ templates:
70
70
- 2
71
71
- 1
72
72
- 1
73
+ LinearSystemLoop_2_1_2 :
74
+ qualname : frc::LinearSystemLoop
75
+ subpackage : system
76
+ params :
77
+ - 2
78
+ - 1
79
+ - 2
73
80
LinearSystemLoop_2_2_2 :
74
81
qualname : frc::LinearSystemLoop
75
82
subpackage : system
Original file line number Diff line number Diff line change 6
6
DifferentialDrivePoseEstimatorBase ,
7
7
ExtendedKalmanFilter_1_1_1 ,
8
8
ExtendedKalmanFilter_2_1_1 ,
9
+ ExtendedKalmanFilter_2_1_2 ,
9
10
ExtendedKalmanFilter_2_2_2 ,
10
11
KalmanFilter_1_1_1 ,
11
12
KalmanFilter_2_1_1 ,
13
+ KalmanFilter_2_1_2 ,
12
14
KalmanFilter_2_2_2 ,
13
15
KalmanFilter_3_2_3 ,
14
16
MecanumDrivePoseEstimator ,
40
42
"DifferentialDrivePoseEstimatorBase" ,
41
43
"ExtendedKalmanFilter_1_1_1" ,
42
44
"ExtendedKalmanFilter_2_1_1" ,
45
+ "ExtendedKalmanFilter_2_1_2" ,
43
46
"ExtendedKalmanFilter_2_2_2" ,
44
47
"KalmanFilter_1_1_1" ,
45
48
"KalmanFilter_2_1_1" ,
49
+ "KalmanFilter_2_1_2" ,
46
50
"KalmanFilter_2_2_2" ,
47
51
"KalmanFilter_3_2_3" ,
48
52
"MecanumDrivePoseEstimator" ,
Original file line number Diff line number Diff line change 2
2
from .._controls ._controls .system import (
3
3
LinearSystemLoop_1_1_1 ,
4
4
LinearSystemLoop_2_1_1 ,
5
+ LinearSystemLoop_2_1_2 ,
5
6
LinearSystemLoop_2_2_2 ,
6
7
LinearSystemLoop_3_2_3 ,
7
8
LinearSystem_1_1_1 ,
21
22
__all__ = [
22
23
"LinearSystemLoop_1_1_1" ,
23
24
"LinearSystemLoop_2_1_1" ,
25
+ "LinearSystemLoop_2_1_2" ,
24
26
"LinearSystemLoop_2_2_2" ,
25
27
"LinearSystemLoop_3_2_3" ,
26
28
"LinearSystem_1_1_1" ,
You can’t perform that action at this time.
0 commit comments