From e386891d2a66ee47eaea72964bb0c1f3c9b5bc82 Mon Sep 17 00:00:00 2001
From: "Hans P. Reiser"
Date: Thu, 11 Apr 2019 00:00:19 +0200
Subject: [PATCH] +aprs udp (axupd)
---
libraries/SondeLib/aprs.h | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 libraries/SondeLib/aprs.h
diff --git a/libraries/SondeLib/aprs.h b/libraries/SondeLib/aprs.h
new file mode 100644
index 0000000..4894fc8
--- /dev/null
+++ b/libraries/SondeLib/aprs.h
@@ -0,0 +1,11 @@
+
+#ifndef _aprs_h
+#define _aprs_h
+
+#define MAXLEN 201
+void aprs_gencrctab(void);
+int aprsstr_mon2raw(const char *mon, char raw[], int raw_len);
+char * aprs_senddata(float lat, float lon, float hei, float speed, float dir, float climb, const char *type, const char *objname, const char *usercall, const char *sym);
+
+
+#endif