aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/includes/GPS/gps.h
diff options
context:
space:
mode:
authorMaximilien Cuony <maximilien@theglu.org>2016-06-02 22:00:22 +0200
committerMaximilien Cuony <maximilien@theglu.org>2016-06-02 22:00:22 +0200
commitbbe4080e94308149b74dd9ccefddf95878eec5d0 (patch)
treedb97785a48ff7267e263b9a55bed27b354e65925 /src/common/includes/GPS/gps.h
parent9069fc127e4f73041fbd1f66e4506fcf12418315 (diff)
downloadglutte-o-matic-bbe4080e94308149b74dd9ccefddf95878eec5d0.tar.gz
glutte-o-matic-bbe4080e94308149b74dd9ccefddf95878eec5d0.tar.bz2
glutte-o-matic-bbe4080e94308149b74dd9ccefddf95878eec5d0.zip
Simulator: UART, Leds, begining of GPS
Diffstat (limited to 'src/common/includes/GPS/gps.h')
-rw-r--r--src/common/includes/GPS/gps.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/common/includes/GPS/gps.h b/src/common/includes/GPS/gps.h
new file mode 100644
index 0000000..768ade1
--- /dev/null
+++ b/src/common/includes/GPS/gps.h
@@ -0,0 +1,45 @@
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2015 Matthias P. Braendli
+ *
+ * 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.
+*/
+
+#pragma once
+
+#include <stdint.h>
+#include <time.h>
+
+/* Setup GPS receiver over USART and parse time */
+
+/* USART connections:
+ * board TX to GPS RX on PD8
+ * board RX to GPS TX on PD9
+ */
+
+// Setup communication and GPS receiver
+void gps_init();
+
+// Return 1 of the GPS is receiving time
+int gps_locked();
+
+// Get current time from GPS
+// Returns 1 if time is valid, 0 otherwise
+int gps_utctime(struct tm *timeutc);