MRAS
Multi Rocket Avionics System
|
A base class for ArduinoTextLogger and NativeTextLogger. More...
#include <TextLogger.h>
Public Member Functions | |
virtual SUBSYSTEM_NO_MESSAGE_HANDLER void | _log (const char *fmt, va_list args)=0 |
Subsystem (uint8_t id) | |
Public Member Functions inherited from Subsystem | |
virtual const char * | get_name ()=0 |
virtual int8_t | setup ()=0 |
virtual int8_t | loop ()=0 |
uint8_t | get_id () const |
int8_t | get_status () const |
int8_t | self_test () const |
bool | add_subscriber (Subsystem *subscriber) |
Subsystem (uint8_t id) | |
Additional Inherited Members | |
Protected Member Functions inherited from Subsystem | |
void | log (const char fmt[],...) |
virtual void | on_message (SystemMessage *msg)=0 |
void | publish (SystemMessage *msg) |
Static Protected Member Functions inherited from Subsystem | |
static void | buzzer (uint16_t frequency, uint32_t duration, bool block=false) |
Protected Attributes inherited from Subsystem | |
int8_t | status = 0 |
int8_t | self_test_result = -1 |
A base class for ArduinoTextLogger and NativeTextLogger.
This class is used to provide a common interface for both ArduinoTextLogger and NativeTextLogger. This allows either TextLogger to be used in the same way by MRAS and its Subsystems.
|
pure virtual |
Implemented in NativeTextLogger, and ArduinoTextLogger.
|
inlineexplicit |
Constructor for Subsystem
id | The unique ID of the subsystem. This must be different for all subsystems. |