made progmem mainly, found one bug in cardreader, added a empty class for cardreader in case no sd support.

This commit is contained in:
Bernhard Kubicek
2011-11-07 22:33:13 +01:00
parent 72ace55e6a
commit 7b70caab7c
7 changed files with 944 additions and 851 deletions

View File

@ -9,8 +9,10 @@
#include "streaming.h"
#define SERIAL_ECHO(x) Serial << "echo: " << x;
#define SERIAL_ECHOLN(x) Serial << "echo: "<<x<<endl;
#define SERIAL_ERROR(x) Serial << "echo: ERROR: " << x;
#define SERIAL_ERRORLN(x) Serial << "echo: ERROR: " << x<<endl;
#define SERIAL_ERROR(x) Serial << "Error: " << x;
#define SERIAL_ERRORLN(x) Serial << "Error: " << x<<endl;
#define SERIAL_PROTOCOL(x) Serial << x;
#define SERIAL_PROTOCOLLN(x) Serial << x<<endl;
void get_command();
void process_commands();