1
0
Fork 0

Tidy up print/debug logging headers (#22969)

This commit is contained in:
Joel Challis 2024-01-27 04:30:29 +00:00 committed by GitHub
parent f2299ee5f8
commit bb71145632
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 49 deletions

View file

@ -24,10 +24,3 @@
#pragma once
#include "avr/xprintf.h"
// Create user & normal print defines
#define print(s) xputs(PSTR(s))
#define println(s) xputs(PSTR(s "\r\n"))
#define uprint(s) xputs(PSTR(s))
#define uprintln(s) xputs(PSTR(s "\r\n"))
#define uprintf(fmt, ...) __xprintf(PSTR(fmt), ##__VA_ARGS__)