Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExceptionHandlers.h « Hardware « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab27b9996594e35ff470fedc7c418850b2a530b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * CrashHandlers.h
 *
 *  Created on: 24 Aug 2020
 *      Author: David
 */

#ifndef SRC_HARDWARE_EXCEPTIONHANDLERS_H_
#define SRC_HARDWARE_EXCEPTIONHANDLERS_H_

#include "SoftwareReset.h"

[[noreturn]] void SoftwareReset(SoftwareResetReason initialReason, const uint32_t *_ecv_array null stk = nullptr) noexcept;
[[noreturn]] void OutOfMemoryHandler() noexcept;

#endif /* SRC_HARDWARE_EXCEPTIONHANDLERS_H_ */