Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <stdarg.h>
#include <sys/cdefs.h>
#include <unistd.h>
#include "pico/platform/panic.h"
#include "pico/printf.h"
#define weak_raw_printf
#define weak_raw_vprintf
panic_unsupported()
#define PICO_PANIC_FUNCTION_EMPTY
panic(const char *, ...)
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/rp2_common/pico_platform_panic/panic.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #include <stdio.h> #include <stdarg.h> #include <sys/cdefs.h> #include <unistd.h> #include "pico/platform/panic.h" 5 includes #if LIB_PICO_PRINTF_PICO #include "pico/printf.h" #else #define weak_raw_printf printf #define weak_raw_vprintf vprintf /* ... */#endif void __attribute__((noreturn)) panic_unsupported(void) { panic("not supported"); }{ ... } // PICO_CONFIG: PICO_PANIC_FUNCTION, Name of a function to use in place of the stock panic function or empty string to simply breakpoint on panic, group=pico_runtime // note the default is not "panic" it is undefined #ifdef PICO_PANIC_FUNCTION #define PICO_PANIC_FUNCTION_EMPTY (__CONCAT(PICO_PANIC_FUNCTION, 1) == 1) #if !PICO_PANIC_FUNCTION_EMPTY extern void __attribute__((noreturn)) __printflike(1, 0) PICO_PANIC_FUNCTION(__unused const char *fmt, ...); #endif // Use a forwarding method here as it is a little simpler than renaming the symbol as it is used from assembler void __attribute__((naked, noreturn)) __printflike(1, 0) panic(__unused const char *fmt, ...) { // if you get an undefined reference here, you didn't define your PICO_PANIC_FUNCTION! pico_default_asm ( #ifdef __riscv #if !PICO_PANIC_FUNCTION_EMPTY "jal " __XSTRING(PICO_PANIC_FUNCTION) "\n" #endif "ebreak\n" "1: j 1b\n" /* ... */ #else "push {lr}\n" #if !PICO_PANIC_FUNCTION_EMPTY "bl " __XSTRING(PICO_PANIC_FUNCTION) "\n" #endif "bkpt #0\n" "1: b 1b\n" // loop for ever as we are no return /* ... */ #endif : : : ); }panic (__unused const char *fmt, ...) { ... } /* ... */#else // todo consider making this try harder to output if we panic early // right now, print mutex may be uninitialised (in which case it deadlocks - although after printing "PANIC") // more importantly there may be no stdout/UART initialized yet // todo we may want to think about where we print panic messages to; writing to USB appears to work // though it doesn't seem like we can expect it to... fine for now void __attribute__((noreturn)) __printflike(1, 0) panic(const char *fmt, ...) { puts("\n*** PANIC ***\n"); if (fmt) { #if LIB_PICO_PRINTF_NONE puts(fmt); #else va_list args; va_start(args, fmt); #if PICO_PRINTF_ALWAYS_INCLUDED vprintf(fmt, args); #else weak_raw_vprintf(fmt, args); #endif va_end(args); puts("\n");/* ... */ #endif }if (fmt) { ... } _exit(1); }{ ... } #endif/* ... */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.