1
0
Fork 0

test build of 'Host shield' in minimal env.

This commit is contained in:
tmk 2012-08-25 15:49:08 +09:00
parent 9382bf2f76
commit c5060ea819
26 changed files with 500 additions and 267 deletions

View file

@ -0,0 +1,51 @@
/*
* Null implementation of Serial to dump debug print into blackhole
*/
#include "Arduino.h"
#include "sendchar.h"
#include "USBAPI.h"
void Serial_::begin(uint16_t baud_count)
{
}
void Serial_::end(void)
{
}
void Serial_::accept(void)
{
}
int Serial_::available(void)
{
return 0;
}
int Serial_::peek(void)
{
return -1;
}
int Serial_::read(void)
{
return -1;
}
void Serial_::flush(void)
{
}
size_t Serial_::write(uint8_t c)
{
sendchar(c);
return 1;
}
Serial_::operator bool() {
return true;
}
Serial_ Serial;