ASCEND Flight Software
Loading...
Searching...
No Matches
Storage.h
Go to the documentation of this file.
1#ifndef STORAGE_H
2#define STORAGE_H
3
4#include <Arduino.h>
5
6#include "Device.h"
7#include "Logger.h"
8
13class Storage : public Device {
14 private:
15 public:
17
24 virtual bool verify() = 0;
25
31 virtual void store(String data) = 0;
32
38 virtual void storePacket(uint8_t* packet) {};
39};
40
41#endif
Implements the recovery system for Sensor and Storage objects.
Definition Device.h:14
int attempt_number
Definition Device.h:19
Parent class for all data storage devices (sd card, radio, etc)
Definition Storage.h:13
virtual void store(String data)=0
Send string data to storage device.
Storage(String storage_name)
Definition Storage.h:16
virtual void storePacket(uint8_t *packet)
Send packet data to storage device.
Definition Storage.h:38
virtual bool verify()=0
Verifies connection with storage device.