blob: ccdb7d51ed3b938a8ae2517f844a6d2bdb1a432b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright 2022 Daniel Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "driver/stdout.h"
void StandardOutput::setup()
{
}
void StandardOutput::put(char c)
{
}
StandardOutput kout;
|