7#include "pico/multicore.h"
8#include "pico/stdlib.h"
81 uint8_t display_code = 7 - this->
code;
83 if (this->code ==
Error::NONE) display_code = 0b001;
Error
Definition ErrorDisplay.h:16
@ CRITICAL_FAIL
Definition ErrorDisplay.h:17
@ POWER_CYCLED
Definition ErrorDisplay.h:21
@ LOW_SENSOR_COUNT
Definition ErrorDisplay.h:20
@ NONE
Definition ErrorDisplay.h:23
@ SD_CARD_FAIL
Definition ErrorDisplay.h:18
Central location for pinout and config defines.
#define ERROR_PIN_0
Error display bit 0.
Definition PayloadConfig.h:18
#define ERROR_PIN_1
Error display bit 1.
Definition PayloadConfig.h:16
#define ERROR_PIN_2
Error display bit 2.
Definition PayloadConfig.h:14
Singleton class for the 3 GPIO LED Error Display.
Definition ErrorDisplay.h:30
ErrorDisplay()
Definition ErrorDisplay.h:36
void addCode(Error e)
Sets the error code to the given value if the given error is of a higher priority then the current er...
Definition ErrorDisplay.h:62
int pin_level
Definition ErrorDisplay.h:33
void toggle()
Toggles the level of the error display.
Definition ErrorDisplay.h:76
static ErrorDisplay & instance()
Accesses the only instance of ErrorDisplay (Singleton)
Definition ErrorDisplay.h:51
Error code
Definition ErrorDisplay.h:34
mutex_t error_display_mutex
Definition ErrorDisplay.h:32