rp2040-playground/libosmocore/include/trace.h

10 lines
262 B
C

#pragma once
#include <stdio.h>
/* minimal compatibility #defines to make rp2040 provide atmel-style macros */
#define TRACE_ERROR(x, args ...) printf(x, ## args)
#define TRACE_INFO TRACE_ERROR
#define TRACE_INFO_WP TRACE_ERROR
#define TRACE_DEBUG TRACE_ERROR