blob: efbc565640e494701adb3f36127e60a930998a4c (
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
|
diff --git a/dump1090.c b/dump1090.c
index 60882fc..1482224 100644
--- a/dump1090.c
+++ b/dump1090.c
@@ -29,6 +29,9 @@
//
#include "coaa.h"
#include "dump1090.h"
+
+struct modes Modes;
+
//
// ============================= Utility functions ==========================
//
diff --git a/dump1090.h b/dump1090.h
index 9ad4de0..283e760 100644
--- a/dump1090.h
+++ b/dump1090.h
@@ -235,10 +235,10 @@ struct stDF {
uint64_t llTimestamp; // Timestamp at which the this packet was received
uint32_t addr; // Timestamp at which the this packet was received
unsigned char msg[MODES_LONG_MSG_BYTES]; // the binary
-} tDF;
+};
// Program global state
-struct { // Internal state
+extern struct modes { // Internal state
pthread_t reader_thread;
pthread_mutex_t data_mutex; // Mutex to synchronize buffer access
diff --git a/view1090.c b/view1090.c
index 0b9b8b9..cc072fc 100644
--- a/view1090.c
+++ b/view1090.c
@@ -29,6 +29,9 @@
//
#include "coaa.h"
#include "view1090.h"
+
+struct modes Modes;
+
//
// ============================= Utility functions ==========================
//
|