Fixing some warnings.

This commit is contained in:
David A. Mellis 2007-11-21 14:55:09 +00:00
parent a867e033f5
commit bd460db6ab
1 changed files with 5 additions and 0 deletions

View File

@ -27,10 +27,14 @@ extern "C" {
#include <inttypes.h>
#include <stdlib.h>
// use the abs in WConstants.h, not the one in stdlib.h
#undef abs
// Wiring Core Includes
#include "WConstants.h"
}
#include "Firmata.h"
#include "EEPROM.h"
#include "HardwareSerial.h"
@ -66,6 +70,7 @@ void FirmataClass::systemReset(void)
// output type of message that is next on the queue
int FirmataClass::available(void)
{
return -1;
// TODO output next available message type, or -1 if nothing
}