aboutsummaryrefslogtreecommitdiffstats
path: root/tracker-stm32/src/main.cpp
blob: e4527127de28f156215aef17981e38e643d34c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
// Licence: MIT
// This file is a bit of a mess, because first it contained aprs434 compressed
// code running on STM32H7, and now it contains traditional APRS-over-LoRa for STM32F1
#include <Arduino.h>
#include <SemihostingStream.h>
#include <RadioLib.h>
#include <Wire.h>
#include <TinyGPS++.h>
#include <SD.h>
#include "compression.h"
#include "utils.h"

// Pin mapping: outputs
constexpr int LED_STATUSn = PB8;
constexpr int LED_TXn = PB9;
constexpr int EN_PA = PB3;
constexpr int EN_RX = PB4;
constexpr int LORA_RESET = PB11;

// Pin mapping: inputs
constexpr int BTN1n = PC13;
constexpr int BTN2n = PC14;
constexpr int BTN3n = PC15;
constexpr int ENCODER_SW_1 = PB12;
constexpr int ENCODER_SW_2 = PB13;
constexpr int ENCODER_SW_4 = PB14;
constexpr int ENCODER_SW_8 = PB15;

constexpr int BAT_MEAS = PA0;

// Date Type Codes defined in aprs434.github.io
constexpr int DATA_TYPE_CODE_GEOLOCATION = 0;
constexpr int DATA_TYPE_CODE_STATUS_REPORT = 1;

// TODO: read these settings from the SD Card
constexpr char CALLSIGN[] = "HB9EGM";
constexpr int SSID = 7;
constexpr char CALLSIGN_SSID_PATH[] = "HB9EGM-7>APZEGM";
constexpr int PATH_CODE = 2; // metropolitan mobile
constexpr char SYMBOL_TABLE_IDENTIFIER = '/';
constexpr char SYMBOL_CODE_BICYCLE = 'b';
constexpr char SYMBOL_CODE_FOOT = '[';
constexpr long REPORT_TX_INTERVAL = 181000;

constexpr long TEXT_TX_INTERVAL = 47000;
constexpr char TEXT_REPORT[] = "mpb.li/git/lora-aprs-hb9egm"; // Max length=28


#if 0
File myFile;
constexpr int SD_CS = 17;
#endif

// LoRa module has the following connections:
// NSS pin:   PA4
// DIO0 pin:  PB10
// RESET pin: PB11
RFM96 radio = new Module(PA4, PB10, PB11);

HardwareSerial serialGNSS(PA10, PA9);
TinyGPSPlus    gps;

long lastGnssPoll = 0;
long lastPositionReport = 0;
long lastTextReport = 0;

constexpr size_t MAX_REPORT_LEN = 48;
size_t report_len = 0;
uint8_t report[MAX_REPORT_LEN];

SemihostingStream sh;

static char letterize(int x) {
    return (char) x + 65;
}

void setup() {
    Wire.begin();
    pinMode(LED_STATUSn, OUTPUT);

#if 0
    pinMode(SD_CS, OUTPUT);

    if (!SD.begin(SD_CS)) {
        sh.println("SD init failed!");
        return;
    }
#endif

    sh.print(F("START"));
    serialGNSS.begin(9600);

    sh.print(F("[RFM] Init "));
    int state = radio.begin(433.775);
    if (state == RADIOLIB_ERR_NONE) {
        sh.println(F("success!"));
    } else {
        sh.print(F("failed, code "));
        sh.println(state);
        while (true);
    }

    if (radio.setBandwidth(125.0) == RADIOLIB_ERR_INVALID_BANDWIDTH) {
        sh.println(F("Selected bandwidth is invalid for this module!"));
        while (true);
    }

    if (radio.setSpreadingFactor(12) == RADIOLIB_ERR_INVALID_SPREADING_FACTOR) {
        sh.println(F("Selected spreading factor is invalid for this module!"));
        while (true);
    }

    if (radio.setCodingRate(5) == RADIOLIB_ERR_INVALID_CODING_RATE) {
        sh.println(F("Selected coding rate is invalid for this module!"));
        while (true);
    }

    // NOTE: value 0x34 is reserved for LoRaWAN networks and should not be used
    if (radio.setSyncWord(0x14) != RADIOLIB_ERR_NONE) {
        sh.println(F("Unable to set sync word!"));
        while (true);
    }

    if (radio.setOutputPower(20) == RADIOLIB_ERR_INVALID_OUTPUT_POWER) {
        sh.println(F("Selected output power is invalid for this module!"));
        while (true);
    }

    if (radio.setPreambleLength(8) == RADIOLIB_ERR_INVALID_PREAMBLE_LENGTH) {
        sh.println(F("Selected preamble length is invalid for this module!"));
        while (true);
    }

    // radio.setRfSwitchPins(4, 5);
}

