mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-31 09:15:51 +00:00
13 lines
408 B
C
13 lines
408 B
C
#ifndef __IOCOMPAT_H
|
|
#define __IOCOMPAT_H
|
|
|
|
#include "globals.h"
|
|
#include <Arduino.h>
|
|
|
|
#define printf(x, ...) {sprintf(fsbuf, x, ##__VA_ARGS__); Serial.println(fsbuf); Serial.flush(); Serial.send_now();}
|
|
#define fprintf(f, x, ...) {sprintf(fsbuf, x, ##__VA_ARGS__); Serial.println(fsbuf); Serial.flush(); Serial.send_now();}
|
|
#define perror(x) {Serial.println(x);Serial.flush(); Serial.send_now();}
|
|
|
|
|
|
#endif
|