Skip to content

Commit 2d363c1

Browse files
Generated messages for LSTS/imc@a80aad5.
1 parent 8619daf commit 2d363c1

35 files changed

+100
-93
lines changed

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Set this for the GitHub IMC definition repo
44
gradle.ext.imcGitHubRepo = 'LSTS/imc'
55
// Set this for the branch of the GitHub IMC definition repo
6-
gradle.ext.imcGitHubBranch = '9dd21a2'
6+
gradle.ext.imcGitHubBranch = 'a80aad5'
77
// Set if you want to use the IMC_Addresses.xml or not
88
gradle.ext.imcDownloadIMCAddresses = 'true'
99
// Set this for the folder IMC definition repo

src-generated/java/pt/lsts/imc/ADCPBeam.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ public ADCPBeam setVel(double vel) {
106106
}
107107

108108
/**
109-
* @return Amplitude (db) - fp32_t
109+
* @return Amplitude (dB) - fp32_t
110110
*/
111111
public double getAmp() {
112112
return getDouble("amp");
113113
}
114114

115115
/**
116-
* @param amp Amplitude (db)
116+
* @param amp Amplitude (dB)
117117
*/
118118
public ADCPBeam setAmp(double amp) {
119119
values.put("amp", amp);

src-generated/java/pt/lsts/imc/AcousticLink.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ public AcousticLink setPeer(String peer) {
106106
}
107107

108108
/**
109-
* @return Received Signal Strength Indicator (db) - fp32_t
109+
* @return Received Signal Strength Indicator (dB) - fp32_t
110110
*/
111111
public double getRssi() {
112112
return getDouble("rssi");
113113
}
114114

115115
/**
116-
* @param rssi Received Signal Strength Indicator (db)
116+
* @param rssi Received Signal Strength Indicator (dB)
117117
*/
118118
public AcousticLink setRssi(double rssi) {
119119
values.put("rssi", rssi);

src-generated/java/pt/lsts/imc/AllocatedControlTorques.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,44 +89,44 @@ public AllocatedControlTorques(double k, double m, double n) {
8989
}
9090

9191
/**
92-
* @return Torque about the x axis (nm) - fp64_t
92+
* @return Torque about the x axis (Nm) - fp64_t
9393
*/
9494
public double getK() {
9595
return getDouble("k");
9696
}
9797

9898
/**
99-
* @param k Torque about the x axis (nm)
99+
* @param k Torque about the x axis (Nm)
100100
*/
101101
public AllocatedControlTorques setK(double k) {
102102
values.put("k", k);
103103
return this;
104104
}
105105

106106
/**
107-
* @return Torque about the y axis (nm) - fp64_t
107+
* @return Torque about the y axis (Nm) - fp64_t
108108
*/
109109
public double getM() {
110110
return getDouble("m");
111111
}
112112

113113
/**
114-
* @param m Torque about the y axis (nm)
114+
* @param m Torque about the y axis (Nm)
115115
*/
116116
public AllocatedControlTorques setM(double m) {
117117
values.put("m", m);
118118
return this;
119119
}
120120

121121
/**
122-
* @return Torque about the x axis (nm) - fp64_t
122+
* @return Torque about the x axis (Nm) - fp64_t
123123
*/
124124
public double getN() {
125125
return getDouble("n");
126126
}
127127

128128
/**
129-
* @param n Torque about the x axis (nm)
129+
* @param n Torque about the x axis (Nm)
130130
*/
131131
public AllocatedControlTorques setN(double n) {
132132
values.put("n", n);

src-generated/java/pt/lsts/imc/Chlorophyll.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ public Chlorophyll(float value) {
8787
}
8888

8989
/**
90-
* @return Value (µg/l) - fp32_t
90+
* @return Value (µg/L) - fp32_t
9191
*/
9292
public double getValue() {
9393
return getDouble("value");
9494
}
9595

9696
/**
97-
* @param value Value (µg/l)
97+
* @param value Value (µg/L)
9898
*/
9999
public Chlorophyll setValue(double value) {
100100
values.put("value", value);

src-generated/java/pt/lsts/imc/ColoredDissolvedOrganicMatter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ public ColoredDissolvedOrganicMatter(float value) {
8787
}
8888

8989
/**
90-
* @return Value (ppb) - fp32_t
90+
* @return Value (PPB) - fp32_t
9191
*/
9292
public double getValue() {
9393
return getDouble("value");
9494
}
9595

9696
/**
97-
* @param value Value (ppb)
97+
* @param value Value (PPB)
9898
*/
9999
public ColoredDissolvedOrganicMatter setValue(double value) {
100100
values.put("value", value);

src-generated/java/pt/lsts/imc/Conductivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ public Conductivity(float value) {
8787
}
8888

8989
/**
90-
* @return Measured Conductivity (s/m) - fp32_t
90+
* @return Measured Conductivity (S/m) - fp32_t
9191
*/
9292
public double getValue() {
9393
return getDouble("value");
9494
}
9595

9696
/**
97-
* @param value Measured Conductivity (s/m)
97+
* @param value Measured Conductivity (S/m)
9898
*/
9999
public Conductivity setValue(double value) {
100100
values.put("value", value);

src-generated/java/pt/lsts/imc/CrudeOil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ public CrudeOil(float value) {
8787
}
8888

8989
/**
90-
* @return Value (ppb) - fp32_t
90+
* @return Value (PPB) - fp32_t
9191
*/
9292
public double getValue() {
9393
return getDouble("value");
9494
}
9595

9696
/**
97-
* @param value Value (ppb)
97+
* @param value Value (PPB)
9898
*/
9999
public CrudeOil setValue(double value) {
100100
values.put("value", value);

src-generated/java/pt/lsts/imc/Current.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ public Current(float value) {
8787
}
8888

8989
/**
90-
* @return Measured Current Value (a) - fp32_t
90+
* @return Measured Current Value (A) - fp32_t
9191
*/
9292
public double getValue() {
9393
return getDouble("value");
9494
}
9595

9696
/**
97-
* @param value Measured Current Value (a)
97+
* @param value Measured Current Value (A)
9898
*/
9999
public Current setValue(double value) {
100100
values.put("value", value);

src-generated/java/pt/lsts/imc/DesiredControl.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -101,89 +101,89 @@ public DesiredControl(double x, double y, double z, double k, double m, double n
101101
}
102102

103103
/**
104-
* @return Force along the x axis (n) - fp64_t
104+
* @return Force along the x axis (N) - fp64_t
105105
*/
106106
public double getX() {
107107
return getDouble("x");
108108
}
109109

110110
/**
111-
* @param x Force along the x axis (n)
111+
* @param x Force along the x axis (N)
112112
*/
113113
public DesiredControl setX(double x) {
114114
values.put("x", x);
115115
return this;
116116
}
117117

118118
/**
119-
* @return Force along the y axis (n) - fp64_t
119+
* @return Force along the y axis (N) - fp64_t
120120
*/
121121
public double getY() {
122122
return getDouble("y");
123123
}
124124

125125
/**
126-
* @param y Force along the y axis (n)
126+
* @param y Force along the y axis (N)
127127
*/
128128
public DesiredControl setY(double y) {
129129
values.put("y", y);
130130
return this;
131131
}
132132

133133
/**
134-
* @return Force along the z axis (n) - fp64_t
134+
* @return Force along the z axis (N) - fp64_t
135135
*/
136136
public double getZ() {
137137
return getDouble("z");
138138
}
139139

140140
/**
141-
* @param z Force along the z axis (n)
141+
* @param z Force along the z axis (N)
142142
*/
143143
public DesiredControl setZ(double z) {
144144
values.put("z", z);
145145
return this;
146146
}
147147

148148
/**
149-
* @return Torque about the x axis (nm) - fp64_t
149+
* @return Torque about the x axis (Nm) - fp64_t
150150
*/
151151
public double getK() {
152152
return getDouble("k");
153153
}
154154

155155
/**
156-
* @param k Torque about the x axis (nm)
156+
* @param k Torque about the x axis (Nm)
157157
*/
158158
public DesiredControl setK(double k) {
159159
values.put("k", k);
160160
return this;
161161
}
162162

163163
/**
164-
* @return Torque about the y axis (nm) - fp64_t
164+
* @return Torque about the y axis (Nm) - fp64_t
165165
*/
166166
public double getM() {
167167
return getDouble("m");
168168
}
169169

170170
/**
171-
* @param m Torque about the y axis (nm)
171+
* @param m Torque about the y axis (Nm)
172172
*/
173173
public DesiredControl setM(double m) {
174174
values.put("m", m);
175175
return this;
176176
}
177177

178178
/**
179-
* @return Torque about the z axis (nm) - fp64_t
179+
* @return Torque about the z axis (Nm) - fp64_t
180180
*/
181181
public double getN() {
182182
return getDouble("n");
183183
}
184184

185185
/**
186-
* @param n Torque about the z axis (nm)
186+
* @param n Torque about the z axis (Nm)
187187
*/
188188
public DesiredControl setN(double n) {
189189
values.put("n", n);

0 commit comments

Comments
 (0)