ASCEND Flight Software
Loading...
Searching...
No Matches
Functions | Variables
main1.cpp File Reference

Main functions for Core 1, responsible for sending data to storage peripherals. More...

#include <Arduino.h>
#include "ErrorDisplay.h"
#include "Logger.h"
#include "PayloadConfig.h"
#include "Storage.h"
#include "CommandMessage.h"
#include "FlashStorage.h"
#include "RadioStorage.h"
#include "SDStorage.h"
Include dependency graph for main1.cpp:

Functions

int verifyStorage ()
 Verifies the connection with each storage device, and defines the header_condensed field.
 
int verifyStorageRecovery ()
 Verifies the connection with each storage device, and defines the header_condensed field, uses recovery system.
 
void storeData (String data)
 Sends data to each storage device, assumes storage devices take care of newline/data end themselves.
 
void storeDataPacket (uint8_t *packet)
 Sends data to each storage device.
 
void real_setup1 ()
 Setup for core 1.
 
void real_loop1 ()
 Loop for core 1.
 

Variables

SDStorage sd_storage
 
RadioStorage radio_storage
 
FlashStorage flash_storage
 
Storagestorages [] = {&sd_storage, &radio_storage, &flash_storage}
 
const int storages_len = sizeof(storages) / sizeof(storages[0])
 
queue_t qt
 
bool core1_separate_stack = true
 
int it2 = 0
 

Detailed Description

Main functions for Core 1, responsible for sending data to storage peripherals.

Function Documentation

◆ real_loop1()

void real_loop1 ( )

Loop for core 1.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ real_setup1()

void real_setup1 ( )

Setup for core 1.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ storeData()

void storeData ( String  data)

Sends data to each storage device, assumes storage devices take care of newline/data end themselves.

Parameters
dataData in a CSV formatted string
Here is the call graph for this function:
Here is the caller graph for this function:

◆ storeDataPacket()

void storeDataPacket ( uint8_t *  packet)

Sends data to each storage device.

Parameters
packetPointer to packet bytes
Here is the call graph for this function:
Here is the caller graph for this function:

◆ verifyStorage()

int verifyStorage ( )

Verifies the connection with each storage device, and defines the header_condensed field.

Returns
int The number of verified storage devices

◆ verifyStorageRecovery()

int verifyStorageRecovery ( )

Verifies the connection with each storage device, and defines the header_condensed field, uses recovery system.

Returns
int The number of verified storage devices
Here is the caller graph for this function:

Variable Documentation

◆ core1_separate_stack

bool core1_separate_stack = true

◆ flash_storage

FlashStorage flash_storage

◆ it2

int it2 = 0

◆ qt

queue_t qt
extern

◆ radio_storage

RadioStorage radio_storage

◆ sd_storage

SDStorage sd_storage

◆ storages

◆ storages_len

const int storages_len = sizeof(storages) / sizeof(storages[0])