1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 03:20:00 +03:00
betaflight/src/platform/PICO/pico_trace.h
2025-06-02 18:46:01 +01:00

10 lines
288 B
C

#pragma once
extern void picotrace_prefix(void);
#define tprintf(fmt,...) do { \
picotrace_prefix(); \
stdio_printf(fmt, ## __VA_ARGS__); \
stdio_printf("\n"); \
} while (0)