mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-22 10:42:49 +00: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);
|