DFU: increase detach timeout to 2 seconds
[clinton/Smoothieware.git] / src / libs / StreamOutput.h
CommitLineData
df27a6a3 1/*
38d375e7
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
38d375e7
AW
6*/
7
25a19381
AW
8#ifndef STREAMOUTPUT_H
9#define STREAMOUTPUT_H
10
11class StreamOutput {
12 public:
13 StreamOutput(){}
74481d42 14 virtual int printf(const char* format, ...) { return 0; }
25a19381
AW
15};
16
25a19381 17#endif