aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/Core/fsm.c
blob: 7d3e6cadadf65d2ed821dac8e671f059a5b3ecf1 (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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2020 Matthias P. Braendli, Maximilien Cuony
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include <string.h>
#include <stdio.h>
#include <stdint.h>
#include "Core/common.h"
#include "Core/fsm.h"
#include "Core/stats.h"
#include "GPIO/usart.h"
#include "GPIO/temperature.h"
#include "GPIO/batterycharge.h"
#include "GPIO/analog.h"

static struct fsm_input_signals_t fsm_in;
static struct fsm_output_signals_t fsm_out;

static fsm_state_t current_state;
static balise_fsm_state_t balise_state;
static sstv_fsm_state_t sstv_state;

// Keep track of when we last entered a given state, measured
// in ms using the timestamp_now() function
static uint64_t timestamp_state[_NUM_FSM_STATES];

static int last_battery_capacity_ah = 0;

#define BALISE_MESSAGE_LEN 75
static char balise_message[BALISE_MESSAGE_LEN];

static int balise_message_empty(void)
{
    return balise_message[0] == '\0';
}

static void balise_message_clear(void)
{
    balise_message[0] = '\0';
}


// Each 20 minutes, send a SHORT_BEACON
#define SHORT_BEACON_MAX (60 * 20)
// Reset the counter if the QSO was 10m too long
#define SHORT_BEACON_RESET_IF_QSO (60 * 10)

/* At least 1 second predelay for CW, ensures the receivers had enough time
 * time to open their squelch before the first letter gets transmitted
 */
#define CW_PREDELAY "      "

// Some time to ensure we don't cut off the last letter
#define CW_POSTDELAY "  "

// The counter (up to 20 minutes) for the short balise
static int short_beacon_counter_s = 0;
static uint64_t short_beacon_counter_last_update = 0;

// The last start of the last qso
static uint64_t last_qso_start_timestamp = 0;

// Information from which we can calculate the QSO duration
static struct {
    int qso_occurred;
    uint64_t qso_start_time;
} qso_info;

void fsm_init() {
    memset(&fsm_in, 0, sizeof(fsm_in));
    memset(&fsm_out, 0, sizeof(fsm_out));

    memset(timestamp_state, 0, _NUM_FSM_STATES * sizeof(*timestamp_state));
    timestamp_state[FSM_OISIF] = timestamp_now();

    current_state = FSM_OISIF;
    balise_state = BALISE_FSM_EVEN_HOUR;
    sstv_state = SSTV_FSM_OFF;
    balise_message[0] = '\0';

    qso_info.qso_occurred = 0;
    qso_info.qso_start_time = timestamp_now();
}

// Calculate the time spent in the current state
static uint64_t fsm_current_state_time_ms(void) {
    return timestamp_now() - timestamp_state[current_state];
}

static uint64_t fsm_current_state_time_s(void) {
    return fsm_current_state_time_ms() / 1000;
}

static const char* state_name(fsm_state_t state) {
    switch (state) {
        case FSM_OISIF: return "FSM_OISIF";
        case FSM_OPEN1: return "FSM_OPEN1";
        case FSM_OPEN2: return "FSM_OPEN2";
        case FSM_LETTRE: return "FSM_LETTRE";
        case FSM_ECOUTE: return "FSM_ECOUTE";
        case FSM_ATTENTE: return "FSM_ATTENTE";
        case FSM_QSO: return "FSM_QSO";
        case FSM_ANTI_BAVARD: return "FSM_ANTI_BAVARD";
        case FSM_BLOQUE: return "FSM_BLOQUE";
        case FSM_TEXTE_73: return "FSM_TEXTE_73";
        case FSM_TEXTE_HB9G: return "FSM_TEXTE_HB9G";
        case FSM_TEXTE_LONG: return "FSM_TEXTE_LONG";
        case FSM_BALISE_LONGUE: return "FSM_BALISE_LONGUE";
        case FSM_BALISE_STATS1: return "FSM_BALISE_STATS1";
        case FSM_BALISE_STATS2: return "FSM_BALISE_STATS2";
        case FSM_BALISE_STATS3: return "FSM_BALISE_STATS3";
        case FSM_BALISE_SPECIALE: return "FSM_BALISE_SPECIALE";
        case FSM_BALISE_SPECIALE_STATS1: return "FSM_BALISE_SPECIALE_STATS1";
        case FSM_BALISE_SPECIALE_STATS2: return "FSM_BALISE_SPECIALE_STATS2";
        case FSM_BALISE_SPECIALE_STATS3: return "FSM_BALISE_SPECIALE_STATS3";
        case FSM_BALISE_COURTE: return "FSM_BALISE_COURTE";
        case FSM_BALISE_COURTE_OPEN: return "FSM_BALISE_COURTE_OPEN";
        default: return "ERROR!";
    }
}

static const char* balise_state_name(balise_fsm_state_t state) {
    switch (state) {
        case BALISE_FSM_EVEN_HOUR: return "BALISE_FSM_EVEN_HOUR";
        case BALISE_FSM_ODD_HOUR: return "BALISE_FSM_ODD_HOUR";
        case BALISE_FSM_PENDING: return "BALISE_FSM_PENDING";
        default: return "ERROR!";
    }
}

static const char* sstv_state_name(sstv_fsm_state_t state) {
    switch (state) {
        case SSTV_FSM_OFF: return "SSTV_FSM_OFF";
        case SSTV_FSM_ON: return "SSTV_FSM_ON";
        default: return "ERROR!";
    }
}

static fsm_state_t select_grande_balise(void) {
    if (fsm_in.qrp || fsm_in.swr_high) {
        if (fsm_in.send_stats) {
            return FSM_BALISE_SPECIALE_STATS1;
        }
        else {
            return FSM_BALISE_SPECIALE;
        }
    }
    else if (fsm_in.send_stats) {
        return FSM_BALISE_STATS1;
    }
    else {
        return FSM_BALISE_LONGUE;
    }
}

static uint64_t qso_duration(void) {
    return timestamp_state[current_state] - qso_info.qso_start_time;
}

// Between turns in a QSO, the repeater sends a letter in CW,
// different messages are possible. They are sorted here from
// low to high priority.
const char* letter_all_ok    = "K";
const char* letter_sstv      = "S";
const char* letter_qrp       = "G";
const char* letter_freq_high = "U";
const char* letter_freq_low  = "D";
const char* letter_swr_high  = "R";

static const char* fsm_select_letter(void) {
    if (fsm_in.swr_high) {
        return letter_swr_high;
    }
    else if (fsm_in.discrim_d) {
        return letter_freq_low;
    }
    else if (fsm_in.discrim_u) {
        return letter_freq_high;
    }
    else if (fsm_in.qrp) {
        return letter_qrp;
    }
    else if (sstv_state == SSTV_FSM_ON) {
        return letter_sstv;
    }

    return letter_all_ok;
}


void fsm_update() {

    fsm_state_t next_state = current_state;

    // Some defaults for the outgoing signals
    fsm_out.tx_on = 0;
    fsm_out.modulation = 0;
    fsm_out.cw_psk_trigger = 0;
    fsm_out.cw_dit_duration = 50;
    fsm_out.msg_frequency = 960;
    fsm_out.require_tone_detector = 0;
    // other output signals keep their value

    switch (current_state) {
        case FSM_OISIF:
            // Check the length of the last QSO, and reset the SHORT_BEACON counter if needed
            if (last_qso_start_timestamp != 0) {

                if ((timestamp_now() - last_qso_start_timestamp) > 1000 * SHORT_BEACON_RESET_IF_QSO) {
                    short_beacon_counter_s = 0;
                }

                last_qso_start_timestamp = 0;
            }

            // Increment the SHORT_BEACON counter based on time spent in the state
            while(short_beacon_counter_s < SHORT_BEACON_MAX && (fsm_current_state_time_s() - short_beacon_counter_last_update > 1)) {
                short_beacon_counter_last_update++;
                short_beacon_counter_s++;
            }

            // SQ and button 1750 are debounced inside pio.c (300ms)
            fsm_out.require_tone_detector = fsm_in.sq;

            if ( (fsm_in.sq && fsm_in.det_1750) ||
                 (fsm_in.sq && sstv_state == SSTV_FSM_ON) ||
                 (fsm_in.button_1750)) {
                next_state = FSM_OPEN1;
            }
            else if (balise_state == BALISE_FSM_PENDING) {
                short_beacon_counter_s = 0;
                next_state = select_grande_balise();
            }
            else if (!fsm_in.qrp && short_beacon_counter_s == SHORT_BEACON_MAX) {
                short_beacon_counter_s = 0;
                next_state = FSM_BALISE_COURTE;
            }

            break;

        case FSM_OPEN1:
            /* Do not enable TX_ON here, otherwise we could get stuck transmitting
             * forever if SQ never goes low.
             */
            fsm_out.require_tone_detector = 1;
            if (!fsm_in.sq && !fsm_in.det_1750) {
                next_state = FSM_OPEN2;
            }
            break;

        case FSM_OPEN2:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;
            qso_info.qso_occurred = 0;
            qso_info.qso_start_time = timestamp_now();

            if (fsm_current_state_time_ms() > 200) {
                next_state = FSM_LETTRE;
            }
            break;

        case FSM_LETTRE:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;
            fsm_out.msg = fsm_select_letter();
            if (fsm_out.msg[0] == 'G') {
                // The letter 'G' is a bit different
                fsm_out.msg_frequency    = 696;
            }
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.cw_psk_done) {
                next_state = FSM_ECOUTE;
            }
            break;

        case FSM_ECOUTE:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;

            /* Time checks:
             * We need to check the total TX_ON duration to decide the text to
             * send. This is the QSO duration.
             *
             * We also need to check if we actually entered the QSO state
             * recently, otherwise we want to go to ATTENTE. That's why the
             * additional field qso_occurred is required.
             */

            if (fsm_in.sq) {
                next_state = FSM_QSO;
            }
            else {
                if (fsm_current_state_time_s() > 5) {
                    if (balise_state == BALISE_FSM_PENDING) {
                        short_beacon_counter_s = 0;
                        next_state = select_grande_balise();
                    }
                    else if (qso_info.qso_occurred) {
                        if (qso_duration() >= 1000ul * 15 * 60) {
                            next_state = FSM_TEXTE_LONG;
                        }
                        else if (qso_duration() >= 1000ul * 10 * 60) {
                            next_state = FSM_TEXTE_HB9G;
                        }
                        else if (qso_duration() >= 1000ul * 5 * 60) {
                            next_state = FSM_TEXTE_73;
                        }
                        else {
                            next_state = FSM_OISIF;
                        }
                    }
                }

                if (fsm_current_state_time_s() > 6 && !qso_info.qso_occurred) {
                    next_state = FSM_ATTENTE;
                }

                /* If everything fails and the state was not changed after 7
                 * seconds, fall back to oisif
                 */
                if (fsm_current_state_time_s() > 7) {
                    next_state = FSM_OISIF;
                }
            }
            break;

        case FSM_ATTENTE:
            if (fsm_in.sq) {
                fsm_out.require_tone_detector = 1;
                next_state = FSM_ECOUTE;
            }
            else if (fsm_current_state_time_s() > 15) {
                next_state = FSM_OISIF;
            }
            break;

        case FSM_QSO:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;
            qso_info.qso_occurred = 1;

            // Save the starting timestamp, if there is none
            if (last_qso_start_timestamp == 0) {
                last_qso_start_timestamp = timestamp_now();
            }

            if (!fsm_in.sq && fsm_current_state_time_s() < 3) {
                /* To avoid that very short open squelch triggers
                 * transmit CW letters all the time. Some people
                 * enjoy doing that.
                 */
                next_state = FSM_ECOUTE;
            }
            else if (!fsm_in.sq && fsm_current_state_time_s() >= 3) {
                next_state = FSM_LETTRE;
            }
            else if (fsm_current_state_time_s() > 5 * 60) {
                next_state = FSM_ANTI_BAVARD;
            }
            break;

        case FSM_ANTI_BAVARD:
            fsm_out.tx_on = 1;
            // No modulation!

            // Short post-delay to underscore the fact that
            // transmission was forcefully cut off.
            fsm_out.msg = " HI HI ";
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.cw_psk_done) {
                stats_anti_bavard_triggered();
                next_state = FSM_BLOQUE;
            }
            break;

        case FSM_BLOQUE:
            if (fsm_current_state_time_s() > 10) {
                next_state = FSM_OISIF;
            }
            break;

        case FSM_TEXTE_73:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;
            fsm_out.msg_frequency    = 696;
            fsm_out.cw_dit_duration = 70;
            fsm_out.msg = " 73" CW_POSTDELAY;
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.sq) {
                next_state = FSM_QSO;
                qso_info.qso_start_time = timestamp_now();
            }
            else if (fsm_in.cw_psk_done) {
                next_state = FSM_OISIF;
            }
            break;

        case FSM_TEXTE_HB9G:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;
            fsm_out.msg_frequency   = 696;
            fsm_out.cw_dit_duration = 70;
            // No need for CW_PREDELAY, since we are already transmitting
            fsm_out.msg = " HB9G" CW_POSTDELAY;
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.sq) {
                next_state = FSM_QSO;
                qso_info.qso_start_time = timestamp_now();
            }
            else if (fsm_in.cw_psk_done) {
                next_state = FSM_OISIF;
            }
            break;

        case FSM_TEXTE_LONG:
            fsm_out.tx_on = 1;
            fsm_out.modulation = 1;
            fsm_out.require_tone_detector = 1;

            fsm_out.msg_frequency   = 696;
            fsm_out.cw_dit_duration = 70;

            // No need for CW_PREDELAY, since we are already transmitting
            if (random_bool()) {
                fsm_out.msg = " HB9G 1628M" CW_POSTDELAY;
            }
            else {
                fsm_out.msg = " HB9G JN36BK" CW_POSTDELAY;
            }
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.sq) {
                next_state = FSM_QSO;
                qso_info.qso_start_time = timestamp_now();
            }
            else if (fsm_in.cw_psk_done) {
                next_state = FSM_OISIF;
            }
            break;

        case FSM_BALISE_LONGUE:
        case FSM_BALISE_STATS1:
            fsm_out.tx_on = 1;
            fsm_out.msg_frequency   = 588;
            fsm_out.cw_dit_duration = 110;

            {
                const float supply_voltage = round_float_to_half_steps(analog_measure_12v());
                const int supply_decivolts = supply_voltage * 10.0f;

                const char *eol_info = "73";
                if (current_state == FSM_BALISE_STATS1) {
                    eol_info = "PSK125";
                }
                else if (!fsm_in.wind_generator_ok) {
                    eol_info = "\\";
                    // The backslash is the SK digraph
                }

                if (balise_message_empty()) {
                    const uint32_t capacity_bat_mah = batterycharge_retrieve_last_capacity();
                    const int capacity_bat_ah = capacity_bat_mah / 1000;

                    char supply_trend = '=';
                    if (capacity_bat_ah) {
                        // = means same battery capacity as previous
                        // + means higher
                        // - means lower
                        if (last_battery_capacity_ah < capacity_bat_ah) {
                            supply_trend = '+';
                        }
                        else if (last_battery_capacity_ah > capacity_bat_ah) {
                            supply_trend = '-';
                        }

                        last_battery_capacity_ah = capacity_bat_ah;
                    }

                    size_t len = 0;

                    len += snprintf(balise_message + len, BALISE_MESSAGE_LEN-len-1,
                            CW_PREDELAY "HB9G JN36BK  U %dV%01d ",
                                supply_decivolts / 10,
                                supply_decivolts % 10);

                    if (capacity_bat_ah != 0) {
                        len += snprintf(balise_message + len, BALISE_MESSAGE_LEN-len-1,
                                " %d AH %c ", capacity_bat_ah, supply_trend);
                    }

                    if (temperature_valid()) {
                        len += snprintf(balise_message + len, BALISE_MESSAGE_LEN-len-1,
                                " T %d ",
                                (int)(round_float_to_half_steps(temperature_get())));
                    }

                    snprintf(balise_message + len, BALISE_MESSAGE_LEN-len-1,
                            "%s" CW_POSTDELAY,
                            eol_info);
                }

                fsm_out.msg = balise_message;

                fsm_out.cw_psk_trigger = 1;
            }

            if (fsm_in.cw_psk_done) {
                balise_message_clear();
                // The exercise_fsm loop needs to see a 1 to 0 transition on cw_psk_trigger
                // so that it considers the STATS2 message.
                fsm_out.cw_psk_trigger = 0;
                if (current_state == FSM_BALISE_STATS1) {
                    fsm_out.msg = NULL;
                    next_state = FSM_BALISE_STATS2;
                }
                else {
                    next_state = FSM_OISIF;
                }
            }
            break;

        case FSM_BALISE_STATS2:
        case FSM_BALISE_SPECIALE_STATS2:
            fsm_out.tx_on = 1;
            fsm_out.msg_frequency   = 588;
            fsm_out.cw_dit_duration = -3; // PSK125

            // All predecessor states must NULL the fsm_out.msg field!
            if (fsm_out.msg == NULL) {
                fsm_out.msg = stats_build_text();
            }
            fsm_out.cw_psk_trigger = 1;

            if (fsm_in.cw_psk_done) {
                fsm_out.cw_psk_trigger = 0;
                next_state = (current_state == FSM_BALISE_STATS2) ?
                    FSM_BALISE_STATS3 :
                    FSM_BALISE_SPECIALE_STATS3;
            }
            break;

        case FSM_BALISE_STATS3:
        case FSM_BALISE_SPECIALE_STATS3:
            fsm_out.tx_on = 1;
            if (current_state == FSM_BALISE_STATS3) {
                fsm_out.msg_frequency   = 588;
                fsm_out.cw_dit_duration = 110;
            }
            else {
                fsm_out.msg_frequency   = 696;
                fsm_out.cw_dit_duration = 70;
            }

            if (balise_message_empty()) {
                const char *eol_info = "73";
                if (!fsm_in.wind_generator_ok) {
                    eol_info = "\\";
                    // The backslash is the SK digraph
                }
                snprintf(balise_message, BALISE_MESSAGE_LEN-1,
                        CW_PREDELAY "%s" CW_POSTDELAY,
                        eol_info);
                fsm_out.msg = balise_message;
                fsm_out.cw_psk_trigger = 1;
            }

            if (fsm_in.cw_psk_done) {
                stats_beacon_sent();
                fsm_out.cw_psk_trigger = 1;
                balise_message_clear();
                next_state = FSM_OISIF;
            }
            break;

        case FSM_BALISE_SPECIALE:
        case FSM_BALISE_SPECIALE_STATS1:
            fsm_out.tx_on = 1;
            fsm_out.msg_frequency   = 696;
            fsm_out.cw_dit_duration = 70;

            if (balise_message_empty()) {
                const float supply_voltage = round_float_to_half_steps(analog_measure_12v());
                const int supply_decivolts = supply_voltage * 10.0f;

                const char *eol_info = "73";
                if (current_state == FSM_BALISE_SPECIALE_STATS1) {
                    eol_info = "PSK125";
                }
                else if (!fsm_in.wind_generator_ok) {
                    eol_info = "\\";
                    // The backslash is the SK digraph
                }

                size_t len = 0;
                len += snprintf(balise_message+len, BALISE_MESSAGE_LEN-len-1,
                        CW_PREDELAY "HB9G U %dV%01d ",
                        supply_decivolts / 10,
                        supply_decivolts % 10);

                const uint32_t capacity_bat_mah = batterycharge_retrieve_last_capacity();
                const int capacity_bat_ah = capacity_bat_mah / 1000;
                if (capacity_bat_ah != 0) {
                    len += snprintf(balise_message + len, BALISE_MESSAGE_LEN-len-1,
                            " %d AH ", capacity_bat_ah);
                }

                len += snprintf(balise_message+len, BALISE_MESSAGE_LEN-len-1,
                        "%s" CW_POSTDELAY,
                        eol_info);

                fsm_out.msg = balise_message;

                fsm_out.cw_psk_trigger = 1;
            }

            if (fsm_in.cw_psk_done) {
                stats_beacon_sent();
                balise_message_clear();
                // The exercise_fsm loop needs to see a 1 to 0 transition on cw_psk_trigger
                // so that it considers the STATS2 message.
                fsm_out.cw_psk_trigger = 0;
                if (current_state == FSM_BALISE_SPECIALE_STATS1) {
                    fsm_out.msg = NULL;
                    next_state = FSM_BALISE_SPECIALE_STATS2;
                }
                else {
                    next_state = FSM_OISIF;
                }
            }
            break;

        case FSM_BALISE_COURTE:
        case FSM_BALISE_COURTE_OPEN:

            fsm_out.tx_on = 1;

            fsm_out.msg_frequency   = 696;
            fsm_out.cw_dit_duration = 70;

            {
                int rand = random_bool() * 2 + random_bool();

                if (rand == 0) {
                    fsm_out.msg = CW_PREDELAY "HB9G" CW_POSTDELAY;
                }
                else if (rand == 1) {
                    fsm_out.msg = CW_PREDELAY "HB9G JN36BK" CW_POSTDELAY;
                }
                else if (rand == 2) {
                    fsm_out.msg = CW_PREDELAY "HB9G 1628M" CW_POSTDELAY;
                }
                else {
                    fsm_out.msg = CW_PREDELAY "HB9G JN36BK  1628M" CW_POSTDELAY;
                }
            }
            fsm_out.cw_psk_trigger = 1;

            if (current_state == FSM_BALISE_COURTE) {
                if (fsm_in.cw_psk_done) {
                    if (fsm_in.sq) {
                        next_state = FSM_OPEN2;
                    }
                    else {
                        stats_beacon_sent();
                        next_state = FSM_OISIF;
                    }
                }
                else if (fsm_in.sq) {
                    next_state = FSM_BALISE_COURTE_OPEN;
                }
            }
            else { //FSM_BALISE_COURTE_OPEN
                if (fsm_in.cw_psk_done) {
                    stats_beacon_sent();
                    next_state = FSM_OPEN2;
                }
            }

            break;
        default:
            // Should never happen
            next_state = FSM_OISIF;
            break;
    }


    if (next_state != current_state) {
        timestamp_state[next_state] = timestamp_now();

        short_beacon_counter_last_update = 0;

        fsm_state_switched(state_name(next_state));
    }
    current_state = next_state;
}