static void handle_radio_error(int state)
{
    if (state == RADIOLIB_ERR_NONE) {
        sh.print(F(" RFM OK Datarate: "));
        sh.print(radio.getDataRate());
        sh.println(F(" bps"));

    }
    else if (state == RADIOLIB_ERR_PACKET_TOO_LONG) {
        sh.println(F(" too long!"));

    }
    else if (state == RADIOLIB_ERR_TX_TIMEOUT) {
        sh.println(F(" timeout!"));

    }
    else {
        sh.print(F(" failed, code "));
        sh.println(state);
    }
}

void append_position_report()
{
    float Tlat, Tlon;
    float Tspeed=0, Tcourse=0;
    Tlat    = gps.location.lat();
    Tlon    = gps.location.lng();
    Tcourse = gps.course.deg();
    Tspeed  = gps.speed.knots();

    uint32_t aprs_lat, aprs_lon;
    aprs_lat = 900000000 - Tlat * 10000000;
    aprs_lat = aprs_lat / 26 - aprs_lat / 2710 + aprs_lat / 15384615;
    aprs_lon = 900000000 + Tlon * 10000000 / 2;
    aprs_lon = aprs_lon / 26 - aprs_lon / 2710 + aprs_lon / 15384615;

    char helper_base91[] = {"0000\0"};
    int i;
    ax25_base91enc(helper_base91, 4, aprs_lat);
    for (i=0; i<4; i++) {
        report[report_len++] = helper_base91[i];
    }
    ax25_base91enc(helper_base91, 4, aprs_lon);
    for (i=0; i<4; i++) {
        report[report_len++] = helper_base91[i];
    }

    report[report_len++] = SYMBOL_CODE_FOOT;

    // Do not encode altitude, only course and speed
    ax25_base91enc(helper_base91, 1, (uint32_t)Tcourse/4 );
    report[report_len++] = helper_base91[0];
    ax25_base91enc(helper_base91, 1, (uint32_t)(log1p(Tspeed)/0.07696));
    report[report_len++] = helper_base91[0];
    report[report_len++] = 0x47;
}

void loop()
{
    while (serialGNSS.available() > 0) {
        gps.encode(serialGNSS.read());
    }

    const auto now = millis();
    if (now - lastGnssPoll > 1000) {
        lastGnssPoll = now;

        const long latitude = gps.location.lat();
        sh.print(F("Lat "));
        sh.print(latitude);

        const long longitude = gps.location.lng();
        sh.print(F(" Lon "));
        sh.print(longitude);

        const byte SIV = gps.satellites.value();
        sh.print(F(" SIV: "));
        sh.println(SIV);
        if (now - lastPositionReport > REPORT_TX_INTERVAL) {
            lastPositionReport = now;

            digitalWrite(LED_STATUSn, LOW);

            report_len = 0;

            report[report_len++] = '<';
            report[report_len++] = 0xFF;
            report[report_len++] = 0x01;

            const char* p = CALLSIGN_SSID_PATH;
            while (*p) {
                report[report_len++] = *p;
                p++;
            }

            report[report_len++] = ':';
            report[report_len++] = '!';
            report[report_len++] = SYMBOL_TABLE_IDENTIFIER;
            append_position_report();
            int state = radio.transmit(report, report_len);
            handle_radio_error(state);

            digitalWrite(LED_STATUSn, HIGH);
        }
    }
}

