mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 03:20:00 +03:00
10 lines
288 B
C
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)
|
|
|