kopia lustrzana https://github.com/meshtastic/firmware
13 wiersze
213 B
C++
13 wiersze
213 B
C++
![]() |
#include "RedirectablePrint.h"
|
||
|
#include <assert.h>
|
||
|
|
||
|
/**
|
||
|
* A printer that doesn't go anywhere
|
||
|
*/
|
||
|
NoopPrint noopPrint;
|
||
|
|
||
|
void RedirectablePrint::setDestination(Print *_dest)
|
||
|
{
|
||
|
assert(_dest);
|
||
|
dest = _dest;
|
||
|
}
|