13 lines
240 B
C
13 lines
240 B
C
// Copyright 2022 Stefan Kerkmann
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <stdbool.h>
|
|
#include <ch.h>
|
|
|
|
void panic(const char *fmt, ...) {
|
|
chSysHalt(fmt);
|
|
}
|
|
|
|
void hard_assertion_failure(void) {
|
|
panic("hard assert");
|
|
}
|