ASCEND Flight Software
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
SDStorage Class Reference

Implementation of a Storage device to interface with an SD card. More...

#include <SDStorage.h>

Inheritance diagram for SDStorage:
Collaboration diagram for SDStorage:

Public Member Functions

 SDStorage ()
 Construct a new SDStorage object.
 
bool verify () override
 Verify SD card connection and create a new, unique file.
 
void store (String data) override
 Store data on the SD card, ending with newline.
 
void storePacket (uint8_t *packet) override
 Store data on the SD card.
 
- Public Member Functions inherited from Storage
 Storage (String storage_name)
 
- Public Member Functions inherited from Device
 Device (String device_name)
 Default constructor, sets a max_attempt of 1 (device recovery won't be attempted)
 
 Device (String device_name, int max_attempts, int wait_factor)
 
const String & getDeviceName ()
 
bool getVerified ()
 Get if the Device is Verified.
 
void recoveryConfig (int max_attempts, int wait_factor)
 Set recovery config (used keep default constructor)
 
void setWaitFactor (int wait_factor)
 Set wait_factor.
 
void setMaxAttempts (int max_attempts)
 Set max_attempts.
 
bool attemptConnection ()
 If the sensor is verified, return true, if not and it has been long enough since the last attempt (decided by wait_factor and attempt_number), attempt to reverify (reinitialize) it.
 

Private Attributes

String file_name
 
SPIClassRP2040 sd_spi_1
 

Additional Inherited Members

- Protected Attributes inherited from Device
bool verified
 
String device_name
 

Detailed Description

Implementation of a Storage device to interface with an SD card.

Constructor & Destructor Documentation

◆ SDStorage()

SDStorage::SDStorage ( )

Construct a new SDStorage object.

Member Function Documentation

◆ store()

void SDStorage::store ( String  data)
overridevirtual

Store data on the SD card, ending with newline.

Parameters
dataData to store

Implements Storage.

Here is the call graph for this function:

◆ storePacket()

void SDStorage::storePacket ( uint8_t *  packet)
overridevirtual

Store data on the SD card.

Parameters
packetPointer to packet bytes

Reimplemented from Storage.

Here is the call graph for this function:

◆ verify()

bool SDStorage::verify ( )
overridevirtual

Verify SD card connection and create a new, unique file.

Returns
true if SD card is connected and file is successfully created
false otherwise

Implements Storage.

Here is the call graph for this function:

Member Data Documentation

◆ file_name

String SDStorage::file_name
private

◆ sd_spi_1

SPIClassRP2040 SDStorage::sd_spi_1
private
Initial value:
= SPIClassRP2040(spi1, SPI1_MISO_PIN, SD_CS_PIN,
#define SD_CS_PIN
SD Card SPI CS Pin.
Definition PayloadConfig.h:62
#define SPI1_MOSI_PIN
SPI1 MOSI Pin.
Definition PayloadConfig.h:75
#define SPI1_SCK_PIN
SPI1 SCK Pin.
Definition PayloadConfig.h:73
#define SPI1_MISO_PIN
SPI1 MISO Pin.
Definition PayloadConfig.h:71
int attempt_number
Definition Device.h:19

The documentation for this class was generated from the following files: