mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-12 19:10:32 +03:00
11 lines
200 B
C
11 lines
200 B
C
/*
|
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "pico/runtime.h"
|
|
|
|
void __weak hard_assertion_failure(void) {
|
|
panic("Hard assert");
|
|
}
|