ASCEND Flight Software
Loading...
Searching...
No Matches
MTK3339Sensor.h
Go to the documentation of this file.
1#ifndef MTK3339SENSOR_H
2#define MTK3339SENSOR_H
3
4#include <Arduino.h>
5#include <SparkFun_u-blox_GNSS_Arduino_Library.h>
6#include <Wire.h>
7
8#include "PayloadConfig.h"
9#include "Sensor.h"
10
15class MTK3339Sensor : public Sensor {
16 private:
17 // int pin; chip select pin
18 SFE_UBLOX_GNSS GPS;
19
20 public:
21 MTK3339Sensor(); // pass pin in constructor
22 MTK3339Sensor(unsigned long minimum_period);
23
24 bool verify() override;
25 String readData() override;
26 void readDataPacket(uint8_t*& packet) override;
27 String decodeToCSV(uint8_t*& packet) override;
28};
29
30#endif
Central location for pinout and config defines.
int attempt_number
Definition Device.h:19
Implementation of the Adafruit MTK3339 GPS sensor.
Definition MTK3339Sensor.h:15
SFE_UBLOX_GNSS GPS
Definition MTK3339Sensor.h:18
bool verify() override
Verifies if the sensor is connected and working.
Definition MTK3339Sensor.cpp:25
String readData() override
Reads and returns data from the MTK3339 GPS corresponding to the CSV header.
Definition MTK3339Sensor.cpp:58
String decodeToCSV(uint8_t *&packet) override
Decodes the MTK3339 sensor data from the packet buffer into a CSV string.
Definition MTK3339Sensor.cpp:182
MTK3339Sensor()
Default constructor for the MTK3339Sensor, sets minimum_period to 0 ms.
Definition MTK3339Sensor.cpp:8
void readDataPacket(uint8_t *&packet) override
Appends the MTK3339 sensor data to the packet buffer as raw bytes.
Definition MTK3339Sensor.cpp:88
Parent class for sensor objects.
Definition Sensor.h:13
unsigned long minimum_period
Definition Sensor.h:15