2010-10-23 02:59:40 -03:00
|
|
|
// -*- Mode: C++; c-basic-offset: 8; indent-tabs-mode: nil -*-
|
|
|
|
//
|
|
|
|
// Copyright (c) 2010 Michael Smith. All rights reserved.
|
|
|
|
//
|
|
|
|
// This is free software; you can redistribute it and/or modify it under
|
|
|
|
// the terms of the GNU Lesser General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
|
// your option) any later version.
|
|
|
|
//
|
|
|
|
|
2010-11-01 04:42:51 -03:00
|
|
|
#ifndef __BETTERSTREAM_H
|
|
|
|
#define __BETTERSTREAM_H
|
|
|
|
|
2010-10-23 02:59:40 -03:00
|
|
|
#include <Stream.h>
|
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
|
|
|
|
class BetterStream : public Stream {
|
|
|
|
public:
|
|
|
|
BetterStream(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stream extensions
|
2010-11-22 20:38:16 -04:00
|
|
|
void print_P(const char *);
|
|
|
|
void println_P(const char *);
|
2010-11-23 05:09:52 -04:00
|
|
|
void printf(const char *, ...)
|
|
|
|
__attribute__ ((format(__printf__, 2, 3)));
|
|
|
|
void printf_P(const char *, ...)
|
|
|
|
__attribute__ ((format(__printf__, 2, 3)));
|
2010-10-23 02:59:40 -03:00
|
|
|
|
|
|
|
private:
|
2010-11-23 05:09:52 -04:00
|
|
|
void _vprintf(unsigned char, const char *, va_list)
|
|
|
|
__attribute__ ((format(__printf__, 3, 0)));
|
2010-10-23 02:59:40 -03:00
|
|
|
};
|
2010-11-01 04:42:51 -03:00
|
|
|
|
|
|
|
#endif // __BETTERSTREAM_H
|
|
|
|
|