#if 0
void loop()
{
    while (serialGNSS.available() > 0) {
        gps.encode(serialGNSS.read());
    }

    const auto now = millis();
    if (now - lastGnssPoll > 1000) {
        lastGnssPoll = now;

        // longitude and latitude are in degrees*1e7
        const long latitude = gps.location.lat();
        sh.print(F("Lat: "));
        sh.print(latitude);

        const long longitude = gps.location.lng();
        sh.print(F(" Long: "));
        sh.print(longitude);

        const long altitude = gps.altitude.feet();

        const int speed = gps.speed.kmph();
        sh.print(F(" Speed: "));
        sh.print(speed);
        sh.print(F(" (mm/s)"));
        // 1m/s = 900/463 knots
        const double speed_kn  = gps.speed.knots();

        const long heading = gps.course.deg();
        sh.print(F(" Heading: "));
        sh.print(heading);
        sh.print(F(" (degrees * 10^-5)"));

        const byte SIV = gps.satellites.value();
        sh.print(F(" SIV: "));
        sh.print(SIV);

        sh.print(F(" TX in: "));
        sh.print(REPORT_TX_INTERVAL - (now - lastPositionReport));

        sh.println();

        if (now - lastPositionReport > REPORT_TX_INTERVAL) {
            lastPositionReport = now;

            digitalWrite(LED_STATUSn, HIGH);

            // Encode Compressed Geolocation Frame according to aprs434.github.io
            const uint32_t callsign_EEEE = encodeCallsign(CALLSIGN);

            report_len = 0;
            // Callsign encoded as CCCC
            report[report_len++] = (callsign_EEEE >> 24) & 0xFF;
            report[report_len++] = (callsign_EEEE >> 16) & 0xFF;
            report[report_len++] = (callsign_EEEE >> 8) & 0xFF;
            report[report_len++] = callsign_EEEE & 0xFF;

            // D SSID Path Code and Data Type Code
            report[report_len++] = SSID * 16 + PATH_CODE * 4 + DATA_TYPE_CODE_GEOLOCATION;

            // / Symbol Table Identifier
            report[report_len++] = SYMBOL_TABLE_IDENTIFIER;

            // XXXX Base91 Longitude
            // YYYY Base91 Latitude
            uint32_t aprs_lat = 900000000 - latitude;
            aprs_lat = aprs_lat / 26 - aprs_lat / 2710 + aprs_lat / 15384615;
            uint32_t aprs_lon = 900000000 + longitude / 2;
            aprs_lon = aprs_lon / 26 - aprs_lon / 2710 + aprs_lon / 15384615;

            char tmp_base91[5];
            ax25_base91enc(tmp_base91, 4, aprs_lat);
            for (int i=0; i<4; i++) {
                report[report_len++] = tmp_base91[i];
            }
            ax25_base91enc(tmp_base91, 4, aprs_lon);
            for (int i=0; i<4; i++) {
                report[report_len++] = tmp_base91[i];
            }

            // $ Symbol Code
            report[report_len++] = SYMBOL_CODE_FOOT;

            // cs Course and Speed
            ax25_base91enc(tmp_base91, 1, heading * 10000 / 4);
            report[report_len++] = tmp_base91[0];

            ax25_base91enc(tmp_base91, 1, (uint32_t)(log1p(speed_kn) / 0.07696));
            report[report_len++] = tmp_base91[0];

            // Debug print
            sh.println(F("Bytes: "));
            for (int i = 0; i < report_len; i++) {
                sh.print((uint32_t)report[i]);
            }
            sh.println(F(""));

            int state = radio.transmit(report, report_len);
            handle_radio_error(state);

            digitalWrite(LED_STATUSn, LOW);
        }

        if (now - lastTextReport > TEXT_TX_INTERVAL) {
            lastTextReport = now;
            digitalWrite(LED_STATUSn, HIGH);

            // Encode Compressed Status Report Frame according to aprs434.github.io
            const uint32_t callsign_EEEE = encodeCallsign(CALLSIGN);

            report_len = 0;
            // Callsign encoded as CCCC
            report[report_len++] = (callsign_EEEE >> 24) & 0xFF;
            report[report_len++] = (callsign_EEEE >> 16) & 0xFF;
            report[report_len++] = (callsign_EEEE >> 8) & 0xFF;
            report[report_len++] = callsign_EEEE & 0xFF;

            // D SSID Path Code and Data Type Code
            report[report_len++] = SSID * 16 + PATH_CODE * 4 + DATA_TYPE_CODE_STATUS_REPORT;

            // t(t...) text
            const auto bignum = encodetttt(TEXT_REPORT);
            for (int i = 0; i <= 512; i += 8) {
                auto v = static_cast<uint8_t>((bignum >> (512-i)) & 0xFF);
                if (v) {
                    report[report_len++] = v;
                }
            }

            sh.print(F("TX length "));
            sh.print(report_len);
            sh.print(F(" bytes: "));
            sh.println(TEXT_REPORT);

            int state = radio.transmit(report, report_len);
            handle_radio_error(state);

            digitalWrite(LED_STATUSn, LOW);
        }
    }
}
#endif