mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-01-03 11:28:22 +01:00
10 lines
241 B
C++
10 lines
241 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
class ResetReason {
|
|
public:
|
|
static String get_reset_reason_verbose(const uint8_t cpu_id);
|
|
static String get_reset_reason_short(const uint8_t cpu_id);
|
|
}; |