mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 03:09:59 +00:00
12 lines
414 B
C
12 lines
414 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "mesh/generated/mesh.pb.h" // For CriticalErrorCode
|
|
|
|
/// A macro that include filename and line
|
|
#define RECORD_CRITICALERROR(code) recordCriticalError(code, __LINE__, __FILE__)
|
|
|
|
/// Record an error that should be reported via analytics
|
|
void recordCriticalError(CriticalErrorCode code = CriticalErrorCode_Unspecified, uint32_t address = 0, const char *filename = NULL);
|