mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 11:49:58 +00:00
13 lines
213 B
C++
13 lines
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;
|
|
} |