public class TelemetryMessage extends Message
AX25Message.Precedence| Modifier and Type | Field and Description |
|---|---|
float[] |
analogValues
A 5-element array of the 5 non-boolean analog values in the telemetry message.
|
int |
bitmask
A bitmask containing the 8 boolean digits from the telemetry message.
|
static int |
MIC
Constant representing the decoded representation of the "MIC" sequence "number".
|
int |
sequenceNum
The extracted sequence number of the telemetry data.
|
comment, extensions, msgType, S_PERMANENT, S_PERMANENT_UC, symbolCode, symTableId, USASCIIax25Frame, invalid, ISO_8859_1, originatingCallsign, PERMANENT, rcptTime, thirdParty, timestamp, UTC, UTF8| Constructor and Description |
|---|
TelemetryMessage(byte[] body,
int offset,
java.lang.String tp,
long rcvTimestamp)
Constructor for a TelemetryMessage from an AX25Frame.
|
TelemetryMessage(PositionMessage pm,
int startPos,
int endPos)
Construct a TelemetryMessage based on Base91 Telemetry data extracted from a PositionMessage's comment, per the proposed
extension documented in http://he.fi/doc/aprs-base91-comment-telemetry.txt.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
bodyEquals(AX25Message o)
Compare the contents of the body of the message, reporting if they match.
|
java.lang.String |
getBase91Encoding()
Encode this telemetry data in the format for base-91 appending to the comment of an APRS
PositionReport, per http://he.fi/doc/aprs-base91-comment-telemetry.txt.
|
java.lang.String |
paramString()
Descriptive text about this message, to be included in the toString() method's response.
|
compareTo, decodeDatestamp, decodeHurricaneParams, decodeTimestamp, decodeWeatherParams, decodeWeatherParams, dup, encodeTimestamp, extractComment, extractComment, extractSymbol, formatBody, getComment, getExtension, getExtensionString, getMsgType, getReadOnlyExtensionMap, getSymbolCode, getSymTableId, hasWeather, inferSymbol, isSymbolInferred, looksLikeLongFormatLatitude, setComment, setSymbolCode, setSymTableId, storeExtension, toStringequals, extractSource, getAx25Frame, getFirstDigipeat, getLastDigipeat, getOriginalDestination, getOriginalSource, getOriginatingCallsign, getPrecedence, getRcptTime, getTimestamp, hashCode, hasPosition, hasThisFirstDigi, indexOf, indexOf, isInvalid, onlyDigits, onlyDigits, onlyDigitsOrPeriod, onlyDigitsOrSpace, onlyDigitsPlus, onlyPeriods, setAx25Frame, setInvalid, setOriginatingCallsign, setRcptTime, setTimestamp, splitpublic static final int MIC
public int sequenceNum
public float[] analogValues
public int bitmask
public TelemetryMessage(byte[] body,
int offset,
java.lang.String tp,
long rcvTimestamp)
body - byte array containing the messageoffset - index into the byte array where the telemetry message text startstp - String of third-party routing data (may be null)rcvTimestamp - time in Java milliseconds since Jan 1 1970 UTC when this message was receivedpublic TelemetryMessage(PositionMessage pm, int startPos, int endPos)
pm - PositionMessage containing the base-91 telemetry datastartPos - index into the PositionMessage's comment where the telemetry data starts (after the '|' character)endPos - index into the PositionMessage's comment where the telemetry data ends (the closing '|' character)public java.lang.String paramString()
paramString in class MessageMessage.toString(),
Message.getComment()public java.lang.String getBase91Encoding()
throws java.lang.IllegalArgumentException
java.lang.IllegalArgumentException - if any value of telemetry message is out of range to fit in base-91 encodingpublic boolean bodyEquals(AX25Message o)
bodyEquals in class Messageo - another AX25Message to compare against