mirror of
https://github.com/meshtastic/firmware.git
synced 2026-02-02 03:31:11 -05:00
8 lines
231 B
C
8 lines
231 B
C
#pragma once
|
|
|
|
/// Error codes for critical error
|
|
enum CriticalErrorCode { NoError, ErrTxWatchdog };
|
|
|
|
/// Record an error that should be reported via analytics
|
|
void recordCriticalError(CriticalErrorCode code, uint32_t address = 0);
|