Skip to content

Commit c1a4aed

Browse files
committed
Vectronix Terrapin-X laser rangefinder protocol
1 parent 1d830c4 commit c1a4aed

File tree

4 files changed

+438
-0
lines changed

4 files changed

+438
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package com.platypii.baseline.lasers.rangefinder;
2+
3+
class Crc16 {
4+
/**
5+
* Computes the CRC16 checksum for a given byte array.
6+
*/
7+
public static short crc16(byte[] byteArray) {
8+
int crc = 0xffff;
9+
10+
// Process bytes in pairs (LSB first)
11+
for (int i = 0; i < byteArray.length; i++) {
12+
int b = byteArray[i] & 0xff;
13+
crc ^= b;
14+
15+
// Process each bit
16+
for (int j = 0; j < 8; j++) {
17+
if ((crc & 0x0001) != 0) {
18+
crc = (crc >> 1) ^ 0x8408; // 0x8408 is reversed polynomial
19+
} else {
20+
crc = crc >> 1;
21+
}
22+
}
23+
}
24+
25+
// XOR with 0xfff
26+
crc ^= 0xffff;
27+
28+
return (short) crc;
29+
}
30+
}

app/src/main/java/com/platypii/baseline/lasers/rangefinder/RangefinderService.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public class RangefinderService {
3030
private final BleProtocol protocols[] = {
3131
new ATNProtocol(),
3232
new SigSauerProtocol(),
33+
new TerrapinProtocol(),
3334
new UineyeProtocol()
3435
};
3536

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
package com.platypii.baseline.lasers.rangefinder;
2+
3+
import android.util.Log;
4+
import androidx.annotation.NonNull;
5+
import java.util.ArrayList;
6+
import java.util.Iterator;
7+
import java.util.List;
8+
9+
// Sentences start with 7e and end with 7e
10+
// Sometimes 1 sentence takes 2 messages
11+
// Sometimes 2 sentences come in 1 message
12+
class TerraSentenceIterator implements Iterator<byte[]> {
13+
private static final String TAG = "TerraSentenceIterator";
14+
15+
@NonNull
16+
private final List<Byte> byteBuffer = new ArrayList<>();
17+
18+
// Sentences ready to read
19+
@NonNull
20+
private final List<byte[]> sentences = new ArrayList<>();
21+
22+
private int state = 0;
23+
24+
void addBytes(@NonNull byte[] bytes) {
25+
for (byte b : bytes) {
26+
addByte(b);
27+
}
28+
}
29+
30+
private void addByte(byte b) {
31+
byteBuffer.add(b);
32+
if (state == 0) {
33+
if (b == 0x7e) state = 1;
34+
else Log.e(TAG, "missing preamble");
35+
} else if (state == 1) {
36+
if (b == 0x7e) {
37+
addSentence();
38+
state = 0;
39+
}
40+
}
41+
}
42+
43+
private void addSentence() {
44+
byte[] sent = new byte[byteBuffer.size() - 2];
45+
for (int i = 0; i < byteBuffer.size() - 2; i++) {
46+
sent[i] = byteBuffer.get(i + 1);
47+
}
48+
sentences.add(sent);
49+
byteBuffer.clear();
50+
}
51+
52+
@Override
53+
public boolean hasNext() {
54+
return !sentences.isEmpty();
55+
}
56+
57+
@Override
58+
public byte[] next() {
59+
return sentences.remove(0);
60+
}
61+
62+
@Override
63+
public void remove() {
64+
throw new UnsupportedOperationException();
65+
}
66+
}

0 commit comments

Comments
 (0)