void fsm_update_inputs(struct fsm_input_signals_t* inputs)
{
    fsm_in = *inputs;
}

void fsm_get_outputs(struct fsm_output_signals_t* out)
{
    *out = fsm_out;
}

void fsm_balise_force() {
    balise_state = BALISE_FSM_PENDING;
}

void fsm_balise_update() {

    balise_fsm_state_t next_state = balise_state;

    switch (balise_state) {
        case BALISE_FSM_EVEN_HOUR:
            if (fsm_in.hour_is_even == 0) {
                next_state = BALISE_FSM_ODD_HOUR;
            }
            break;
        case BALISE_FSM_ODD_HOUR:
            if (fsm_in.hour_is_even == 1) {
                if (timestamp_now() > 1000 * 60) { // Does not start the balise at startup
                    next_state = BALISE_FSM_PENDING;
                }
                else {
                    next_state = BALISE_FSM_EVEN_HOUR;
                }
            }
            break;
        case BALISE_FSM_PENDING:
            if (current_state == FSM_BALISE_SPECIALE ||
                    current_state == FSM_BALISE_LONGUE ||
                    current_state == FSM_BALISE_STATS3 ||
                    current_state == FSM_BALISE_SPECIALE_STATS3) {
                next_state = BALISE_FSM_EVEN_HOUR;
            }
            break;
        default:
            // Should never happen
            next_state = BALISE_FSM_EVEN_HOUR;
            break;
    }

    if (next_state != balise_state) {
        fsm_state_switched(balise_state_name(next_state));
    }

    balise_state = next_state;
}

int fsm_sstv_update() {

    sstv_fsm_state_t next_state = sstv_state;

    switch (sstv_state) {
        case SSTV_FSM_OFF:
            if (fsm_in.sq && fsm_in.fax_mode) {
                next_state = SSTV_FSM_ON;
            }
            break;
        case SSTV_FSM_ON:
            if (current_state == FSM_BALISE_LONGUE ||
                current_state == FSM_ANTI_BAVARD ||
                current_state == FSM_BALISE_SPECIALE ||
                fsm_in.long_1750
            ) {
                next_state = SSTV_FSM_OFF;
            }
            break;

        default:
            // Should never happen
            next_state = SSTV_FSM_OFF;
            break;
    }

    if (next_state != sstv_state) {
        fsm_state_switched(sstv_state_name(next_state));
    }

    sstv_state = next_state;

    return sstv_state == SSTV_FSM_ON;
}